Pages
Categories
Tag Cloud
Web Development Archive
-
Registering an Expiring Domain
How to Catch a Dropped Expiring Domain Is a previously unavailable domain name that you’ve been eyeing coming up on its expiration date? You might just be lucky enough to snag it soon! A domain name that I’ve been wanting for a few years was registered by someone else and had been parked for all [...] -
Register an Expired .CA Domain
How to Register an Expiring .CA Domain? If you want to register a TBR ( To Be Released ) .CA domain, you’ll need to backorder it through a CIRA registrar. These domains are not going to be available on TBR day through the regular channels of registering a .CA domain. They’ll remain unavailable with a [...] -
How to 301 Redirect Entire Domain
Did you get a new domain and now want to point all the URLs from the old domain to the new one? If you’re using Apache Web Server, you can do this with a .htaccess file. 301 redirects are Google SEO friendly as well and should preserve link juice over time. Put the following in [...] -
Register Expired Domain from Godaddy
As most people know, Godaddy is one of if not THE biggest domain registrar on the planet currently and chances are that if a domain is registered, there’s a good chance that it was with either Godaddy, or Network Solutions. What do you do if a domain that you had your eye on wasn’t available [...] -
Select Posts from a Category in WordPress Database
Replace News with your own category name and you’re good to go. SELECT p.* FROM wp_posts AS p INNER JOIN wp_term_relationships AS tr ON tr.object_id=p.ID INNER JOIN wp_term_taxonomy AS tt ON tt.term_taxonomy_id=tr.term_taxonomy_id INNER JOIN wp_terms AS t ON t.term_id=tt.term_id WHERE p.post_status="publish" AND t.name="News" ORDER BY p.post_date DESC -
Simplest Photo Gallery WordPress Theme
This is the home of the Simplest Photo Gallery WordPress Theme. This theme changes WordPress so that it only displays the featured images on the main page and displays just the featured image with title and description below when clicked. Download the Simplest Photo Gallery Theme for WordPress See it in action at BanffPhotos.com -
How to Set Static IP in Fedora Linux
Edit /etc/sysconfig/network-scripts/ifcfg-eth0 BOOTPROTO=static IPADDR=192.168.0.X NETMASK=255.255.255.0 -
WordPress Exclude Page from Nav
Want to exclude a specific page you have on WordPress from the Nav? Try the code below, most themes I’ve seen use wp_list_pages to populate the navigation. Replace 123 with the id of the page, and if there are multiple pages then separate with commas. wp_list_pages(array('title_li' => "", "exclude" => "123")); -
Relocate Magento Install
How do I relocate a Magento Install It’s really not that bad once you know what to edit. make a backup of your magento database make a backup of your magento files install files and database at new location go into core_config_data table and search for “base”, there’s two base URLs you’ll need to point [...] -
Magento Showing Old Images on Categories
Are your pictures showing old images on categories, but your product pages are showing the current one? Is the System -> Configuration -> Catalog -> Catalog -> Frontend -> Use Flat Catalog Product and Use Flat Catalog Category turned on? If so, try rerunning the index on Product Flat Data and Category Flat Data. That [...]




