Re: [phpslash-users] Install problem?
Brought to you by:
joestewart,
nhruby
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 > > |