Quote:
Originally Posted by Rik Brown
Logician:
Just installed the current version online today with vb 3.5.3 which just took a few minutes to accomplish (thanks!).
However, when I went to view the sample 2 test pages I got the following error messages above the webpage (the webpage otherwise displayed properly):
Warning: Unexpected character in input: '' (ASCII=25) state=2 in /var/www/html/subs/forums/view.php(1006) : eval()'d code on line 704
Warning: Unexpected character in input: '' (ASCII=28) state=2 in /var/www/html/subs/forums/view.php(1006) : eval()'d code on line 704
Warning: Unexpected character in input: '' (ASCII=27) state=2 in /var/www/html/subs/forums/view.php(1006) : eval()'d code on line 704
Warning: Unexpected character in input: '' (ASCII=27) state=2 in /var/www/html/subs/forums/view.php(1006) : eval()'d code on line 704
Warning: Unexpected character in input: '' (ASCII=24) state=2 in /var/www/html/subs/forums/view.php(1006) : eval()'d code on line 704
Warning: Unexpected character in input: '' (ASCII=31) state=2 in /var/www/html/subs/forums/view.php(1006) : eval()'d code on line 704
Warning: Unexpected character in input: '' (ASCII=29) state=2 in /var/www/html/subs/forums/view.php(1006) : eval()'d code on line 704
Any ideas?
Thanks. -- Rik
|
Sounds like a problem in installation. Looks like some characters didnt imported well. Probably line breaks became somehow in the exporting. Can be because of character encoding of your MYSQL version or smt. Cant say why without digging deep into your server.
Temporary solution, in view.php find:
PHP Code:
eval('print_output("' . WTgettemplate("$WT[themetemplate_un]") . '");');
replace it with:
PHP Code:
@eval('print_output("' . WTgettemplate("$WT[themetemplate_un]") . '");');
This will not fix the problem but it will silence it so error messages will be gone.