subgr
unread,Nov 26, 2009, 8:22:03 AM11/26/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Mozilla Labs Weave Server Users
In the server\user\1\index.php you are using PATH_INFO to get the
path:
$path = array_key_exists('PATH_INFO', $_SERVER) ? $_SERVER
['PATH_INFO'] : '/';
That didn’t work for me, that’s why I converted it to:
if (!empty($_SERVER['PATH_INFO']))
$path = array_key_exists('PATH_INFO', $_SERVER) ? $_SERVER
['PATH_INFO'] : '/';
else if (!empty($_SERVER['ORIG_PATH_INFO']))
$path = array_key_exists('ORIG_PATH_INFO', $_SERVER) ? $_SERVER
['ORIG_PATH_INFO'] : '/';
Is there any reason that you don’t have both? I noticed that in your
minimal server you are using both. If there is no reason not using
both of them then It will be nice to have it included in your code, so
there is no need of changing anything when updating.
I am using the b486c76b35f8 2009-11-24 version of the server
successfully on share hosting.
Thanks for this great software.