can't access

Hi,

I type my login on my website's login sidebar, I know it is correct, but didn't do anything, I try to put again. The response is "Log in/Sign up", it wouldn't let me to log in. Why?

my ACP and cPanel access is working fine, just homepage log in.

I check the box on ACP option- Basic Board re-direction--- "Use Full Friendly URLs
If you enable this option, the links generated by the system will not include "index.php?". However, to enable this, mod_rewrite must be available and an appropriate .htaccess file must be in place.

uncheck the friendly URL, it is now working. strange!
 
Do you have mod_rewrite enabled on your server? Did you upload the provided .htaccess file? Are you using Apache or nginx?

I'm guessing you either don't have mod_rewrite enabled or a .htaccess file uploaded, since it works using index.php?url
 
I re-direct my website only without index.php, it is problem. They dont recognised my login access. what should I do. Which one better with or without index.php. I test Googles PageSpeed Insights to check speed of my website that suggest to change index.php for home website only.

No, I didnt upload the .htaccess and also use Apache. I did clear up the cookies.
 
I re-direct my website only without index.php, it is problem. They dont recognised my login access. what should I do. Which one better with or without index.php. I test Googles PageSpeed Insights to check speed of my website that suggest to change index.php for home website only.

No, I didnt upload the .htaccess and also use Apache. I did clear up the cookies.
You need to upload the .htaccess before you can use full-friendly URLs. XenForo comes provided with one that will work. Basically for /index.php?url and /url to be the same in the eyes of the server, it has to know how to route /url to /index.php?url in the background. Upload the .htacess file and you'll be able to login with that option turned on.

XenForo comes provided with one. Those are for vB4 -> XF routing, which won't help in his case.
 
Ahh I see, this is something new but rapid learning. I didnt see what change in my .htaccess that show for admin permission and bots block, what should I add there? mod_rewrite enabled? Should we have to follow each priority of Google InsightSpeed?
 
if this is the url of the portal to access the administration panel, it can edit the file to indicate the correct url ?
Nothing XenForo's codebase attempts to do will allow full friendly URLs to work without a proper .htaccess. The administration panel is still accessible with full friendly URLs enabled because they aren't rewritten to remove admin.php? from the URL, that will always remain.

cPanel is also completely different software and can't 'help' except possibly creating a .htaccess file, which is unnecessary because XF comes with one provided. To solve ThunderBird2's issue, they can upload the .htaccess, verify they have mod_write enabled, and reactivate full friendly URLs.
 
Ahh I see, this is something new but rapid learning. I didnt see what change in my .htaccess that show for admin permission and bots block, what should I add there? mod_rewrite enabled? Should we have to follow each priority of Google InsightSpeed?
If you upload the default .htaccess it'll reroute and Google will be none the wiser that all your pages are on index.php?. I'm not sure what you mean by admin permission and bots block tho.
 
I remove index.php in .htaccess file below, yes mod_rewrite is enabled.

RewriteRule ^.*$ index.php [NC,L]

replaced by

RewriteRule ^.*$ [NC,L]

??

If not, please show example of default .htaccess.
 
you must leave the default htaccess XenForo.​
add links in your domain for options rewrite url's via your ACP:​
/admin.php?options/list/basicBoard​
and​
/admin.php?options/list/seo​
:rolleyes: you need SEO working (ACP/options:rolleyes: )​
 
Top Bottom