My server people say zend is installed. But I dont know how to enable it
www.vashey.com/billing/admin/
I need it to work for that. Anyone help me please it would be very appreciated.
My server people say zend is installed. But I dont know how to enable it
www.vashey.com/billing/admin/
I need it to work for that. Anyone help me please it would be very appreciated.
Copy this bit of text below and put it in a file called indexphp.php
<HTML>
<HEAD>
</HEAD>
<BODY>
<?PHPINFO()?>
</BODY>
</HTML>
Upload it to your web root file space where all your normal pages are and call it with
http://www.vashey.com/indexphp.php
A huge amount of PHP related info should come up on the screen, somewhere inside you should see something like this:
This program makes use of the Zend scripting language engine: Zend Engine vX.Y.Z, Copyright (c) 1998-2006 by Zend Technologies Ltd. with Zend Optimizer vX.Y.Z, Copyright (c) 1998-2006 by Zend Technologies Ltd.
If you dont see anything about the optimizer in the output of the above php file then you might not have the optimizer installed.
"A dog has raised it’s hind leg on the age of nevermore !"
-- Rolf
http://www.vashey.com/indexphp.php
Its up, and says zend is installed. Now I just need to make the bloody thing work. Bollocks.
"A dog has raised it’s hind leg on the age of nevermore !"
-- Rolf
ReCoDe, the following is a cut and paste from your phpinfo() screen ...
The following is a cut and paste from one of my servers where theCode:This program makes use of the Zend Scripting Language Engine: Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
latest Zend Optimizer and Ioncube are both installed ...
Do you see the obvious difference?Code:This program makes use of the Zend Scripting Language Engine: Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies with the ionCube PHP Loader v3.1.32, Copyright (c) 2002-2007, by ionCube Ltd., and with Zend Extension Manager v1.2.0, Copyright (c) 2003-2006, by Zend Technologies with Zend Optimizer v3.3.0, Copyright (c) 1998-2007, by Zend Technologies
The "makes use of Zend Scripting" shown on yours simply means PHP itself is installed
as the core of PHP is based on scripting technology from Zend and has absolutely
nothing to do with their Optimizer or Extension Manager products.
Your server DOES NOT have Zend Optimizer installed!
Your host either lied to you or is too stupid to know the difference ---
Either way, I would be a little bit leary about continuing to host with them!
I execute php -v from ssh and i receive
Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
with the ionCube PHP Loader v3.1.29, Copyright (c) 2002-2007, by ionCube Ltd., and
with Zend Extension Manager v1.2.0, Copyright (c) 2003-2007, by Zend Technologies
with Zend Optimizer v3.3.0, Copyright (c) 1998-2007, by Zend Technologies
Yes, its installed. But when I install the scripts. It dosent recognize it... Thats the problem im not having.
http://www.vashey.com/billing/admin/
Ioncube dosent work either...but yet it says its installed..and so does my host.
See?
WRONG! You still do NOT have Zend Optimizer or Ioncube installed .....Originally Posted by ReCoDe
You are showing Zend Optimizer from the PHP CLI (command line interface)
but not showing when using phpinfo(); on a web page which means that the
PHP you have installed in the shell is NOT the PHP that you have running
on the web. At the very least you are using different config files and probably
different binary files too.
What you get in SSH is meaningless since you obviously have 2 differentOriginally Posted by phpinfo on web
installations of PHP at work here and the one for the web does not have
either Zend Optimizer or Ioncube installed!
(It looks like someone has attempted to install Optimizer but screwed up
and only installed the manager loader by itself instead for the web PHP)
http://www.vashey.com/indexphp.php
Also make sure the following folder exists on your server ...
/usr/local/lib/php/extensions/no-debug-non-zts-20020429
This is the extension_dir that your web based PHP is calling and if
it doesn't exist, it won't load any 3rd party extensions irregardless
whether they are located in that folder or not.
Last edited by Spiral; 07-22-2007 at 09:25 AM.