Community Forums
Connect with us on LinkedIn
+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 15 of 16
  1. #1
    Member
    Join Date
    Jul 2007
    Posts
    16

    Default Zend is installed but not working.

    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.

  2. #2
    Member nyjimbo's Avatar
    Join Date
    Jan 2003
    Location
    New York
    Posts
    1,105

    Default

    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

  3. #3
    Member
    Join Date
    Jul 2007
    Posts
    16

    Default

    Quote Originally Posted by nyjimbo View Post
    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.
    http://www.vashey.com/indexphp.php

    Its up, and says zend is installed. Now I just need to make the bloody thing work. Bollocks.

  4. #4
    Member nyjimbo's Avatar
    Join Date
    Jan 2003
    Location
    New York
    Posts
    1,105

    Default

    Quote Originally Posted by ReCoDe View Post
    http://www.vashey.com/indexphp.php

    Its up, and says zend is installed. Now I just need to make the bloody thing work. Bollocks.
    No, its not. I mean Zend engine is installed but the optimizer does not show on your system when I run the php test file.
    "A dog has raised it’s hind leg on the age of nevermore !"
    -- Rolf

  5. #5
    Member
    Join Date
    Jul 2007
    Posts
    16

    Default

    Quote Originally Posted by nyjimbo View Post
    No, its not. I mean Zend engine is installed but the optimizer does not show on your system when I run the php test file.

    My host dosent respond to me but when they did respond they did say that optimizer was installed.

  6. #6
    Member nyjimbo's Avatar
    Join Date
    Jan 2003
    Location
    New York
    Posts
    1,105

    Default

    Quote Originally Posted by ReCoDe View Post
    My host dosent respond to me but when they did respond they did say that optimizer was installed.
    Well, your output is not showing the optimizer. Show them that and see what they say.
    "A dog has raised it’s hind leg on the age of nevermore !"
    -- Rolf

  7. #7
    Member
    Join Date
    Jul 2007
    Posts
    16

    Default

    Quote Originally Posted by nyjimbo View Post
    Well, your output is not showing the optimizer. Show them that and see what they say.
    Well they say it is. So lets just try to do it if it were installed? Like what do I have to do?

  8. #8
    Member nyjimbo's Avatar
    Join Date
    Jan 2003
    Location
    New York
    Posts
    1,105

    Default

    Quote Originally Posted by ReCoDe View Post
    Well they say it is. So lets just try to do it if it were installed? Like what do I have to do?
    If it is not installed you cannot do anything. Period.

    If it is installed you do not have to do anything. Period.

    Good luck, I think your host doesnt know the difference between the engine and the optimizer.
    "A dog has raised it’s hind leg on the age of nevermore !"
    -- Rolf

  9. #9
    Member
    Join Date
    Jul 2007
    Posts
    16

    Default

    Quote Originally Posted by nyjimbo View Post
    If it is not installed you cannot do anything. Period.

    If it is installed you do not have to do anything. Period.

    Good luck, I think your host doesnt know the difference between the engine and the optimizer.


    Thanks man.

  10. #10
    BANNED
    Join Date
    Jun 2005
    Location
    Wild Wild West
    Posts
    2,025

    Default

    ReCoDe, the following is a cut and paste from your phpinfo() screen ...
    Code:
    This program makes use of the Zend Scripting Language Engine:
    Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
    The following is a cut and paste from one of my servers where the
    latest Zend Optimizer and Ioncube are both installed ...
    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
    Do you see the obvious difference?

    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!

  11. #11
    Member
    Join Date
    Jul 2007
    Posts
    16

    Default

    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

  12. #12
    Member
    Join Date
    Jan 2005
    Location
    Earth
    Posts
    1,050

    Default

    Quote Originally Posted by ReCoDe View Post
    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
    Looking at the above output, Zend Optimizer is installed on your server.

  13. #13
    Member nyjimbo's Avatar
    Join Date
    Jan 2003
    Location
    New York
    Posts
    1,105

    Default

    Quote Originally Posted by Shekhar View Post
    Looking at the above output, Zend Optimizer is installed on your server.
    Well of course it does now, he finally installed it.
    "A dog has raised it’s hind leg on the age of nevermore !"
    -- Rolf

  14. #14
    Member
    Join Date
    Jul 2007
    Posts
    16

    Default

    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?

  15. #15
    BANNED
    Join Date
    Jun 2005
    Location
    Wild Wild West
    Posts
    2,025

    Default

    Quote Originally Posted by ReCoDe
    Yes, its installed. But when I install the scripts. It dosent recognize it..."
    WRONG! You still do NOT have Zend Optimizer or Ioncube installed .....

    Quote Originally Posted by ReCoDe View Post
    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
    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.

    Quote Originally Posted by phpinfo on web
    This program makes use of the Zend Scripting Language Engine:
    Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies 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
    What you get in SSH is meaningless since you obviously have 2 different
    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.

Similar Threads & Tags
Similar threads

  1. Zend Optimizer not installed
    By Bashy in forum New User Questions
    Replies: 8
    Last Post: 02-24-2011, 08:21 AM
  2. Zend Optimizer not installed
    By Zion Ahead in forum cPanel and WHM Discussions
    Replies: 2
    Last Post: 12-13-2008, 06:02 PM
  3. Zend Optimizer not installed
    By cLub2Share in forum cPanel and WHM Discussions
    Replies: 4
    Last Post: 02-27-2006, 08:21 PM
  4. HELP: ZEND installed but can't get to cpanel
    By jpfour23 in forum cPanel and WHM Discussions
    Replies: 1
    Last Post: 02-20-2004, 09:45 AM
Linkedin       Facebook       Twitter       RSS       Flickr       YouTube