Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

There are a few tips for issues with logging in to the site. Once our support is open, please feel free to send us a ticket if you can't resolve issues.

www & non-www Conflicts

When first installing your site, phpFox sets the domain of the current URL you are using during the installation. So if you install the site using www.site.com, you must use this as your primary domain. On your server if a user would visit site.com without the www and click on the Login popup, it won't work as your browser will see this as two completely different sites. To resolve this you need to make sure your web server sends all traffic to your primary domain, which in this example is using the www.

Apache Example (editing .htaccess file)

 

Code Block
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

Nginx Example 

Code Block
server {
    server_name site.com;
    return 301 $scheme://www.site.com$request_uri;
}

 

Users in X user group can't log in

...