Author |
Message |
pmingo
Joined: 21 Feb 2014 Posts: 1
|
Posted: Fri Feb 21, 2014 2:10 pm Post subject: Class '[obfuscated]' not found |
|
|
Hi,
I'm evaluating ionCube Loader and when I activate method obfuscation on my project I get this message:
Fatal error: Call to undefined method mysqli::[obfuscated]() in ..
and when I activate class obfuscation I get this one:
Fatal error: Class '[obfuscated]' not found in ...
As far as I know this is happening when I try to build the connection to mysql using mysqli extention somewhere below:
require_once( 'config.php' );
$lki = new mysqli( DB_HOST, DB_USER, DB_PWD );
if( $lki->connect_error ) {
die('Connect Error (' . $lki->connect_errno . ') ' . $lki->connect_error);
}
$lki->set_charset( DB_CHARSET );
$lki->select_db( DB_TABLE ) or die( $lki->error );
Any idea what's going on?
If I don't activate class and method obfuscation everything's going nicely.
Thank you very much  |
|
Back to top |
|
 |
liaison ionCube Support
Joined: 16 Dec 2004 Posts: 2788
|
Posted: Sun Feb 23, 2014 3:57 pm Post subject: |
|
|
This is to be expected and can be handled by excluding the mysqli class from being obfuscated. The user guide explains, but please don't hesitate to create a support ticket if you would like more details. _________________ Community Admin |
|
Back to top |
|
 |
|