MyBB Community Forums

Full Version: Google
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Google is constantly Viewing No Permissions Page...

Why?
Its giving Viewing No Permissions Page, because it may be trying to reply to a thread or trying to do some similar operations.

You can use robots.txt to restrict bots on indexing to unwanted content. Take look at the following rules and you can choose from below rules in that.

User-Agent: *
Disallow: /captcha.php
Disallow: /editpost.php
Disallow: /misc.php
Disallow: /modcp.php
Disallow: /moderation.php
Disallow: /newreply.php
Disallow: /newthread.php
Disallow: /online.php
Disallow: /printthread.php
Disallow: /private.php
Disallow: /ratethread.php
Disallow: /report.php
Disallow: /reputation.php
Disallow: /search.php
Disallow: /sendthread.php
Disallow: /task.php
Disallow: /usercp.php
Disallow: /calendar.php
Disallow: /*action=emailuser*
Disallow: /*action=nextnewest*
Disallow: /*action=nextoldest*
Disallow: /*year=*
Disallow: /*action=weekview*
Disallow: /*action=nextnewest*
Disallow: /*action=nextoldest*
Disallow: /*sort=*
Disallow: /*order=*
Disallow: /*mode=*
Disallow: /*datecut=*
Disallow: /member.php?action=login
Disallow: /member.php?action=register
Disallow: /tylsearch.php
So shall i make a text called robots.txt?

Then add all of them, or which ones i want and save it where?
(2013-08-01, 03:06 PM)jamie1990 Wrote: [ -> ]So shall i make a text called robots.txt?

Then add all of them, or which ones i want and save it where?

Just create a file robots.txt (Name should be robots.txt only) and copy the above code and upload it to your forum root directory. Thats it.

Also use Google webmaster tools to understand better.
(2013-08-01, 03:09 PM)ksr Wrote: [ -> ]
(2013-08-01, 03:06 PM)jamie1990 Wrote: [ -> ]So shall i make a text called robots.txt?

Then add all of them, or which ones i want and save it where?

Just create a file robots.txt (Name should be robots.txt only) and copy the above code and upload it to your forum root directory. Thats it.

Also use Google webmaster tools to understand better.

I spotted two problems with your robots.txt file

First is that you have Google SEO URLs, maybe the OP doesn't have the Google SEO plugin and second you have disallowed Google to index 3 forums on your website which possibly the OP wants Google to index.

I would recommend the following (Taken from ksr):

User-Agent: *
Disallow: /captcha.php
Disallow: /editpost.php
Disallow: /misc.php
Disallow: /modcp.php
Disallow: /moderation.php
Disallow: /newreply.php
Disallow: /newthread.php
Disallow: /online.php
Disallow: /printthread.php
Disallow: /private.php
Disallow: /ratethread.php
Disallow: /report.php
Disallow: /reputation.php
Disallow: /search.php
Disallow: /sendthread.php
Disallow: /task.php
Disallow: /usercp.php
Disallow: /calendar.php
Disallow: /*action=emailuser*
Disallow: /*action=nextnewest*
Disallow: /*action=nextoldest*
Disallow: /*year=*
Disallow: /*action=weekview*
Disallow: /*action=nextnewest*
Disallow: /*action=nextoldest*
Disallow: /*sort=*
Disallow: /*order=*
Disallow: /*mode=*
Disallow: /*datecut=*
Disallow: /member.php?action=login
Disallow: /member.php?action=register
(2013-08-01, 03:57 PM)Arbaz Wrote: [ -> ]
(2013-08-01, 03:09 PM)ksr Wrote: [ -> ]
(2013-08-01, 03:06 PM)jamie1990 Wrote: [ -> ]So shall i make a text called robots.txt?

Then add all of them, or which ones i want and save it where?

Just create a file robots.txt (Name should be robots.txt only) and copy the above code and upload it to your forum root directory. Thats it.

Also use Google webmaster tools to understand better.

I spotted two problems with your robots.txt file

First is that you have Google SEO URLs, maybe the OP doesn't have the Google SEO plugin and second you have disallowed Google to index 3 forums on your website which possibly the OP wants Google to index.

I would recommend the following (Taken from ksr):

User-Agent: *
Disallow: /captcha.php
Disallow: /editpost.php
Disallow: /misc.php
Disallow: /modcp.php
Disallow: /moderation.php
Disallow: /newreply.php
Disallow: /newthread.php
Disallow: /online.php
Disallow: /printthread.php
Disallow: /private.php
Disallow: /ratethread.php
Disallow: /report.php
Disallow: /reputation.php
Disallow: /search.php
Disallow: /sendthread.php
Disallow: /task.php
Disallow: /usercp.php
Disallow: /calendar.php
Disallow: /*action=emailuser*
Disallow: /*action=nextnewest*
Disallow: /*action=nextoldest*
Disallow: /*year=*
Disallow: /*action=weekview*
Disallow: /*action=nextnewest*
Disallow: /*action=nextoldest*
Disallow: /*sort=*
Disallow: /*order=*
Disallow: /*mode=*
Disallow: /*datecut=*
Disallow: /member.php?action=login
Disallow: /member.php?action=register

Oops, I didn't noticed them. Updated first post!!!