rulururu

post CubeCart Review

June 30th, 2008

Filed under: software — bigw @ 8:57 am

If you are looking for e-commerce software to meet these goals:

  • SEO friendly (keyword, and urls)
  • Easy to use (template driven)
  • Low cost (under $200)
  • Ownership (not leased or rented software)

Then I would recommend using CubeCart. I found this CubeCart review very helpful as well.

post Paid link? Don’t forget to remove after the contract

June 26th, 2008

Filed under: code — bigw @ 4:20 pm

Here is some quick php code to help with paid links. If you have a paid link on your site with a set expiration date, it can be hard to remember to remove the link after the date. Here is some quick code to put in place when you place the link, so you can set it and forget it! (as they say)

<?
//set your link expiration date here.
$expiry = strtotime(”8/12/2008″);
$today = strtotime(”now”);

if ($today > $expiry) {
$new_status = ‘<p>non-paid link info</p>’;
} else {
$new_status = ‘<p>paid link info</p>’;
}
echo $new_status;
?>

Simple, right.

post YebolBot

June 23rd, 2008

Filed under: bots — bigw @ 2:19 pm

Anyone know anything about this bot?

YebolBot (compatible; Mozilla/5.0; MSIE 7.0; Windows NT 6.0; rv:1.8.1.11; mailTo:thunder.chang@gmail.com)

ruldrurd
Powered by WordPress Entries (RSS) and Comments (RSS)