ioncube

Installing IonCube on IIS7 / Windows Server 2008

Hello, we've inherited a PHP project from a client that requires IonCube. Our boxes all run on IIS7 and although we've followed the instructions for configuring it, it isn't loading the decoder library. Have any of you had any success with getting IonCube up and running on Win 2k8 (32bit)? I'm pulling my hair out over this so any help wo...

Is there any hope of installing ioncube on a shared linux hosting account with godaddy?

This has been the nightmare of all nightmares. For 4 days now I have been fighting to install ioncube loaders on godaddy. I am sure that I have uploaded the correct loaders, and I am using a zend extension line in a php5.ini file that is located in the public_html folder. The ioncube directory is also in the public_html folder. It will...

Best PHP Encoder

How does the php encoder works? Do they need any server side software installation? How i use them? Which one from the bellow is best php encoder? ioncube sourceguardian phpshield phpcipher truebug ...

Ioncube on Centos with Plesk failed loading

This took me a few hours to solve so I hope it helps someone else. My gotcha was one of the addition PHP ini files was loading an old version of ioncube. It was simple looking back... If you are installing Ioncube Loader on Virtual Private Server with Plesk checkout http://blog.ucvhost.com/?p=126 Get correct ioncube version from ht...

Best method for checking if IonCube Loader is installed

I'm using the following code: <?php if(extension_loaded("IonCube Loader") { // Yes } else { // No } ?> I'm just concerned that this won't work across every server with IonCube enabled. It seems pretty standard, but I've never needed to check before. Is this the best way to check, or is there a better method I should be using? ...

Are APC and ionCube fully compatible?

I've spent the better part of an hour looking for a definitive answer to this question. A script I need to use requires the IonCube loader be enabled and I've grown quite fond of APC. Should I expect any problems if both are enabled on the same server? ...

How is this PHP encoded?

Does anybody know how this PHP code is encoded? I don't know whether it's Zend, ionCube or something else. <?php if (!function_exists("T7FC56270E7A70FA81A5935B72EACBE29")) { function T7FC56270E7A70FA81A5935B72EACBE29($TF186217753C37B9B9F958D906208506E) { $TF186217753C37B9B9F958D906208506E = base64_decode($TF186217753C37...

How to force error_reporting mode in PHP 5.3

I have some code that's encrypted with ioncube and it's also written for < PHP 5.3. There's a ton of deprecated code, which would still work, but there's error messages all over the site. Is there a way of externally forcing error_reporting to E_ALL ^ E_DEPRECATED or similar? I'm sure in the code they're hardcoding to E_ALL for some rea...

Is there a way to get around a PHP application that checks the domain it's on?

Hello I have acquired a PHP application that has a system class encoded with Ion Cube PHP Encoder. I copied the files and moved them to a new server, a development one. The first thing that got me was the application was to only work on the domain it was on, so obviously not from localhost or any other server. I'm guessing somewhere i...