PHP

 
 
PHP (= Hypertext Preprocessor) is an HTML-embedded server-side scripting language.

PHP is distributed at no charge for commercial or non-commercial use. For more information read the LICENSE information.

More information about PHP can be found at: http://www.php.net

PHP manuals can be found at:
http://www.php.net/manual/en/
http://devzone.zend.com/manual/

The latest PHP version can be downloaded from: http://www.php.net/downloads.php







Session save path



Information
PHP stores session information into a directory. To enable this the php.ini file must be updated.
Note: A content management system like Mambo requires that the session save path is set.

Operating system used
Windows XP Home Edition Version 5.1 SP 2

Software prerequisites
PHP 4

Procedure
  1. Create a directory where the session information is stored, e.g:
    c:\temp_php_session

  2. Make sure this directory is writeable, remove the read-only attribute assigned to this directory. On Windows XP the attribute can be removed as follow:
    Right click on the folder, select Properties, select tab General and uncheck the read-only attribute.

  3. Edit file c:\WINDOWS\php.ini. Change the following line:

    ;session.save_path = /tmp

    into

    session.save_path= "c:\temp_php_session"

  4. Restart Apache.