Why aren’t links clickable on my 404 error page? [closed]

It’s because you have incorrect css being used on some divs within that page. On that page a couple of divs down from the H1 deceleration you have a div with some inline css: <div style=”width: 100%;height: 0;padding-bottom: 56%;position: relative;”> You need to remove the padding-bottom:56%; so it is: <div style=”width: 100%;height: 0;position: relative;”> Then … Read more

WordPress Installation in Subfolder only works half

OK after doing some more research I found out that I had to change the configs for the NGINX files as well. I simply had to add the following parameters before the last closing bracket location /nameofnewsite { try_files $uri $uri/ /nameofnewsite/index.php?$args; } location ~ \.php$ { fastcgi_split_path_info ^(/nameofnewsite)(/.*)$; }

Google 404 Errors

This was caused by a small bug in my first implementation of the rel=”next” and rel=”prev” features that Google launched 2 weeks ago in my WordPress SEO plugin. That bug has been fixed, you’re up to date and the 404’s should go away soon enough, nothing to worry about!

Is the 404 page the same as “well this is embarrasing” page?

This all depends on your theme. Most themes includes a 404.php template to display a “well this is embarrassing” page or an index of previous posts. For example: My consulting site shows an index: http://jumping-duck.com/does-not-exist One of my client sites shows a basic “404 not found” error: http://votebode.com/does-not-exist They’re both running the latest version of … Read more

Sub Domain’s Pages return 404

You can always delete the .htaccess for each root directory, then visit each domain.com/wp-login.php then visit: Dashboard -> Settings -> Permalinks & save changes. (Automatically generates a fresh .htaccess) OR login to phpmyadmin for each domain, check out the database… options table… verify the “siteurl”, and “home” columns. make sure they match the respective domains. … Read more