Hi:
If zend.ze1_compatibility_mode is enabled and you are
using the mysqli extension you get an error
Fatal error: Trying to clone an uncloneable object of
class mysqli in libraries/dbi/mysqli.dbi.lib.php on line 53
I think PHPMyAdmin should disable that option at runtime.
patch:
put
@ini_set('zend.ze1_compatibility_mode',false);
and the beggining of libraries/dbi/mysqli.dbi.lib.php
Logged In: YES
user_id=210714
Fixed in 2.8.0.2, but in common.lib.php to avoid further
problems elsewhere in the code
Logged In: YES
user_id=710039
I havent saw the code yey,but also if you do some kind PHP
version check for this, make sure is > 5 and < 6 ( setting
has been removed from PHP6 since this and other similar issues)
Logged In: YES
user_id=710039
I havent saw the code yey,but also if you do some kind PHP
version check for this, make sure is > 5 and < 6 ( setting
has been removed from PHP6 since this and other similar issues)
Logged In: YES
user_id=210714
I tried the code under PHP 4 where the setting did not exist
and it does not complain, even without the @
so we should be ok in PHP 6. Do you agree?
Logged In: YES
user_id=710039
YES, should be ok..or at least it **should not** complain
badly. ;-)