Where is the path for the link in password change emails?
Moderators: Developer, Contributor
Man I'm doin all your work for you :)
Here's what they said in the #apache IRC channel on freenode:
"it returns either the value of the ServerName directive, or possibly ServerAlias (of the value sent in the Host: header) if UseCanonicalName is Off"
So... try ServerAlias or set UseCanonicalName to "Off".
Here's what they said in the #apache IRC channel on freenode:
"it returns either the value of the ServerName directive, or possibly ServerAlias (of the value sent in the Host: header) if UseCanonicalName is Off"
So... try ServerAlias or set UseCanonicalName to "Off".
from httpd.conf:
http://httpd.apache.org/docs/2.0/mod/co ... onicalname
http://httpd.apache.org/docs/2.0/mod/co ... servername
So depending on this var, and how you set other vars, Apache will create SERVER_NAMEUseCanonicalName: Determines how Apache constructs self-referencing
# URLs and the SERVER_NAME and SERVER_PORT variables.
# When set "Off", Apache will use the Hostname and Port supplied
# by the client. When set "On", Apache will use the value of the
# ServerName directive.
#
http://httpd.apache.org/docs/2.0/mod/co ... onicalname
http://httpd.apache.org/docs/2.0/mod/co ... servername
They should be pulling them from ServerName and/or ServerAlias -- if you read the PHP dox (or read what I posted above) it tells you that the Web Server (Apache) provides the data for the PHP environmental variables, which are really just the CGI variables, a standardized set of system properties accessible through Apache/IIS etc.Can I specify those php variables somewhere in the Apache Config?
You need to figure out why the ServerName and ServerAlias are not providing those values.