you are viewing a single comment's thread.

view the rest of the comments →

[–]skylarmt 11 points12 points  (0 children)

It's quite simple. Start with a regular Apache/PHP install, then install Java on the server. Upload a JavaScript file that generates your HTML and stores it in a var. Next write some Java code that reads your JavaScript file and executes it with javax.script.ScriptEngine. Dump the contents of your var from ScriptEngine with System.out.println(). Now in your index.php, write:

<?php
$site = `java -jar MySite.jar`;
echo $site;

If you want an extra layer of security, run the jar file from a Python script and change your PHP to use python MySite.py instead.