Hey, so I am putting a website together for a guy who just bought some software that uses something called "ionCube" that we must install. It came with different versions for different versions of PHP from 4.1 to 5.2.
We have 5.2.5 installed, which is supposed to work... But I am having some troubles.
It's giving me this error that may or may not be useful:
Code:
Warning: dl() [function.dl]: Temporary module name should contain only filename in /home/#MYWEBSITE#/public_html/invite/ioncube/ioncube-loader-helper.php on line 411
The module name its using AFAIK is
Code:
/usr/local/lib/php/extensions/no-debug-non-zts-20060613/../../../../../../home/#MYWEBSITE#/public_html/invite/ioncube/ioncube_loader_lin_5.2.so
That may not be where we can find the solution though, as that is only one option to install it. The second is to add the extension to php.ini using
Code:
zend_extension = /<path>/ioncube_loader_lin_5.2.so
We do not have access to the global php.ini because we do not own the server. I looked for ways to override the php.ini similar to how you would use htaccess and found something about using "CGI" will let you use a PHP.ini in the same directory as your scripts, but the script still gave the same error as without the PHP.ini file:
Code:
Site error: the file /home/#MYWEBSITE#/public_html/invite/inc/classes/setupclass.php requires the ionCube PHP Loader ioncube_loader_lin_5.2.so to be installed by the site administrator.
So I am looking for some advice to install this. Should I actually contact the server host and see if they can install it? Is there a better guide to installing these .so files? I may be doing something wrong, but it doesn't give me any control. I access the directory, it gives an error, there is no room for user error.
@Using the loader for linux x86 on a host running linux x86
http://www.ioncube.com/loaders.php
Last edited by RadGH; 02-17-2009 at 02:27 AM..
|