Accessibility

Table of Contents

Configuring and Testing PHP Servers for XSL Support

Configuring PHP 5 Servers

On PHP 5 application servers, XML and XSL support has been greatly improved:

  • Server-side XSL transformations are a lot faster.
  • XML functions are W3C compliant.
  • XML functionality is usually built-in and enabled by default.

Here is what you need for server-side XSL development on PHP 5:

  • DOM extension, which, in turn, requires libxml2.
  • XSL extension, which, in turn, requires libxslt.

The lixml2 and libxslt libraries by the Gnome project are usually built-in for Windows, so you don't need to worry about them. You may need to compile these libraries into your PHP installation on Linux-based systems, although this is unlikely in most cases. Go to the section corresponding to your operating system for detailed configuration instructions.

Configuring PHP 5 Servers on Windows

The following instructions assume you have already installed a web server with PHP language support on a computer running Windows. Fortunately, there are a lot of free tools on the Internet that help you install and configure a web server automatically. My personal favorite is WAMP Server, which also sets up a MySQL server, phpMyAdmin and SQLiteManager, in addition to Apache and PHP. For detailed instructions on installing WAMP Server, visit this web page.

Before proceeding with the configuration instructions, check if the required libraries are not already enabled on your server by loading the PHP test page in your browser.

As of PHP 5.0, libxml and libxslt libraries, and DOM extension are built in the PHP installation. The XSLT extension is also included by default, but may be disabled in your particular server configuration. To enable the XSLT extension on Windows, follow these instructions:

  1. Locate the php.ini configuration file for your current PHP installation (usually in C:\Windows\) and open it using any text editor (such as Notepad).

    Note: You can find out where the PHP configuration file (php.ini) is located on your system by loading the PHP test page containing the server information in your browser. Look for the Configuration File Path setting:

    Figure 7. Locating your php.ini file

    Figure 7. Locating your php.ini file

  2. Search the following line:

    ;extension=php_xsl.dll

    and uncomment it by removing the ; character.

  3. Save the php.ini file.
  4. Restart your web server.

To check if the configuration went smoothly, read the section Testing PHP 5 Servers.

Configuring PHP 5 Servers on Linux

The following instructions assume you have already installed a web server with PHP language support on a computer running Linux. Before proceeding with the configuration instructions, check if the required libraries are not already enabled on your server by loading the PHP test page in your browser.

As of PHP 5.0, libxml and libxslt libraries, and DOM extension are built-in in the PHP installation. The XSLT extension is also included by default, but may be disabled in your particular server configuration. To enable the XSLT extension on Linux, follow these instructions:

  1. Configure PHP with XSL support. To do that, execute the following commands, in this sequence:

    ./configure \
    --prefix=/usr/local/php \ 
    --with-config-file-path=/usr/local/php \ 
    --with-apxs=/usr/sbin/apxs \ 
    --with-libxml-dir=/usr 
    --with-xsl=/usr

    Note: The flags used above only enable XSL support. Add any other flags that might be necessary for your own configuration, such as MySQL support, LDAP, FTP, and so on. Also, the path to your current PHP installation may be different than /usr/local/php, depending on your settings or the Linux/Unix version you are using.

  2. Compile PHP:

    make
  3. Install PHP:

    make install
  4. Restart your web server.

To check if the configuration went smoothly, read the section Testing PHP 5 Servers.

Configuring PHP 5 Servers on Mac OS X

The following instructions assume you have already installed a web server with PHP language support on a computer running MAC OS X. In the default configuration, the Apache web server is installed, but PHP support is disabled. To learn how to enable it, read the article by James Pelow.

Before proceeding with the configuration instructions, check if the required libraries are not already enabled on your server by loading the PHP test page in your browser.

You can also download a package that will install PHP 5.04 (as of writing this article) with default support for XML and XSLT from the entropy.ch website.

  • If libxml2 is already enabled, you can skip steps 1-7.
  • If both libxml2 and libxslt are already installed, but XSLT support is not enabled in your PHP installation, you can skip steps 1-12.
  1. Download the latest source code version of the libxml2 library from the Gnome Project website.
  2. Extract the library to a folder of choice, using either StuffIt Expander, or the tar command line utility:

    tar xzvf libxml2-2.6.20.tar.gz
  3. Open a Terminal window and navigate to the created folder.
  4. Configure the libxml2 library with the following command:

    ./configure –with-prefix=/usr/local
  5. Compile the library:

    make
  6. Install the libxml library on your server (you need to know the root password):

    sudo make install
  7. Download the latest source code version of the libxslt library from this website.
  8. Extract the library to a folder of your choice, using either StuffIt Expander, or the tar command line utility:

    tar xfz libxslt-1.1.14.tar.gz
  9. Open a Terminal window and navigate to the created folder.
  10. Configure the libxslt library, by issuing the following command:

    ./configure --with-prefix=/usr/local \
    --with-libxml-prefix=/usr/local /
    --with-libxml-include-prefix=/usr/local/include \
    --with-libxml-lib-prefix=/usr/local/lib
  11. Compile the libxslt library:

    make
  12. Install the libxslt library on the server (you will need the root password):

    sudo make install
  13. You need to recompile PHP to enable XML and XSL support. Configure PHP with at least the following flags:

    ./configure --with-xml –with-zlib –with-xslt

    Note: The flags used above only enable XSL support. Add any other flags that might be necessary for your own configuration, such as MySQL support, ldap, ftp, and so forth.

  14. Compile PHP:

    sudo make
  15. Install the new PHP version. It will overwrite any previous version.

    sudo make install
  16. Restart your web server.

To check if the configuration went smoothly, read the section Testing PHP 5 Servers.