The PHP version of Shindig has been moved to the attic, this is only kept here for
legacy reasons.
This is the PHP steps on how to build and run Apache Shindig.
In order to build and run Apache Shindig for PHP, you must have the following:
Create a subdirectory in your web document root, e.g. /var/www/html and checkout the Apache Shindig code from its Subversion repository.
With PHP There is no need to build anything - the source code is already built.
To run the code, you have several options:
Point your apache to the php dir with a virtual host like:
<VirtualHost your_ip:your_port> ServerName your.host DocumentRoot /var/www/html/shindig/php ... other normal settings in vhosts... </VirtualHost>
Restart apache, and point your browser to:
http://your.host/gadgets/ifr?url=http://www.labpixies.com/campaigns/todo/todo.xml
If you cannot/don't want to create a virtual host, you can edit the file php/config.php and change the web_prefix setting to '/shindig/php'.
Then you can run the gadget by pointing your browser to:
http://your.host/shindig/php/gadgets/ifr?url=http://www.labpixies.com/campaigns/todo/todo.xml
Read php/README for original instructions on how to start up the php Apache Shindig server.