QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1058|回复: 7

[求助]我在安装phpnuke时,配置数据库出现错误

[复制链接]
发表于 2003-12-28 16:05:22 | 显示全部楼层 |阅读模式
按照phpnuke文件夹里的install文件所讲的[code:1]Now go to the directory where you uncompressed all files and edit the file "config.php". 现在去你解压缩的文件夹,并编辑config.php文件Change all the fields until you are happy with the changes and they fits the need of your web site. 改变所有的项目直到你满意为止,让他们满足你网页的需要Give special attention to the database configuration section. 在数据库的配置结构上给与足够的重视When you have finished to edit config.php file change to the /sql/ directory and there is a file called "nuke.sql" this file contains the commands to build the database structure, tables and the default data.当你完成config.php文件的编辑后,转到/sql/文件夹,那有一个叫做"nuke.sql"的文件,它包含了构建数据库结构,表格和默认数据的所有命令[/code:1]
我把config.php配置符合我的phpmyadmin中创建的名为nuke的数据库,在点击SQL后,选择/sql/里的nuke.sql作为nuke的数据库结构,但是却出现以下错误:[code:1]数据库 nuke 运行于 localhost
错误

SQL 查询 :  

--
------------------------------------------------------- --
--
--
CREATE TABLE confirm(

confirm_id char( 32 ) NOT NULL default '',
session_id char( 32 ) NOT NULL default '',
code char( 6 ) NOT NULL default '',
PRIMARY KEY ( session_id, confirm_id )
) TYPE = MYISAM

MySQL 返回:


#1064 - You have an error in your SQL syntax.  你有一个SQL语法错误Check the manual that corresponds to your MySQL server version for the right syntax to use near 翻阅手册,确保你的MySQL服务器的版本与正确的语法相协调'---------------------------------------------------------
--
--
[/code:1]
我该升级MySQL么?还是其他的什么问题导致的?phpnuke是从官方网站http://phpnuke.org/下载的,其nuke.sql不会有错误吧?
请大侠赐教,不胜感激!
 楼主| 发表于 2003-12-28 16:10:19 | 显示全部楼层
不管在rh9.0还是在windowsxp中,都出现这个配置问题
回复

使用道具 举报

发表于 2003-12-28 17:11:49 | 显示全部楼层
其实我看你的错误描述看得有点头晕。我不晓得你的mysql和phpnuke的版本。爱莫能助了。
但是我说说我得配置过程,也许有帮助
下载、解压不说了。Mysql是3.23的,phpnuke是7.0测试版,
1。Mysql中建库(用Phpadmin或者mysqladmin无所谓)。库的名称无所谓,只要下面的$dbname一样就行。
2。编辑config.php中的将$dbname的值设为上面的数据库名就行了。当然还有
下面三个变量:
$dbhost = "localhost";   //主机
$dbuname = "nuke";    //数据库用户名。
$dbpass = "nuke";      //相应的口令
$dbtype = "MySQL";   //数据库类型。由于phpnuke支持MySQL, mysql4, postgres, mssql, oracle, msaccess,  db2 and mssql-odbc等多种数据库。这儿你就用Mysql就结了。
3。开服务器(Apache或IIS),执行安装脚本,照着提示作。
差不多就这些吧。
good luck!
回复

使用道具 举报

 楼主| 发表于 2003-12-29 08:48:23 | 显示全部楼层
对不起,我的描述不清晰 我的phpnuke版本是6.9,MySQL是WinMySQLadmin1.4,linux下默认的MySQL是3.XX
[quote:d2f732c466="HACKGOU"]下面三个变量:
$dbhost = "localhost";   //主机
$dbuname = "nuke";    //数据库用户名。
$dbpass = "nuke";      //相应的口令
$dbtype = "MySQL";   //数据库类型。
3。开服务器(Apache或IIS),执行安装脚本,照着提示作。
差不多就这些吧。
good luck![/quote]
config.php的配置是按照phpnuke文件夹里的install.txt一步一步来的,正如HACKGOU所述,执行安装脚本,照着提示作……但是phpnuke文件夹里的install.txt里讲解[code:1]That's it!... now you need to edit the file "config.php" to set the database options. Please read carefully the instruction on that file!
After that, point your browser to:

        http://yourdomain.com/admin.php[/code:1]
翻译:就这样了!……现在你需要编辑“config.php”文件来调整数据库选项。请认真阅读文件中的说明!然后,让你的浏览器指到:http://yourdomain.com/admin.php哪有安装脚本install.php这些都是后话了,我的问题还停留在建数据库上!phpnuke的数据库需要从/sql/文件夹中倒入但是倒入后就出现了[code:1]数据库 nuke 运行于 localhost
错误

