![]() |
ill give it a try
|
i dont know what to put?
heres what it says # # fopen + fread wrapper # function func_file_get($file, $is_root = false) { $fp = func_fopen($file, 'rb', $is_root); if ($fp === false) return false; while (strlen($str = fread($fp, 8192)) > 0 ) $data .= $str; fclose($fp); return $data; } # # readfile() wrapper # function func_readfile($file, $is_root = false) { $file = func_allow_file($file, $is_root); if ($file === false) return false; return readfile($file); } # # Get tmpfile content # function func_temp_read($tmpfile, $delete = false) { if (empty($tmpfile)) return false; $fp = @fopen($tmpfile,"rb"); if(!$fp) return false; while (strlen($str = fread($fp, 4096)) > 0 ) $data .= $str; fclose($fp); if ($delete) { @unlink($tmpfile); } return $data; } |
That looks like a PHP file not a template file.
|
i just spent an hour going through all my folders, till i found the one i had to fix.
so i dont really have a simpile solution. |
or use the debug window to show you the templates being used in the page with the error
|
All times are GMT -8. The time now is 09:58 AM. |
Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.