MacLochlainns Weblog

Michael McLaughlin’s Technical Blog

Site Admin

Zend Server Installation

with 5 comments

After posting Zend Core for Oracle to support the blog post, I figured that it would be more important to post the new Zend Server Community Edition. Basically, Zend Core for Oracle is deprecated and frozen at PHP 5.2.5. Zend Server is currently at 5.2.9 and shortly at 5.3.0, which is current release.

These are the instructions for installing Zend Server Community Edition. There’s a pre-requisite that you install Java on your computer. It requires the jvm.dll library, which is covered in the instructions.

You can download the Java JRE or JDK and install it first. Then, you can go to Zend Corporation and download the Zend Server Community Edition.

Hope this helps you anticpate the installation.

Written by maclochlainn

July 1st, 2009 at 11:51 pm

Posted in

5 Responses to 'Zend Server Installation'

Subscribe to comments with RSS or TrackBack to 'Zend Server Installation'.

  1. That was very easy to follow. Thanks!

    Daniel

    3 Jul 09 at 6:44 pm

  2. why cant someone view the zend server installation conveniently without it disappearring!

    wale

    30 Jul 09 at 10:53 am

  3. Thanx. It cleared up some uncertainty I had with regards to choosing the correct JVM/JRE path.

    Thomas

    28 Oct 09 at 3:08 am

  4. I am having trouble connecting to MySQL, I removed the “i” in the line, ” $c = @mysqli_connect(“localhost”, “student”, “student”, “sampledb”);” directly after @mysql to try to connect and it did not work, I placed it back in and it still couldn’t work, I keep receiving the “sorry…” Does the fact I connect on a different port than 3306 have any impact on the code?

    Johnny

    29 Mar 10 at 8:05 pm

  5. If you’ve configured a different port number, you must provide a fifth parameter like this:

    if (!$c = @mysqli_connect(HOSTNAME,USERNAME,PASSWORD,DATABASE,"3307")) {

    The default port is 3306, anything else must be explicitly provided in the call. You can read more about it here.

    maclochlainn

    29 Mar 10 at 9:26 pm

Leave a Reply