I upgraded my phpwiki 1.2.1 installation to 1.3.3 per the UPGRADE instructions. It now takes a very long time to load pages (like more than a minute). This appears to be some sort of server misconfiguration - after the page load starts, I see messages like
looking up host phpwiki.css
looking up host themes
in my browser toolbar.
so somehow something is getting misinterpreted as a hostname instead of a directory name.
What should I check?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I upgraded my phpwiki 1.2.1 installation to 1.3.3 per the UPGRADE instructions. It now takes a very long time to load pages (like more than a minute). This appears to be some sort of server misconfiguration - after the page load starts, I see messages like
looking up host phpwiki.css
looking up host themes
in my browser toolbar.
so somehow something is getting misinterpreted as a hostname instead of a directory name.
What should I check?
I forgot to mention that the connection slowdown occurs with graphical browsers (netscape, opera, mozilla on linux), but not with lynx.
Ok, fixed the problem. For some reason, the default phpwiki setup was making all my links come out as //theme.css (for example). I set the following:
define('DATA_PATH', '');
define('PHPWIKI_DIR', '.');
and everything worked (phpwiki is in the root of my web server doc dir).
weird.