Results 1 to 4 of 4
  1. #1
    Join Date
    Apr 2004
    Location
    USA
    Posts
    445

    Easy (aka dumb) Zend optimiser question

    What is a quick way to check if I have zend on a server? (I think I installed it, but I can't remember for sure).
    ►►►Come join us at A Fun FRIENDLY Christian Forum◄◄◄

  2. #2
    Join Date
    Oct 2004
    Location
    Kerala, India
    Posts
    4,771
    Login to the shell of the server and type the command below.

    php -v

    It should show output as following if Zend Optimizer is installed.

    with Zend Optimizer v2.6.2, Copyright (c) 1998-2006, by Zend Technologies
    David | www.cliffsupport.com
    Affordable Server Management Solutions sales AT cliffsupport DOT com
    CliffWebManager | Access WHM from iPhone and Android

  3. #3
    Join Date
    Apr 2004
    Location
    USA
    Posts
    445
    php -v worked, zend is there, Thanks much!!
    ►►►Come join us at A Fun FRIENDLY Christian Forum◄◄◄

  4. #4
    Join Date
    Feb 2006
    Location
    Melbourne, Australia
    Posts
    141
    I know this was answered, but just in case you don't have SSH access to your hosting account, you can just as easily find out what was compiled with the PHP install and what wasn't, simply create a new .PHP file and throw the following in;

    PHP Code:
    <?php

    // Show all information, defaults to INFO_ALL
    phpinfo();

    ?>
    "Outputs a large amount of information about the current state of PHP. This includes information about PHP compilation options and extensions, the PHP version, server information and environment (if compiled as a module), the PHP environment, OS version information, paths, master and local values of configuration options, HTTP headers, and the PHP License."

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •