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

learn more… | top users | synonyms

0
votes
1answer
15 views

Erorr Connecting database in Quercus on tomcat

I am using Quercus for my blog combined with another Spring+MySQL+tomcat main app(2 war in 1 server). On my localhost i am able to compile WordPress PHP files compiled and everything seems great. But ...
0
votes
1answer
42 views

How to write to logfile with quercus

I'm running quercus 4.0.25 on apache tomcat 1.7 and I've finally managed to get php running. However I cannot seem to get my php settings regarding writing to logfiles running. I've tried these ...
0
votes
1answer
89 views

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 ...
0
votes
2answers
145 views

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 ...
0
votes
0answers
38 views

i have japanese character confusion on quercus on tomcat

i dont know why quercus cand display japanese character correctly... quercus:4.0.25 WEB-INF/web.xml is like this <?xml version="1.0" encoding="utf-8"?> <web-app> ...
0
votes
0answers
172 views

Integrating Apache Tiles with Spring MVC where View is Quercus PHP

I have implemented the Spring MVC + Quercus describled here http://blog.caucho.com/2009/04/14/using-php-as-a-spring-mvc-view-via-quercus/ a slightly different way than drecute raised question ...
0
votes
0answers
50 views

How to deploy Quercus on WSO2 WSAS

I'm experimenting with Quercus on WSO2 WSAS. I'm trying to deploy a simple webapp like this; classpath looks like this: - cdi-16.jar - javaee-16.jar - javamail-141.jar - resin.jar web.xml looks ...
1
vote
0answers
37 views

Would using Quercus make my code fall under the GPL? [closed]

Quercus is an implementation of PHP written in Java, and released under the GPL. If I use it, does my PHP code fall under the GPL? What about my Java code? Assuming I write new Java code, and new ...
1
vote
1answer
206 views

Getting QuercusView to work with SpringMVC

I'm trying to implement SpringMVC + Quercus as described at http://blog.caucho.com/2009/04/14/using-php-as-a-spring-mvc-view-via-quercus/ . So I setup Spring like this: web.xml <servlet> ...
1
vote
0answers
80 views

Error encountered while trying to upload Quercus to hosting server

I am new to Quercus, I am trying to run PHP on my TOMCAT HOST. Everything works fine on my local tomcat server, however, after I uploaded it to my hosting server(EATJ) I have the following Errors: ...
0
votes
2answers
419 views

Running Quercus PHP inside Java

I am trying to run some PHP snippets from my Java application. I have seen this question: PHP Call from Java Using Quercus which suggests simply: import com.caucho.quercus.QuercusEngine; ...
1
vote
1answer
248 views

How do you install Mantis (php) into Quercus (java based php engine) runing on Tomcat

This question explains that Quercus can be used to install Mantis Bug Tracker ( a php based application) within a tomcat installation. Free Wiki and Bug Tracker for JBoss/Tomcat I've now deployed ...
0
votes
1answer
243 views

Using Zend on Quercus/Tomcat and connect to Oracle

I am using Zend on Quercus/Tomcat and I want to connect to Oracle using Zend_db. (a) How to make Quercus connect to Tomcat JNDI data source to a Oracle database (b) How to make Zend_db to connect to ...
1
vote
1answer
261 views

Quercus on Google App Engine

I have added Quercus wrongly on google app engine and it is giving me errors. This is my web.xml: <?xml version="1.0" encoding="utf-8"?> <web-app ...
2
votes
1answer
2k views

PhP with GAE and Google Cloud SQL

I'm creating a web app using php to run on google app engine. i wish to use google cloud sql to store data. i used a Local MySQL Instance During Development. i have added quercus to my project and ...
0
votes
2answers
420 views

Is it possible to deploy cakephp applications on google app engine?

I recently read that php applications can be deployed on Google App Engine using Quercus. Is it possible to deploy cakephp applications too? Also, from the developers point of view, is there any ...
1
vote
1answer
206 views

Google App Engine Quercus Error

I have followed tutorial on http://www.php-tutorials.info/phpOnAppEngine.php and created an app engine project and include php file with following code. <?php echo "Hello.. java with php"; ?> ...
0
votes
1answer
180 views