SQL 查询 :  

--
------------------------------------------------------- --
--
--
CREATE TABLE confirm(

confirm_id char( 32 ) NOT NULL default '',
session_id char( 32 ) NOT NULL default '',
code char( 6 ) NOT NULL default '',
PRIMARY KEY ( session_id, confirm_id )
) TYPE = MYISAM

MySQL 返回:


#1064 - You have an error in your SQL syntax.  你有一个SQL语法错误Check the manual that corresponds to your MySQL server version for the right syntax to use near 翻阅手册,确保你的MySQL服务器的版本与正确的语法相协调'---------------------------------------------------------
--
-- [/code:1]的错误!
我的问题仅仅在配置数据库这一块儿请大虾赐教!
回复

使用道具 举报

发表于 2003-12-29 12:12:54 | 显示全部楼层
谢谢你的翻译,我就是被你的翻译搞晕了头的。^_^。直接把那些提示post上来就差不多了。
#1064 号错误表示语法错误。
从建表的语句:
[code:1]
CREATE TABLE confirm(

confirm_id char( 32 ) NOT NULL default '',
session_id char( 32 ) NOT NULL default '',
code char( 6 ) NOT NULL default '',
[color=red]PRIMARY KEY ( session_id, confirm_id ) [/color]
) TYPE = MYISAM
[/code:1]
来说。是没有问题的。
我开始怀疑
PRIMARY KEY ( session_id, confirm_id ) 这句有点问题。后来证实没有问题。所以……。

这样吧:
你重新建立一个空库。然后再试试??
如果还不行升级一下phpnuke??7。0正式版已经出来。但是我不是club成员。现在还没有拿到。测试版倒是有一个。如果需要,我可以给你,其中包括我自己汉化的简体中文版本的语言包。
回复

使用道具 举报

 楼主| 发表于 2003-12-29 13:19:34 | 显示全部楼层
非常感谢HACKGOU你的测试包我非常想要,但是你怎么传给我呢?公社的上传软件处不知道行不行呢?
要不你用我的FTP吧
[code:1]Hostname = www.0catch.com
Username =shyrabbit.com.cn
Site Password: 21378112
[/code:1]
回复

使用道具 举报

 楼主| 发表于 2004-1-1 19:35:29 | 显示全部楼层
我下载了PHPnuke7.0.1
这回配置数据库的问题解决了,不再提示有错误
但是进入…/index.php后,有很多语法错误
如:[code:1]Notice: Undefined index: 2 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 241

Notice: Undefined index: 2 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 241

Notice: Use of undefined constant mid - assumed 'mid' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 1069

Notice: Use of undefined constant content - assumed 'content' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 1070

Notice: Use of undefined constant date - assumed 'date' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 1071

Notice: Use of undefined constant who - assumed 'who' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 1072

Notice: Undefined variable: public_msg in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 1103



Notice: Use of undefined constant left - assumed 'left' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\themes\DeepBlue\theme.php on line 87

Notice: Use of undefined constant bid - assumed 'bid' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 384

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 386

Notice: Use of undefined constant content - assumed 'content' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 387

Notice: Use of undefined constant url - assumed 'url' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 388

Notice: Use of undefined constant blockfile - assumed 'blockfile' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 389

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 390

Notice: Use of undefined constant expire - assumed 'expire' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 391

Notice: Use of undefined constant action - assumed 'action' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 392

Notice: Use of undefined constant bkey - assumed 'bkey' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 403

Notice: Use of undefined constant admin - assumed 'admin' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 403

Notice: Use of undefined constant bkey - assumed 'bkey' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 405

Notice: Use of undefined constant userbox - assumed 'userbox' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 405

Notice: Use of undefined constant bkey - assumed 'bkey' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 407

Notice: Undefined index: 2 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 241

Notice: Use of undefined constant main_module - assumed 'main_module' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 35

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 42

Notice: Undefined variable: content in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 58

Notice: Undefined variable: def_module in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 59

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 62

Notice: Use of undefined constant custom_title - assumed 'custom_title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 63

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Modules.php on line 64

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217
     Modules

· Home
· AvantGo
· Downloads
· Feedback
· Journal
· Private Messages
· Recommend Us
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Top 10
· Topics
· Web Links
· Your Account




Notice: Use of undefined constant bid - assumed 'bid' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 384

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 386

Notice: Use of undefined constant content - assumed 'content' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 387

Notice: Use of undefined constant url - assumed 'url' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 388

