You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(6) |
Oct
(6) |
Nov
(8) |
Dec
(2) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
(19) |
Feb
(15) |
Mar
(10) |
Apr
(8) |
May
(7) |
Jun
(9) |
Jul
(13) |
Aug
(31) |
Sep
(111) |
Oct
(52) |
Nov
(72) |
Dec
(42) |
| 2006 |
Jan
(21) |
Feb
(32) |
Mar
(33) |
Apr
(24) |
May
(15) |
Jun
(40) |
Jul
(32) |
Aug
(19) |
Sep
(38) |
Oct
(37) |
Nov
(63) |
Dec
(37) |
| 2007 |
Jan
(18) |
Feb
(39) |
Mar
(69) |
Apr
(49) |
May
(71) |
Jun
(59) |
Jul
(71) |
Aug
(85) |
Sep
(46) |
Oct
(14) |
Nov
(25) |
Dec
(56) |
| 2008 |
Jan
(24) |
Feb
(77) |
Mar
(104) |
Apr
(44) |
May
(41) |
Jun
(11) |
Jul
(31) |
Aug
(59) |
Sep
(44) |
Oct
(86) |
Nov
(66) |
Dec
(93) |
| 2009 |
Jan
(88) |
Feb
(41) |
Mar
(49) |
Apr
(135) |
May
(22) |
Jun
(31) |
Jul
(60) |
Aug
(71) |
Sep
(76) |
Oct
(18) |
Nov
(52) |
Dec
(20) |
| 2010 |
Jan
(8) |
Feb
(50) |
Mar
(35) |
Apr
(48) |
May
(46) |
Jun
(84) |
Jul
(38) |
Aug
(61) |
Sep
(51) |
Oct
(31) |
Nov
(17) |
Dec
(18) |
| 2011 |
Jan
(51) |
Feb
(14) |
Mar
(17) |
Apr
(23) |
May
(15) |
Jun
(11) |
Jul
(5) |
Aug
(5) |
Sep
(15) |
Oct
(8) |
Nov
(5) |
Dec
(25) |
| 2012 |
Jan
(2) |
Feb
(4) |
Mar
(6) |
Apr
(9) |
May
(27) |
Jun
(32) |
Jul
(36) |
Aug
(10) |
Sep
(16) |
Oct
(3) |
Nov
(13) |
Dec
(7) |
| 2013 |
Jan
(1) |
Feb
(4) |
Mar
|
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(4) |
Oct
(2) |
Nov
(1) |
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
(2) |
Apr
(1) |
May
(2) |
Jun
(9) |
Jul
(5) |
Aug
(2) |
Sep
(4) |
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
(3) |
Feb
(2) |
Mar
(4) |
Apr
(3) |
May
(1) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
(5) |
Oct
(1) |
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(5) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
(6) |
Feb
|
Mar
|
Apr
(10) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
|
| 2018 |
Jan
(2) |
Feb
(5) |
Mar
|
Apr
|
May
(1) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2020 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
| 2021 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2023 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
(1) |
3
(1) |
|
4
|
5
(3) |
6
(6) |
7
(6) |
8
(10) |
9
(6) |
10
|
|
11
(5) |
12
(5) |
13
(1) |
14
|
15
(2) |
16
(2) |
17
(4) |
|
18
(3) |
19
(3) |
20
(7) |
21
(5) |
22
(7) |
23
(1) |
24
(4) |
|
25
|
26
(3) |
27
(2) |
28
(1) |
29
|
30
|
31
|
|
From: <php...@li...> - 2009-01-21 20:13:35
|
I found some discussions from earlier last year that that discussed a problem identical to what I'm getting: https://issues.apache.org/bugzilla/show_bug.cgi?id=43966 http://sourceforge.net/mailarchive/forum.php?thread_name=1205435208.2906.45.camel%40kukac&forum_name=php-java-bridge-users It wasn't clear to me what the resolution was other than patching java.c. Is this just an issue with the older method of running JavaBridge.jar under apache instead of in its own process? |
|
From: <php...@li...> - 2009-01-21 18:23:58
|
Hello!
> <form name="frm" id="frm"
> method="POST" action="test.php">
> <input type="text" name="txtTest"
> <?php
> echo "<H1>You entered " . $txtTest .
you can either set register globals to On or use the $_POST array. Example:
function getRequest() {
static $request = null;
if ($request == null) $request = new Request($_POST);
}
class Request {
var $attr;
function Request($attr) {
$this->attr = $attr;
}
function getAttribute($key) {
return $this->attr[$key]
}
function getAttributeNames() {
return array_keys($this->attr);
}
}
echo "<H1>You entered " . getRequest()->getAttribute("testText")
Peter
|
|
From: <php...@li...> - 2009-01-21 17:18:07
|
Hi all,
I'm a Java programmer, & a complete newbie when it comes to PHP.
I've recently moved a customer's website to a new host running tomcat
5.5.14 on a homegrown flavor of Linux.
This website contains both PHP and Java/JSP.
All I'm really trying to do is get the tomcat webapp to handle *.php
pages correctly.
I've setup web.xml as shown in examples (using the PhpCGIServet to
handle *.php pages), and have placed links in the /WEB-INF/cgi directory
to an existing php installation on the server (as well as a link to
this installation's ini file).
I have an HTML page as follows:
<html>
<body>
<form name="frm" id="frm" method="POST" action="test.php">
<input type="text" name="txtTest" />
<input type="submit"/>
</form>
</body>
The text.php page is as follows:
<html>
<body>
<? print(Date("1 F d, Y")); ?>
<?php
echo "<H1>You entered " . $txtTest . "</H1>";
?>
</body>
</html>
When I submit from the HTML page to PHP page, the PHP is processed
correctly (date is shown, "You entered" is shown), but the parameters
passed across in the HTTP Post are not coming through.
Any idea how to proceed?
Rgds,
Assaf
|
|
From: <php...@li...> - 2009-01-21 17:05:30
|
Hi Jon, the main problem with version 3.2.1 is the hook into the Zend evaluator (the java.so or php_java.dll). Because the PHP low-level API changes constantly, it is impossible to maintain version 3.2.1 or below (PHP/Java Bridge 3.2.1 will no longer work with PHP 5.3 or PHP 6). >From Java's point of view a php-cgi (fast cgi executable) is a requirement. Otherwise you won't be able to run PHP interactively. As far as I know the interactive JSR 223 script engine is the only way to start a REPL. -- The php cli can be started with the -a flag, which emulates an interactive PHP session, but this doesn't really work well in practice: $ php -a php > foo(); crash Of cause there are other PHP implementations, some are written in pure Java. But none of them is 100% compatible with the PHP script engine from php.net, which renders these implementations useless. Regards, Jost Boekemeier |
|
From: <php...@li...> - 2009-01-21 10:09:19
|
Hi Jost, (sorry for the delay in this response - I sent this originally on the 1/12 using the wrong email address) In the environment I am using (and many other Mac OSX and Mac OSX Server users), the PHP module is an Apache SO and the PHP command line interface is actually a .bin executable and not a fast CGI. I utilize a variety of CRON jobs and such that call the PHP command- line executable directly for non-interactive PHP scripts. Since I don't use the php-cgi I am not sure adding one to the bridge package will help me or maybe other Mac OSX Server users. In the version I am currently running, 3.2.1, I compiled the java bridge from your source files to run as an extension to PHP in Apache 1.3.x and also to run from the command line PHP executable. I am not sure if you have changed the overall structure of the bridge to no longer support this way of doing things or the original stand- alone pure PHP implementation of the bridge you used to have as well. If there is still a pure PHP version of the bridge, maybe that is the way I should go. Otherwise, I am not sure the best way to upgrade to the new bridge from version 3.2.1 (which is working great). Jon On Jan 6, 2009, at 7:51 AM, php-java-bridge- us...@li... wrote: > Hi John, > >> java.lang.RuntimeException: Could not run PHP ([php-cgi, > > what about adding a OSX php-cgi binary to the JavaBridge.war file? > AFAIK OSX doesn't ship with a php-cgi binary. Furthermore all > current PHP binaries aren't exactly stable (see this regression for > example: http://bugs.php.net/bug.php?id=46723&edit=1), anyway. So > it might be a good idea to ship a stable PHP binary along with the > PHP/Java Bridge. > > The Solaris/Linux/... PHP binaries conntained in JavaBridge.war > which have been compiled with: > > cd php-5.1.4; ./configure --disable-all --enable-fastcgi && make > && strip sapi/cgi/php-cgi > > Could you provide such a php-cgi binary for OSX? > > > Regards, > Jost Boekemeier |