From: Sandy M. <mat...@bt...> - 2003-01-17 08:49:41
|
Thanks for this, the code below has resolved the problem. Sandy -----Original Message----- From: Jochen Kalmbach [mailto:Jo...@Ka...] Sent: 16 January 2003 18:36 To: Sandy Matheson Subject: Re: [Phpwiki-talk] Fonts Query and Slow WIKI Hello again, sorry that I attached the whole file. The only changes you have to do is (in 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 |