|
From: Faine, M. <Mar...@ms...> - 2001-05-23 16:58:36
|
in binarycloud.php, just hardcode the path for the moment
(i.e. delete all the code except "define(BC_PATH..." and just set the path.
exactly what I did, should be ok for now.
then, go to /path/to/bc/htdocs/index.php
at the bottom of that page, there's a bunch of commented out lines:
//$Debug->Output("globals");
is the one you want to un-comment.
that will give you a print_r of your globals...
Here they are:
Debug called with: 'globals'
= GLOBALS Array
==========================================================================
Array
(
[QUERY_STRING] =>
[REQUEST_LINE] => GET /bc/index.php HTTP/1.1
[REQUEST_METHOD] => GET
[SCRIPT_NAME] => /bc/index.php
[SCRIPT_PROTOCOL] => HTTP/1.1
[CONTENT_LENGTH] =>
[CONTENT_TYPE] =>
[HTTP_ACCEPT] => */*
[HTTP_ACCEPT_ENCODING] => gzip, deflate
[HTTP_ACCEPT_LANGUAGE] => en-us
[HTTP_AUTHORIZATION] =>
[HTTP_COOKIE] =>
[HTTP_IF_MODIFIED_SINCE] =>
[HTTP_REFERER] =>
[HTTP_USER_AGENT] => Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
[HTTP_USER_DEFINED] =>
[AUTH_TYPE] =>
[PATH_INFO] =>
[REMOTE_USER] =>
[HTTPS_KEYSIZE] =>
[HTTPS_SECRETSIZE] =>
[REMOTE_ADDR] => IP was here
[PHP_SELF] => /bc/index.php
[HTTP_POST_VARS] => Array
(
)
[HTTP_GET_VARS] => Array
(
)
[HTTP_COOKIE_VARS] => Array
(
)
[HTTP_SERVER_VARS] => Array
(
[QUERY_STRING] =>
[REQUEST_LINE] => GET /bc/index.php HTTP/1.1
[REQUEST_METHOD] => GET
[SCRIPT_NAME] => /bc/index.php
[SCRIPT_PROTOCOL] => HTTP/1.1
[CONTENT_LENGTH] =>
[CONTENT_TYPE] =>
[HTTP_ACCEPT] => */*
[HTTP_ACCEPT_ENCODING] => gzip, deflate
[HTTP_ACCEPT_LANGUAGE] => en-us
[HTTP_AUTHORIZATION] =>
[HTTP_COOKIE] =>
[HTTP_IF_MODIFIED_SINCE] =>
[HTTP_REFERER] =>
[HTTP_USER_AGENT] => Mozilla/4.0 (compatible; MSIE 5.01; Windows
NT 5.0)
[HTTP_USER_DEFINED] =>
[AUTH_TYPE] =>
[PATH_INFO] =>
[REMOTE_USER] =>
[HTTPS_KEYSIZE] =>
[HTTPS_SECRETSIZE] =>
[REMOTE_ADDR] => IP was here
[PHP_SELF] => /bc/index.php
)
[HTTP_ENV_VARS] => Array
(
)
[HTTP_POST_FILES] => Array
(
)
[SERVER_PORT] => 2500
[HTTPS] => OFF
[SERVER_NAME] => starbase
[REMOTE_HOST] =>
[SERVER_URL] => http://starbase:2500
[PATH_TRANSLATED] => /raidb4/iPlanet/server/docs/bc/index.php
There were more but didn't seem important let me know if I left anything you
needed out.
I'm also getting JS errors and missing images, are there any other paths or
switches that need setting?
Also, this: Unable to call _pear_call_destructors() - function does not
exist in Unknown on line 0
but I'm guessing you know about this one already.
-Mark
|