How to inject java instances into PHP scripts programmatically executed using Quercus

I have some code similar to this: QuercusEngine engine = new QuercusEngine(); Value value = engine.execute("<?php return $obj->getName(); ?>"); System.out.println(value); (See ...
0
votes
1answer
521 views

PHP enabling glassfish with Quercus - maven dependency?

It turns out to be pretty easy to get php running in my glassfish application. I've downloaded Quercus 4.0.18 from here: http://caucho.com/download/quercus-4.0.18.war, unpacked the war file and copied ...
1
vote
1answer
216 views

App Engine / Quercus datastore prepare query error

I'm trying to replicate the java guestbook example on Quercus on AppEngine and I'm getting an error having to do with preparing the query: $greetings = ...
3
votes
4answers
478 views

Google AppEngine java.net.Socket is restricted error

I'm using Quercus/PHP on AppEngine. When I run a simple script with file_get_contents($url); I get an error: java.lang.NoClassDefFoundError: java.net.Socket is a restricted class. Please see ...
2
votes
1answer
234 views

Quercus (PHP on Google App Engine) is_file is_dir not Working

I have a PHP application running on Google App Engine, who has the ability to run PHP on GAE via Quercus. However, I notice that my scripts choke on GAE when they run an is_dir() or is_file() ...
1
vote
2answers
324 views

Fetching a file from a PHP file in Google App Engine

I need to know if there is anyway that I can use file_get_html or any equivalent function in php on GAE? I know it has something called URLFetch() but I am not able to understand how I will call that ...
3
votes
1answer
502 views

Configuring Quercus on Google App Engine

I am currently working with GAE and was trying to figure out if there was some way that I can run php on GAE. Fortunately, I came across Quercus and was very happy to find that it had all that i ...
1
vote
1answer
140 views

Importing the Resin source into Eclipse

How can I import the Resin source code into Eclipse (3.6)? I'm looking to edit some main functions of Quercus.
3
votes
1answer
402 views

Apache Commons VFS with Quercus

On an unmodified install, how can I configure Quercus so that PHP file functions use Apache Commons VFS to access files?
7
votes
5answers
508 views

parse remote csv-file with PHP on GAE

I seem to be in a catch-22 with a small app I'm developing in PHP on Google App Engine using Quercus; I have a remote csv-file which I can download & store in a string To parse that string I'd ...
0
votes
1answer
192 views

How to access google spreadsheets with php in google app engine?

I have already PHP in GAE with Quercus, but I'm trying to access my google spreadsheets and I want to SELECT, INSERT INTO, UPDATE and also DELETE(or DROP, forgot the function) just like in mysql. How ...
0
votes
1answer
528 views

Jetty 7.4.2 + Quercus 4.0.18: How can I read PHP files from outside the webapp directory

Using this code... import org.eclipse.jetty.server.Server; import org.eclipse.jetty.webapp.WebAppContext; public class OneWebApp { public static void main(String[] args) throws Exception { ...
0
votes
2answers
323 views

How do I register a Quercus custom function when using Quercus in Java ScriptEngine?

I am using Quercus in Apache JMeter for simple scripting of tests. I have a requirement to log from PHP using log4j, and on the whole this works well. So I wrote a Quercus module like this: public ...
-1
votes
1answer
533 views

Wordpress on Appengine [closed]

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 ...
1
vote
2answers
623 views

PHP Call from Java Using Quercus

I have a sample PHP class which I would like to Utilize in my Java Application. We have decided to use Quercus as a Libary for doing the Integration. Can some one let me know How can I call a PHP ...
1
vote
1answer
325 views

GAE IN List query using quercus php - how to?

I'm trying to perform a GAE low-level API query on a list using Quercus (PHP). The java example reads: Query query = new Query("myname"); List<String> list = Arrays.asList("test", "jack", ...
3
votes
2answers
279 views

How can I use Google App Engine's memcache with Quercus?

On http://blog.caucho.com/?p=196, they have made Quercus run App Engine's datastore with PHP. Their source is at http://wordpress-on-quercus.appspot.com/wordpress-on-gae-quercus.zip I would like to ...
0
votes
1answer
530 views

Quercus: Java and PHP integration

I was try Quercus these days, I want to create a java PHP integration module, after looking at the tutorials, I was stack at the part below: Step 3: Create com.caucho.quercus.QuercusModule and ...
1
vote
1answer
431 views

GAE error uploading Quercus' resin.jar

I'm writing a test app for GAE with PHP, the docs I read online said I had to download Resin 4.0 and extract the resin.jar and put it in my lib ...
0
votes
1answer
419 views

how to use FetchOptions in google app engine datastor

how to use FetchOptions functions in php? I want to know how to use the limit and offset functions in the below query code? <?php import com.google.appengine.api.datastore; import ...
1
vote
1answer
1k views

Delete and Update from google app engine datastore

I use Quercus to run php on google app engine and use GAE LowLevel Api to connect datastore. I need sample php code to CRUD ( Create, Read, Update, Delete ) in datastore. I have Create and Read sample ...
2
votes
2answers
1k views

how to use com.google.appengine.api.datastore.Text

i use Quercus to run php on google app engine and and i use below code to insert value to the GAE datastore (BigTable). <?php import com.google.appengine.api.datastore; import ...
2
votes
1answer
218 views

Saving big string in php using quercus

I'm using quercus for appengine. I tried saving a long php string (> 1000 characters) but appengine won't allow me as String can only hold 500 characters. So I tried using appengine's Text datatype. ...
6
votes
1answer
1k views

Is Quercus (Java) faster than native PHP?

If so, why? (Or maybe the better question is 'when'?) I've found some scattered comments, such as in this post, which seem to indicate that Quercus may actually offer some performance advantages over ...
4
votes
3answers
892 views

How can JVM implementations like Jython and JRuby beat their native counterparts?

I was watching this video here, where Robert Nicholson discusses P8, an implementation of PHP on the JVM. At some point he mentions that they aim to surpass native PHP in performance some time in the ...
2
votes
1answer
777 views

Rewrite URL on Glassfish with Quercus' PHP

I have Glassfish 3 server and have added Quercus 4.0.7 to to be able to run PHP applications on it. Everything works perfectly with it. Now I'm trying to run Question2Answer application on my server. ...
0
votes
1answer
525 views

Quercus:php on glassfish server

I am trying to run php on glassfish server using Quercus and i get the following error on top of my page NetBeansProjects/WebApplication1/build/web/q2a/qa-include/qa-index.php:512: Notice: $count is ...
0
votes
1answer
448 views

wordpress servlet mapping not working

I have the latest Wordpress running on Tomcat 6.0.26 virtual host with Quercus PHP servlet. It works, except when I try to use perm links. A url such as /index.php/my-page-name doesn't seem to ever ...
1
vote
2answers
197 views

PSpell in Quercus?

We're running Quercus on Glassfish to serve the odd PHP file. I'm wondering if its possible to get PSpell/ASpell(?) spellchecker(s) working in Quercus? It seems for normal PHP you need to compile it ...
5
votes
1answer
746 views

How fast (slow) is Quercus PHP on Resin Open Source as opposed to Resin Professional?

The clever folks at Caucho are quick to point out that Quercus is 3x-5x faster than straight mod_php (without APC). But digging deeper in the documentation, you'll see that the PHP-to-bytecode ...
0
votes
1answer
115 views

Configuring Quercus to talk to JavaDB

I am trying to get the Quercus PHP engine to connect with the JavaDB. I have successfully deployed Quercus in Glassfish, but I can't get Quercus to successfully connect with my database in JavaDB. Can ...
1
vote
2answers
370 views

Quercus on Google App Engine: Class not loading

Fatal Error: no matching class connection index.php <?php import database.connection; $connection = connection::get()->getPersistenceManager(); // ***ERROR HERE*** ?> ...
0
votes
2answers
432 views

php comet with quercus

if i write the comet push with php but use this code on a java server via quercus, will that solve the one process per request problem that apache had and scale well with lot of users using my chat?

1 2