My web host only allows SSL access to documents that are within the web
document root (/home/mysite/htdocs). When I tried enabling the SSL option
(with hardcoding the SSL url), it failed to access the include files in the
modules directory (/home/mysite/modules). The SSL server url is accessed by
https://server4000.net/mysite/index.html Here's the modification I made to
standard_library:

  if(USE_SSL AND $secure)
  {
   $URL = "https://server4000.net/mysite;
   $URL .= EXTERNAL_PATH . SCRIPT_NAME . "?SCREEN=$screen";
  }
  else
  {
   $URL = "http://";
   $URL .= SERVER_NAME . EXTERNAL_PATH . SCRIPT_NAME . "?SCREEN=$screen";
  }

#  $URL .= SERVER_NAME . EXTERNAL_PATH . SCRIPT_NAME . "?SCREEN=$screen";


The URL seems to come up correctly in the web browser, but I get lots of
failed access errors for the include files. Is there a way to work around
this problem? I'm trying to save a call to tech support. I've tried doing a
symbolic link from the web document root to the modules like so:

ln -s /home/mysite/modules modules

But it failed as well. Anyone else had a similar problem?

Alan



------------------------------------------------------------
To subscribe:    [EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Site:            http://www.working-dogs.com/freetrade/
Problems?:       [EMAIL PROTECTED]

Reply via email to