liaison ionCube Support
Joined: 16 Dec 2004 Posts: 2788
|
Posted: Mon Aug 27, 2007 12:52 pm Post subject: |
|
|
It's quite common for PHP scripts to be badly coded and to access variables that may not always have a value. This goes unnoticed unless run on a server where the error checking is set to E_ALL. If everything works other than for these messages then that could well be the case here.
The other possibility is that variable obfuscation, which changes the names of local variables, is causing the variables not be found. Obfuscation of variable names usually isn't an issue because the Encoder and Loaders are smart enough to handle both $varname and $$varname idioms so that direct and indirect access to the variables works even if the names are changed. However if obfuscated variables are ever accessed by their original names where the Encoder couldn't detect this, such as by eval(), then it would cause this behaviour. If obfuscation of variables was selecting during encoding, then unselecting that option, reencoding, and then seeing whether that resolves the issue is the next step.
If you are the one encoding and you're still stuck, please create a ticket in the helpdesk and we can advise further. _________________ Community Admin |
|