Posted by Ryan Trask on February 29th, 2008
Looks like last night (Feb 29, 2008), there was a large Google PageRank update as well as a major backlink update.
It appears that some of the larger websites have had a lot of their pages removed. A follow up will be posted shortly.
Posted by Ryan Trask on February 20th, 2008
If you follow internet tech news at all, back on January 8th users were reporting that Network Solutions was domain tasting.
Domain tasting works like this; Using Network Solutions (Net Sol) domain search tool to see if a domain name idea is available, they were immediately putting a 4 day lock on all domain names searched on their site.
Essentially, they were hijacking and stealing domain names and forcing you to register the name at Network Solutions.
This is downright disturbing and wrong.
More than likely they did this, because users were using their search tool, then leaving their website to register the name at a competing registrar like GoDaddy.com. It only makes sense to not register your domain name at Network Solutions, since godaddy.com offers domains at 3 times less the price than Network Solutions.
I don’t know why anyone in their right mind would use Network Solutions for registering a domain name because of their corporate politics, over inflated domain prices ($30/domain), and sub-par customer service department.
Customers all over the internet were in upheaval about this unethical business practice, that a few weeks later the incident was taken care of by ICANN Board of Directors passing a resolution ending domain tasting in response to the incident.
Nice to know that was short lived. Network Solutions has added another hit to their already poor company reputation.
Other Articles and Resources:
Read the article by Jay Westerdal at domaintools.com and another article from dotsauce.com including a response in the blog comments from Network Solutions regarding the incident.
Posted by Ryan Trask on February 7th, 2008
Installing Wordpress on IIS wasn’t the chore I thought it was going to be. It took me probably 2 minutes to setup the database, datasource, unzip wordpress, modify the config file, and I am up and running. However, there is a big problem with running Wordpress on a Windows Server.
The Problem:
By default, Wordpress has ugly queries URL’s and fixing the permalink structure does not get rid of that ugly index.php in the URL. Ex: http://www.rtrask.com/index.php/category/seo/
Since Wordpress was designed to run on Apache and use mod_rewrite for clean and pretty URL’s does that leave us Windows hosts and developer out in the cold? Not exactly.
The Solution:
Download and install ISAPI_Rewrite on your server, paste the following code in your httpd.ini file in your root directory of your blog website and your up and going.
[ISAPI_Rewrite]
# Rules to ensure that normal content gets through
RewriteRule /blog/software-files/(.*) /blog/software-files/$1 [L]
RewriteRule /blog/images/(.*) /blog/images/$1 [L]
RewriteRule /blog/favicon.ico /blog/favicon.ico [L]
# For file-based wordpress content (i.e. theme), admin, etc.
RewriteRule /blog/wp-(.*) /blog/wp-$1 [L]
# For normal wordpress content, via index.php
RewriteRule ^/blog/$ /blog/index.php [L]
RewriteRule /blog/(.*) /blog/index.php/$1 [L]
Next, add a php.ini file to your website root directory and paste this code in the php.ini file:
cgi.fix_pathinfo = 1
cgi.force_redirect = 0
The Fixed URL
Much prettier now: http://www.rtrask.com/category/seo/
Anything Else?
Nope. That should be it, and you should be up and running. Thanks to Basil Vandegriend for the solution.
Recent Comments