Questions tagged [quercus]

Quercus is an implementation of the PHP (version 5.3) programming language in pure Java.

Quercus is an implementation of the PHP (version 5.3) programming language in pure Java and runs ontop of common java application servers such as Tomcat. It is possible to make calls to java from the php-code:

<?php
  import java.util.Date;
  $a = new Date(123);
  echo $a->time;
?>

Example from the quercus website.

80 questions
0
votes
2 answers

Running a PHP webapp from Java

I'm interested in running a PHP web application using Quercus in a way similar to: java -classpath ... com.example.LaunchPHP {php folder} All the documentation I could find on Quercus was related to running from Resin, but this is something I want…
Robert Munteanu
  • 67,031
  • 36
  • 206
  • 278
0
votes
1 answer

Quercus PHP Grails Character Encoding Issue

I am successfully using the latest resin jar (from http://www.caucho.com/download/) to allow me to utilize legacy PHP code within my Grails web application. Everything renders great, EXCEPT non-ASCII character sets. These characters show up as…
Jared
  • 99
  • 1
  • 9
0
votes
2 answers

Quercus Not Running in Embedded Jetty 6

I've been attempting to embed Jetty and Quercus in my application for the past few months, but I haven't been successful yet. I'm using Jetty version 6.1.26 and Quercus 4.0.25. I've packaged the following jars with my application's:…
Jsnman
  • 11
  • 3
-2
votes
1 answer

Wordpress on Appengine

I've been using Appengine to host my site. Now i'm thinking of building the site with wordpress, for a few reasons. Does anyone know how to run a wordpress site on appengine? I read a couple of blogs but could not understand completely. Anu…
Maheshwar
  • 17
  • 1
  • 3
-4
votes
1 answer

Codeigniter mysql_connect for Quercus resin

I use Tomcat and Quercus. Quercus want mysql_connect, How add mysql_connect argument?
Nonserviam
  • 17
  • 6
1 2 3 4 5
6