Tuesday, December 12th, 2006
Just bloggin about this hoping that someone with superior network knowledge will pick up this on technorati or similar
I have a mediatemple grid server (for use on a work project) that is struggling sending email to a particular domain we own. It just seems to evaporate into virtual oblivion.
Not dropping in spam filter or getting a reject message in any logs. Of course the excellent guys at (MT) are on with it. But I needed to vent my frustration.
Technorati Tags: email problems, email, mediatemple, networking
Posted in Technical | No Comments »
Monday, December 11th, 2006
Looking towards next years web training, wondering what are the best options.
I will try and attend @media for the first time and will be attending d.construct assuming these go ahead. What about actual training erhmm??
Technorati Tags: @media, dconstruct2006, dconstruct06, web training
Posted in Technical | 3 Comments »
Sunday, December 10th, 2006
Problem no 1:I needed to add a button so when you get to my other pages on this site the link back to the blog was obvious.
OK so I looked at Support and found a wordpress forum topic http://wordpress.org/support/topic/58817 seemed ok if a little complicated
Then I looked under the hood (as they say).
A .htaccess file lurks
Simple solution/hack add a redirect in a search engine friendly manner of course.
# BEGIN WordPress
Redirect /blog/ http://www.porkandpaws.com
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
Posted in Technical | No Comments »