Just attempted an install of Phpwiki on Linux (Fedora Core 5) with MySQL. Got the home page to load. The URLs behind the links look OK, but each link just ends up loading the homepage. Any hints at what I need to be looking at. Tried checking the apache http_server_vars and that look like it probably as all right. What next?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Just attempted an install of Phpwiki on Linux (Fedora Core 5) with MySQL. Got the home page to load. The URLs behind the links look OK, but each link just ends up loading the homepage. Any hints at what I need to be looking at. Tried checking the apache http_server_vars and that look like it probably as all right. What next?
in lib/Request.php
changed: $this->args = &$GLOBALS['HTTP_GET_VARS'];
to: $this->args = &$_GET;
changed: $this->args = &$GLOBALS['HTTP_POST_VARS'];
to: $this->args = &$_POST;
changed: $vars = &$GLOBALS['HTTP_SERVER_VARS'];
to: $vars = &$_SERVER;