Tagged Questions
Quercus is an implementation of the PHP programming language in pure Java.
8
votes
3answers
1k views
I have PHP running on Google App Engine - How do I use DB now?
I followed this to setup PHP on the Google appengine and it works great. Any suggestions on how we can use a database / datastore with this on GAE?
7
votes
5answers
329 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 ...
7
votes
2answers
178 views
quality of quercus translation?
have someone used quercus to translate php into bytecode? if you got a big php application, will the translation be flawless? it sounds to me very impossible to just translate everything without error ...
7
votes
4answers
1k views
Is Quercus a viable replacement for PHP in Java environments?
For anyone stumbling upon this question who doesn't know what Quercus is - it is an implementation of PHP done in Java.
For a project that I am currently working on we serve php pages via cgi over ...
5
votes
1answer
580 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
528 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 ...
3
votes
3answers
89 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 ...
3
votes
2answers
179 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 ...
3
votes
1answer
349 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 ...
2
votes
1answer
64 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() ...
2
votes
0answers
121 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 ...
2
votes
1answer
211 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?
2
votes
2answers
613 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
143 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. ...
1
vote
1answer
43 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 = ...
1
vote
1answer
55 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 ...
1
vote
1answer
52 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.
1
vote
1answer
205 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", ...
1
vote
1answer
281 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 ...
1
vote
1answer
543 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 ...
1
vote
1answer
397 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. ...
1
vote
2answers
74 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 ...
1
vote
2answers
290 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***
?>
...
1
vote
1answer
395 views
Setting Quercus db connection encoding to UTF-8 (urgent problem and need your great help)
Now we are going to use java class in my website developed with PHP + mySQL. I came to know Quercus and it worked well.
But only problem is encoding.
Quercus is providing ISO8859 encoding in default ...
0
votes
1answer
49 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 ...
0
votes
1answer
77 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
170 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
114 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 ...
0
votes
0answers
89 views
App Engine Data Retrieve from PHP
i find code here that retrieve data from app engine data store. i'm able to put data.. but can't success in retrieval.
according this question..
someone user ask
import ...
0
votes
1answer
232 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 ...
0
votes
1answer
304 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 ...
0
votes
1answer
261 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 ...
0
votes
1answer
218 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
263 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 ...
0
votes
1answer
85 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 ...
0
votes
2answers
325 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?
0
votes
2answers
695 views
install quercus in glassfish?
i have downloaded the latest quercus 4.0.3 war-file from
http://quercus.caucho.com/
how do you install quercus in glassfish?
i followed this old tutorial for a old quercus version but it didnt ...
0
votes
2answers
165 views
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 ...
-1
votes
1answer
193 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 ...