View Single Post
  #83  
Old 22nd October 2008, 17:00
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Default
I don't use this source, but you could see if you have this function in includes/functions_global.php

PHP Code:
function newerr($heading ''$text ''$head true$foot true$die true$div 'error'$htmlstrip false) {
    if (
$head)
        
stdhead($heading);

    
newmsg($heading$text$div$htmlstrip);

    if (
$foot)
        
stdfoot();

    if (
$die)
        die;

Otherwise you could try changing the line in include/functions.php

PHP Code:
newerr($tracker_lang['error'], "<font color=red>Cannot read file [<b>".htmlspecialchars($configname)."</b>]!.</font><br><font color=blue>Before the setup starts, please ensure that you have properly configured file and directory access permissions. Please see below.</font><br><br>chmod 777 CONFIG (config directory).<br>chmod 777 CONFIG/main (the file which save the main settings).",false); 
TO

PHP Code:
stdmsg($tracker_lang['error'], "<font color=red>Cannot read file [<b>".htmlspecialchars($configname)."</b>]!.</font><br><font color=blue>Before the setup starts, please ensure that you have properly configured file and directory access permissions. Please see below.</font><br><br>chmod 777 CONFIG (config directory).<br>chmod 777 CONFIG/main (the file which save the main settings).",false); 
Reply With Quote