TD Creative

Intuitive and effective web development.

Web Developer Blog

  • Filed under: Web Developer Blog
Friday
Nov 21,2008

Welcome to TD Creative. This website is a web developer blog designed to cover intuitive and effective Web development.

The web dev navigation items on the right hand side give an overview of the areas of web development. This website covers web development for webmasters, web marketers and entrepreneurs.

Tuesday
Mar 11,2008

the likes array
Creative Commons License photo credit: Heather R.

Bit of a while since an update due to a few things, but take a look at the open source releases over at DooBDee.net.

If you are interested in phpBB, wordpress and most things computers / coding / internet entrepreneuring then open source releases is for you.

An excerpt from the site;

Welcome to DooBDee.net. This website is designed to cover open source releases, internet resources, downloads and support.

The navigation of internet items on the left hand side aims to cover specific areas of the Internet. This website is heavily focused on internet resources for webmasters, web and computer users.

Check out open source releases, its worth it. Technorati Profile

Saturday
Feb 23,2008

With modern web advances, the opinions written in the ‘free phpbb forum hosting‘ post some time ago are somewhat changing.  With the relatively recent release of phpBB3 - “Olympus” - free phpbb forum hosting has started to become really quite impressive.

An example of this is: phpbb-forum-host.com - free phpbb forum host.

Read the rest of this entry »

Thursday
Feb 7,2008

Creating a powerful, interactive, usefull website can be difficult. However, the open source combination that has been proven to be a success is that of phpBB + Wordpress. What are they? Well… a short description is below…oh - both software packages are free too…and for those “techies” out there, they run using a mySQL database and PHP scripting.

Read the rest of this entry »

phpLD Thumbnails Problem Fix

Wednesday
Jan 9,2008

Relatively recently, you would have noticed that on a lot of phpLD based website directories that thumbnails are not working. The fix for this such problem is relatively simple and depending on your template you will need to edit:

  • link.tpl
  • main.tpl
  • details.tpl

You then simply replace the msn girafa or alexa screenshots code with:

http://www.artviper.net/screenshots/screener.php?&url=

Therefore, the complete image tag would look like:

<img alt=”site preview” class=”thumb” src=”http://www.artviper.net/screenshots/screener.php?&url={$link.URL|escape|trim}” />

There are plenty more alternative services out there. This one however, does have good reviews and more information about implementing this service for the phpLD thumbnails problem can be found here.

Tuesday
Dec 18,2007

Todays post is sponsored by: Web Inspiration.

To create a theme (since version 2.2) is to make the theme widget enabled, so this is how you do one.

In order to make a theme widgetized, we have to do this. Open sidebar.php and add this:

<?php /* Widgetized sidebar. */
if ( !function_exists(’dynamic_sidebar’) || !dynamic_sidebar() ) : ?>

// Sidebar content here.

<?php endif; ?>

Thats all there is to it!