|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-04-16 06:53 UTC] jmoore@php.net
[2001-05-10 05:49 UTC] sniper@php.net
[2001-06-01 16:09 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 08:00:01 2025 UTC |
The following: $system = new Java("java.lang.System"); print("Java version: " . $system->getProperty("java.version") . "<BR>\n"); $formatter = new Java("java.text.SimpleDateFormat", "EEEE, MMMM dd, yyyy 'at' h:mm:ss a zzzz"); print($formatter->format(new Java("java.util.Date")) . "<BR>\n"); produces the error "Unable to create Java Virtual Machine in xyz.php on line XX" under PHP 4.0.5RC1 as well as the latest 4.0.4 off the php.net site. my php.ini section is: extension=php_java.dll java.library.path = "C:\Inetpub\php\extensions;C:\Inetpub\jdk-1.3\jre\bin;C:\Inetpub\jdk-1.3\jre\lib;C:\Inetpub\jdk-1.3\lib" java.library = C:\Inetpub\jdk-1.3\jre\bin\classic\jvm.dll java.class.path = "C:\Inetpub\php\extensions\php_java.jar" java.home = "C:\Inetpub\jdk-1.3\bin;C:\Inetpub\jdk-1.3\jre\bin;C:\Inetpub\jdk-1.3\jre\lib;C:\Inetpub\jdk-1.3\lib" Im using J2SDK 1.3 The script actually works the first few times (the ammount of times varies) but then continuously fails. I've seen numerous reports of people with the same problem on http://www.phpbuilder.net Installing an another machine with the same config, reproduces the same error. It also appears to be somewhat related to bug # 6617 (http://www.php.net/bugs.php?id=6617) and # 6925 (http://www.php.net/bugs.php?id=6925) Are there any plans to tackle these issues? Robin