Notice: Use of undefined constant blockfile - assumed 'blockfile' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 389

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 390

Notice: Use of undefined constant expire - assumed 'expire' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 391

Notice: Use of undefined constant action - assumed 'action' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 392

Notice: Use of undefined constant bkey - assumed 'bkey' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 403

Notice: Use of undefined constant admin - assumed 'admin' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 403

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 217

Notice: Use of undefined constant bid - assumed 'bid' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 384

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 386

Notice: Use of undefined constant content - assumed 'content' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 387

Notice: Use of undefined constant url - assumed 'url' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 388

Notice: Use of undefined constant blockfile - assumed 'blockfile' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 389

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 390

Notice: Use of undefined constant expire - assumed 'expire' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 391

Notice: Use of undefined constant action - assumed 'action' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 392

Notice: Use of undefined constant bkey - assumed 'bkey' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 403

Notice: Use of undefined constant admin - assumed 'admin' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 403

Notice: Use of undefined constant bkey - assumed 'bkey' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 405

Notice: Use of undefined constant userbox - assumed 'userbox' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 405

Notice: Use of undefined constant bkey - assumed 'bkey' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 407

Notice: Undefined index: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 618

Notice: Use of undefined constant pass - assumed 'pass' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 621

Notice: Undefined offset: 2 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 622

Notice: Undefined offset: 1 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Who_is_Online.php on line 23

Notice: Undefined index: 2 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 241

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Who_is_Online.php on line 50

Notice: Undefined index: 2 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 241
     Who's Online

There are currently, 1 guest(s) and 0 member(s) that are online.

You are Anonymous user. You can register for free by clicking here



Notice: Use of undefined constant bid - assumed 'bid' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 384

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 386

Notice: Use of undefined constant content - assumed 'content' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 387

Notice: Use of undefined constant url - assumed 'url' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 388

Notice: Use of undefined constant blockfile - assumed 'blockfile' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 389

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 390

Notice: Use of undefined constant expire - assumed 'expire' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 391

Notice: Use of undefined constant action - assumed 'action' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 392

Notice: Use of undefined constant bkey - assumed 'bkey' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 403

Notice: Use of undefined constant admin - assumed 'admin' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 403

Notice: Use of undefined constant bkey - assumed 'bkey' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 405

Notice: Use of undefined constant userbox - assumed 'userbox' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 405

Notice: Use of undefined constant bkey - assumed 'bkey' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 407

Notice: Undefined variable: languageslist in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Languages.php on line 49
     Languages

Select Interface Language:


Albanian Arabic Brazilian Catala Chinese Czech Danish Dutch English Euskara Finnish French Galego German Greek Hungarian Icelandic Indonesian Italian Macedonian Norwegian Polish Portuguese Romanian Russian Slovak Slovenian Spanish Swedish Thai Turkish Ukrainian Vietnamese



Notice: Use of undefined constant bid - assumed 'bid' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 384

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 386

Notice: Use of undefined constant content - assumed 'content' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 387

Notice: Use of undefined constant url - assumed 'url' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 388

Notice: Use of undefined constant blockfile - assumed 'blockfile' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 389

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 390

Notice: Use of undefined constant expire - assumed 'expire' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 391

Notice: Use of undefined constant action - assumed 'action' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 392

Notice: Use of undefined constant bkey - assumed 'bkey' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 403

Notice: Use of undefined constant admin - assumed 'admin' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 403

Notice: Use of undefined constant bkey - assumed 'bkey' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 405

Notice: Use of undefined constant userbox - assumed 'userbox' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 405

Notice: Use of undefined constant bkey - assumed 'bkey' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 407

Notice: Undefined variable: imglist in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\blocks\block-Amazon.php on line 40
     Amazon








  
Notice: Undefined index: 2 in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 241

Notice: Use of undefined constant mid - assumed 'mid' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 434

Notice: Use of undefined constant title - assumed 'title' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 436

Notice: Use of undefined constant content - assumed 'content' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 437

Notice: Use of undefined constant date - assumed 'date' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 438

Notice: Use of undefined constant expire - assumed 'expire' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 439

Notice: Use of undefined constant view - assumed 'view' in E:\shyrabbit`s Documents\PHP-Nuke-7.0.1\html\mainfile.php on line 441

[/code:1]
回复

使用道具 举报

发表于 2005-12-23 14:26:56 | 显示全部楼层
讨厌的phpnuke,程序写得那么让涩兔子苦闷,现在phpnuke也应该退出CMS舞台了
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-3 00:34 , Processed in 0.076949 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表