2018-04-11, 10:31 PM
(2018-04-11, 10:25 PM)effone Wrote: Your public root is not assigned to 'public_html' it seems. Have you created that 'public_html' directory manually?I cant even get into my ACP atm. Yes I did create that manually.
This is an invalid path
http://forums.unstoppablegamingnetwork.com/images/default_avatar.png
however, this works
http://forums.unstoppablegamingnetwork.com/public_html/images/default_avatar.png
To fix the issues related to loading the resources you can try adding this line to your header template after meta tags:
<base href="//forums.unstoppablegamingnetwork.com/public_html/" target="_self">
For your login and related issues append 'public_html' to your 'Site Details' under 'Board Settings' in ACP : Board URL, Homepage URL, Cookie Path
For example set cookie path to:
/public_html/
Hard refresh (Ctrl+F5) several times, clear cookies and cache of browser and see what happens...
To set the routing altogether you can try adding these 2 lines in your .htaccess
* Note that this may take some times to reflect ...RewriteEngine on RewriteRule ^(.*) public_html/$1 [L]
The UGN Team