How
To Install
|
Installing and running the Scriptol compiler |
Under Windows, you can make a batch file with these commands and %1 as
node of the filename. Ex: |
Installing the Php interpreter under Windows |
Once you have downloaded the archive on php.net,
do as below: |
How to install the Java extension |
Search for the java path Example: c:\jdk1.3 Search for the php extensions path Example: c:\php\extensions The extension directory must hold these files: php_java.dll php_java.jar Set these lines into php.ini (in the Windows directory) extension_dir = c:\php\extensions extension=php_java.dll Search for the [java] section in php.ini java.class.path must be assigned the path of php_java.jar and the path of any Java class you want to use. - If these classes are inside jar files, the jar filenames are a part of the path. - If several paths are required, they are separated by semicolons and enclosed in double quotes. java.home must be assigned the path of the Java directory. java.library must be assigned the path of jvm.dll. java.library.path must be assigned the path of php extensions. Example: [Java] java.class.path = "c:\php\extensions\php_java.jar;c:\myclasses" java.home = c:\jdk1.3 java.library = c:\jdk1.3\jre\bin\hotspot\jvm.dll java.library.path = c:\php\extensions |