From: Jochen K. <Jo...@Ka...> - 2003-01-26 20:28:00
|
> The only problem was a 5-8 > second delay for loading pages This is a well known bug (at least since 12.12.02)... if you have your wiki not in an subfolder of your domain, then the CSS-path is sent wrong to the browser. The browser then tries to load this css (with an invalid domain path). This takes 2-8 seconds). No one of the developer is able to check this in... So you have to fix it by yourself: Index: config.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/config.php,v retrieving revision 1.68 diff -r1.68 config.php 260c260,266 < if (!defined('DATA_PATH')) define('DATA_PATH', dirname(SCRIPT_NAME)); --- > if (!defined('DATA_PATH')) { > $temp = dirname(SCRIPT_NAME); > if ( ($temp == '/') || ($temp == '\\') ) > $temp = ""; > define('DATA_PATH', $temp); > } > Greetings Jochen |