I get this error when submiting to Stumble: We are unable to reach that website. Please try again later.
and this on Digg: Unable to access this content, please check the URL and try again.
my sites uses wordpress.. i read somewhere that wordpress uses 302 redirect instead of 301 and that could mess up digg and stumble tracking… but i dont know wtf that even means…
my site is *** .. can anyone do a diagnostic? whats the problem here? the digg and stumble buttons appear on each individual post.. facebook share and like seem to work fine..
i found this.. but i dont have that plugin installed anyway.. i tried deactivating every plugin that i have.. no luck
this may have something to do with it.. here’s what my .htaccess looks like right now..
ErrorDocument 404 /
ErrorDocument 403 /
# BEGIN WordPress
# END WordPress
if i remove the first line, none of my pages load (except for the home page)…. wtf
fixed it.. htaccess was the problem.. for others with the same problem.. i replaced my htaccess with:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
and it works fine