
01-21-2010, 01:08 AM
|
 |
|
|
Join Date: Nov 2006
Posts: 259
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Ju4nCh0
FYI....
I did a clean install on v 0.7 RC2 and I was getting this error.....
HTML Code:
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of call_user_func(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /home/content/j/u/a/juanchito/html/foros/includes/class_gcbos.php on line 128
Warning: Cannot modify header information - headers already sent by (output started at [path]/includes/class_gcbos.php:128) in [path]/gcbos.php on line 143
So I went in class_gcbos.php and in line 128 found this
PHP Code:
$done = call_user_func($command['function'], $this, $command, $params, $message, &$output);
There's an extra & right before $output... removed it, reuploaded it and it worked just fine =D
However... it's still showing the text with the "typewriter effect" and takes forever to load all the messages =S
Is there a way to disable it???
|
I had this issue to. Removing the "&" before $output solved it for me too. If it's suppose to be there, why is it causing errors?
|