Hello,
I have just installed my XF 1.3.3 for the first time and the installation seems to have gone ok. I can see the homepage forum fine and I can access the admin panel ok. However, my issue is in reference to logging in on the homepage. When I try to do so, I see the login screen, but after I enter my information I receive 404 errors or blank pages on all the links I click on (members online, inbox, conversations, search...anything at all).
Can anyone help sort me out as I am a bit baffled as to what's going on.
FWIW, I have my htaccess file on. I have use friendly urls enabled. I have jquery being served from Google. Cloudflare is also on for the domain as well.
The board is using MySQL 5.5 and PHP 5.4.28 as well if that would trigger anything. The error that appears is 404 not found / nginx or a blank page, see examples below:
Here is an example on my site of the 404 Error: http://jvnk.com/members/
Here is an example of the blank page that shows: http://jvnk.com/find-new/posts
Here is also currently what my htaccess looks like:
-----------------------
# disable directory browsing
Options All -Indexes
AllowOverride All
Order allow,deny
Allow from all
# Protect htaccess
<files ~ "^.*\.([Hh][Tt][Aa])">
order allow,deny
deny from all
satisfy all
</files>
Options +FollowSymLinks
RewriteCond %{HTTP_HOST} !^www.jvnk.com$ [NC]
RewriteRule ^ http://jvnk.com/? [R=301]
# Mod_security can interfere with uploading of content such as attachments. If you
# cannot attach files, remove the "#" from the lines below.
#<IfModule mod_security.c>
# SecFilterEngine Off
# SecFilterScanPOST Off
#</IfModule>
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default
<IfModule mod_rewrite.c>
RewriteEngine On
# If you are having problems with the rewrite rules, remove the "#" from the
# line that begins "RewriteBase" below. You will also have to change the path
# of the rewrite to reflect the path to your XenForo installation.
#RewriteBase /xenforo
# This line may be needed to enable WebDAV editing with PHP as a CGI.
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
</IfModule>
----------------------
Thanks in advance for any assistance.
yes
I have just installed my XF 1.3.3 for the first time and the installation seems to have gone ok. I can see the homepage forum fine and I can access the admin panel ok. However, my issue is in reference to logging in on the homepage. When I try to do so, I see the login screen, but after I enter my information I receive 404 errors or blank pages on all the links I click on (members online, inbox, conversations, search...anything at all).
Can anyone help sort me out as I am a bit baffled as to what's going on.
FWIW, I have my htaccess file on. I have use friendly urls enabled. I have jquery being served from Google. Cloudflare is also on for the domain as well.
The board is using MySQL 5.5 and PHP 5.4.28 as well if that would trigger anything. The error that appears is 404 not found / nginx or a blank page, see examples below:
Here is an example on my site of the 404 Error: http://jvnk.com/members/
Here is an example of the blank page that shows: http://jvnk.com/find-new/posts
Here is also currently what my htaccess looks like:
-----------------------
# disable directory browsing
Options All -Indexes
AllowOverride All
Order allow,deny
Allow from all
# Protect htaccess
<files ~ "^.*\.([Hh][Tt][Aa])">
order allow,deny
deny from all
satisfy all
</files>
Options +FollowSymLinks
RewriteCond %{HTTP_HOST} !^www.jvnk.com$ [NC]
RewriteRule ^ http://jvnk.com/? [R=301]
# Mod_security can interfere with uploading of content such as attachments. If you
# cannot attach files, remove the "#" from the lines below.
#<IfModule mod_security.c>
# SecFilterEngine Off
# SecFilterScanPOST Off
#</IfModule>
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default
<IfModule mod_rewrite.c>
RewriteEngine On
# If you are having problems with the rewrite rules, remove the "#" from the
# line that begins "RewriteBase" below. You will also have to change the path
# of the rewrite to reflect the path to your XenForo installation.
#RewriteBase /xenforo
# This line may be needed to enable WebDAV editing with PHP as a CGI.
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
</IfModule>
----------------------
Thanks in advance for any assistance.
yes
Last edited: