Bulk Domain Module doesn't see IonCube

phatreza

New member
Joined
Aug 20, 2008
Messages
1
hey everybody,
I'm trying to get our bulk domain plugin working for DA, and it is saying it's not seeing the ioncube loader. however ioncube is installed on the server, and the plugin installs just fine.
here is the output of the error, i was hoping to find someone else who has seen this before.

Site error: the file /usr/local/directadmin/plugins/bulkdom/bulkdom.php requires the ionCube PHP Loader ioncube_loader_fre_5.2.so to be installed by the site administrator.
admin » Plugins
DirectAdmin Web Control Panel © 2007 JBMC Software

PHP 5.2.6 (cli) (built: Aug 5 2008 12:08:34)
Copyright (c) 1997-2008 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2008 Zend Technologies
with eAccelerator v0.9.5.3, Copyright (c) 2004-2006 eAccelerator, by eAccelerator
with the ionCube PHP Loader v3.1.32, Copyright (c) 2002-2007, by ionCube Ltd., and
with Zend Extension Manager v1.2.2, Copyright (c) 2003-2007, by Zend Technologies
with Zend Optimizer v3.3.3, Copyright (c) 1998-2007, by Zend Technologies


any thoughts?
thanks in advance,
 
YOu need to add a line in php.ini

Like this but with your own path:

zend_extension = /var/www/html/ioncube/ioncube_loader_fre_5.2.so

Must be in the zend section and before the other zend_extension lines.

Here is how mine looks:

Code:
[Zend]
zend_extension_manager.optimizer=/usr/local/Zend/lib/Optimizer-3.2.8
zend_extension_manager.optimizer_ts=/usr/local/Zend/lib/Optimizer_TS-3.2.8
zend_optimizer.version=3.2.8

zend_extension = /var/www/html/ioncube/ioncube_loader_fre_5.2.so

zend_extension=/usr/local/Zend/lib/ZendExtensionManager.so
zend_extension_ts=/usr/local/Zend/lib/ZendExtensionManager_TS.so
 
Back
Top