In google webmaster tools I am getting Url's not followed because of empty redirect, they all look similar this http://www.dolphinsite.com/click.php?19 If anyone knows how to fix this problem or what is causing it I would be very grateful for any advice.
later,
DosDawg
do you have that in the head of the html of the page, have you got a robots.txt file?
User-agent: *
Disallow: /
this in the robots.txt file would also stop pages being indexed, in this case the whole root from all robots
User-agent: *
Disallow: /admin
would only disallow the admin folder
User-agent: *
Disallow: /greet.php
would disallow the greet.php from being indexed
if ( !( $logged['admin'] = member_auth( 1, false ) ) )
if ( !( $logged['member'] = member_auth( 0, true ) ) )
if ( !( $logged['aff'] = member_auth( 2, false )) )
$logged['moderator'] = member_auth( 3, false );
Which prevents a nonmember from using the page, but since it already has:
$logged['member'] see more