Thread: [phpslash-users] Install problem?
Brought to you by:
joestewart,
nhruby
From: Tom C. <str...@ya...> - 2005-12-14 14:30:06
|
Hi folks, I just finished installing phpslash. Unfortunately on every page, I have a number of error messages. I'm wondering what I might have done wrong. This is on a RHEL3 box with Apache2 and PHP4. Thanks in advance. Here's the errors I get on the main page... Notice: Undefined index: module in /export/home/cat/public_html/devel/phpslash-0.8.1/public_html/index.php on line 6 Notice: Undefined index: module in /export/home/cat/public_html/devel/phpslash-0.8.1/public_html/index.php on line 7 Notice: Uninitialized string offset: -1 in /export/home/cat/public_html/devel/phpslash-0.8.1/include/modules/story/Story_base.class on line 371 Notice: Undefined offset: 0 in /export/home/cat/public_html/devel/phpslash-0.8.1/include/class/phplib/php/template.inc on line 320 Notice: Undefined index: Newsletters in /export/home/cat/public_html/devel/phpslash-0.8.1/include/modules/navbar/NavBar.class on line 92 Notice: Undefined index: Newsletters in /export/home/cat/public_html/devel/phpslash-0.8.1/include/modules/navbar/NavBar.class on line 92 Notice: Undefined variable: QUERY_STRING in /export/home/cat/public_html/devel/phpslash-0.8.1/include/modules/block/blocktypes/Block_render_page.class on line 122 -Tom __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Joe S. <joe...@us...> - 2005-12-14 16:18:52
|
on 12/14/2005 08:29 AM Tom Cat said the following: > Hi folks, > > I just finished installing phpslash. > > Unfortunately on every page, I have a number of error > messages. I'm wondering what I might have done wrong. > This is on a RHEL3 box with Apache2 and PHP4. > You didn't do anything wrong. They are php warnings that krept back in evidently. Either set error_reporting to E_ALL~E_NOTICE in your php.ini and restart the webserver. You can also do this in a .htaccess file. Or you can add this line to config.php: ini_set('error_reporting', 'E_ALL~E_NOTICE'); > Thanks in advance. > > Here's the errors I get on the main page... > It is curious though. It was developed with E_ALL on which would show these. Did you install the example data? Did you install using the install wizard ( install_setup.php)? BTW - The wiki table has been fizxed now. thanks, Joe > Notice: Undefined index: module in > /export/home/cat/public_html/devel/phpslash-0.8.1/public_html/index.php > on line 6 > > Notice: Undefined index: module in > /export/home/cat/public_html/devel/phpslash-0.8.1/public_html/index.php > on line 7 > > Notice: Uninitialized string offset: -1 in > /export/home/cat/public_html/devel/phpslash-0.8.1/include/modules/story/Story_base.class > on line 371 > > Notice: Undefined offset: 0 in > /export/home/cat/public_html/devel/phpslash-0.8.1/include/class/phplib/php/template.inc > on line 320 > > Notice: Undefined index: Newsletters in > /export/home/cat/public_html/devel/phpslash-0.8.1/include/modules/navbar/NavBar.class > on line 92 > > Notice: Undefined index: Newsletters in > /export/home/cat/public_html/devel/phpslash-0.8.1/include/modules/navbar/NavBar.class > on line 92 > > Notice: Undefined variable: QUERY_STRING in > /export/home/cat/public_html/devel/phpslash-0.8.1/include/modules/block/blocktypes/Block_render_page.class > on line 122 > > -Tom > > |
From: Tom C. <str...@ya...> - 2005-12-14 18:16:04
|
--- Joe Stewart <joe...@us...> wrote: > on 12/14/2005 08:29 AM Tom Cat said the following: > > > > Here's the errors I get on the main page... > > > > It is curious though. It was developed with E_ALL > on which would show > these. > > Did you install the example data? Did you install > using the install > wizard ( install_setup.php)? > I unpacked the tarball and followed the quicker install instructions found http://www.php-slash.org/doc/phpslash-2.html#ss2.2 No errors showed up until I finshed with the install wizard. > > BTW - The wiki table has been fizxed now. > Coolness. Thanks. > thanks, > > Joe > > > > Notice: Undefined index: module in > > > /export/home/cat/public_html/devel/phpslash-0.8.1/public_html/index.php > > on line 6 > > > > Notice: Undefined index: module in > > > /export/home/cat/public_html/devel/phpslash-0.8.1/public_html/index.php > > on line 7 > > > > Notice: Uninitialized string offset: -1 in > > > /export/home/cat/public_html/devel/phpslash-0.8.1/include/modules/story/Story_base.class > > on line 371 > > > > Notice: Undefined offset: 0 in > > > /export/home/cat/public_html/devel/phpslash-0.8.1/include/class/phplib/php/template.inc > > on line 320 > > > > Notice: Undefined index: Newsletters in > > > /export/home/cat/public_html/devel/phpslash-0.8.1/include/modules/navbar/NavBar.class > > on line 92 > > > > Notice: Undefined index: Newsletters in > > > /export/home/cat/public_html/devel/phpslash-0.8.1/include/modules/navbar/NavBar.class > > on line 92 > > > > Notice: Undefined variable: QUERY_STRING in > > > /export/home/cat/public_html/devel/phpslash-0.8.1/include/modules/block/blocktypes/Block_render_page.class > > on line 122 > > > > -Tom > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do > you grep through log files > for problems? Stop! Download the new AJAX search > engine that makes > searching your log files as easy as surfing the > web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > phpslash-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpslash-users > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |