I just setup an appengine app using the quercus php with java. Got that all working fine, however I wanted to change the document root that my web files get served out of. Currently everything is being served out of the "war" folder, but I want to have it serve out of something like war/htdocs instead and have "htdocs" recognized as my document root, particularly whats stored in $_SERVER['DOCUMENT_ROOT'] for php.
Using urlrewrites I was able to achieve this properly on the surface, however I wanted to get this working on the system level and not just with a bunch of rewrites. So right now on a local environment setup with apache I have the document root set to htdocs and I get something like this for the $_SERVER['DOCUMENT_ROOT']: D:/vidu/work/www.myexample.com/war/coco/htdocs On the app engine I get just the predefined base directory: /base/data/home/apps/myexample/1.338700727520182893/ So I would like to have it like this instead /base/data/home/apps/myexample/1.338700727520182893/coco/htdocs/ Rob -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
