0

我有一系列地点信息,我想用它们在phpfox站点中创建多个页面。

首先,我尝试在 phpfox 数据库中手动插入数据(在phpfox_pagesphpfox_pages_text的表中)。

该页面显示在站点中,但是当打开它的链接时,站点显示:

找不到您要查找的页面。

你知道我应该操作哪些其他表才能使其工作吗?或者你知道phpfox的任何插件可以做同样的事情吗?

谢谢,



已解决(使用@Purefan 指南):

“Pages”也有一个用户

如果你看一下phpfox_user表,你会发现如何获取新记录。但是该表中有两个不明确的字段(password& password_salt)。您可以使用此脚本为字段创建值:

<?php
function generateRandomString()
{
    $length = 164;
    $characters = '-_0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
    $randomString = '';
    for ($i = 0; $i < $length; $i++) {
    $randomString .= $characters[rand(0, strlen($characters) - 1)];
    }
    return $randomString;
}

$sSalt = '';
for ($i = 0; $i < 3; $i++)
{
    $sSalt .= chr(rand(33, 91));
}

$sPossible = generateRandomString();
$sPassword = '';
$i = 0;
while ($i < 10) 
{
    $sPassword .= substr($sPossible, mt_rand(0, strlen($sPossible)-1), 1);
    $i++;
}

$password_Salt_Field = $sSalt;
$password_Field = md5(md5($sPassword) . md5($sSalt));
4

1 回答 1

1

Phpfox 有 2 个非常相似的模块:“页面”和“页面”,如果您希望人们“喜欢”它们,您可以创建“页面”,在其中发布,添加照片......“页面”是静态的,所以我认为这是你想要什么,在这种情况下,我会添加phpfox_pagephpfox_page_text

编辑:好的,那么您可能忘记插入phpfox_user,“页面”也有一个用户,以下内容应该有所启发:

$iUserId = $this->database()->insert(Phpfox::getT('user'), array(
            'profile_page_id' => $iId,
            'user_group_id' => NORMAL_USER_ID,
            'view_id' => '7',
            'full_name' => $this->preParse()->clean($aVals['title']),
            'joined' => PHPFOX_TIME,
            'password' => Phpfox::getLib('hash')->setHash($sPassword, $sSalt),
            'password_salt' => $sSalt
        )
    );

查看文件 /module/pages/include/service/process.class.add 大约第 338 行(取决于您的版本)。

于 2013-05-18T23:26:45.447 回答