i have some problems with my php encoded files...
i use Zend Encoder to encode my php files..
and install Zend Optimizer on the server..
and i also got the right verion of Zend Optimizer for my PHP version..
Everything seems to be alright!
in phpinfo(), it's output is okay~!.. it shows..
This program makes use of the Zend scripting language engine:
Zend Engine v1.0.6, Copyright (c) 1998-2001 Zend Technologies
with Zend Optimizer v1.1.0, Copyright (c) 1998-2000, by Zend Technologies
but when run the files which include database connection..something happens!...
the error msg:
"Fatal error: Cannot create references to/from string offsets nor overloaded objects in C:\admin\admin.php on line "
when some values are passed by reference.. the program will go wrong..
$test[Admin][data]=&$Admin;
$test[User][data]=&$User;
$testtotal[data]=&$test;
or
function Validate(&$array)
Does anyone know what happens?
Thanks for your help =..)
Kate.