I'm very interested in jiql and tried to run WordPress on Quercus with
jiql.
First of all I cannot compile Quercus sources in GAE SDK with your
modified version of Quercus(I uses eclipse, and Qurercus 4.0.2, too
much errors occur).
Second, When I uses your war files to run WordPress on SDK server, I
come to an error below:
WARNING: WordPress database error Unknown column or missing quotes
autoload for query INSERT INTO wp_001options (option_name,
option_value, autoload) VALUES ('siteurl', '
http://localhost:8080',
'yes'), ('blogname', 'My Blog', 'yes'), ('blogdescription', 'Just
another WordPress weblog', 'yes'), ('users_can_register', '0', 'yes'),
('admin_email', '
y...@example.com', 'yes'), ('start_of_week', '1',
'yes'), ('use_balanceTags', '0', 'yes'), ('use_smilies', '1', 'yes'),
('require_name_email', '1', 'yes'), ('comments_notify', '1', 'yes'),
('posts_per_rss', '10', 'yes'), ('rss_excerpt_length', '50', 'yes'),
('rss_use_excerpt', '0', 'yes'), ('mailserver_url',
'
mail.example.com', 'yes'), ('mailserver_login', '
lo...@example.com',
'yes'), ('mailserver_pass', 'password', 'yes'), ('mailserver_port',
'110', 'yes'), ('default_category', '1', 'yes'),
('default_comment_status', 'open', 'yes'),
.........
And this error is caused by this PHP code:
.........
$sql = "INSERT INTO `$table` (`" . implode( '`,`', $fields ) . "`)
VALUES ('" . implode( "','", $formatted_fields ) . "')";
return $this->query( $this->prepare( $sql, $data) );
.........
I think the problem lies on jiql other than Quercus. Could you please
give some explanation?
Third, I when I try to run wordpress on GAE, I found it too slow to
interprete PHP code to JAVA and PHP run exceed time limit. Could you
please provide some method to pre-compile PHP into Java?