I just did an install of the latest version of phpwiki. Thus far, it seems to be working, but every page has a php warning on it:
lib/config.php:276: Notice[8]: Undefined variable: SCRIPT_NAME
It seems that this is defined in index.php . Any idea what I'm doing wrong?
THANKS!
Harold
I have this problem running under Apache 2. Try changing lib/config.php on line 273 as follows:
273 iif (php_sapi_name() == 'apache')
to
273 if (php_sapi_name() == 'apache2handler')
Log in to post a comment.
I just did an install of the latest version of phpwiki. Thus far, it seems to be working, but every page has a php warning on it:
lib/config.php:276: Notice[8]: Undefined variable: SCRIPT_NAME
It seems that this is defined in index.php . Any idea what I'm doing wrong?
THANKS!
Harold
I have this problem running under Apache 2. Try changing lib/config.php on line 273 as follows:
273 iif (php_sapi_name() == 'apache')
to
273 if (php_sapi_name() == 'apache2handler')