125 Ad spot 125 Ad spot

Carthworks is a web design studio based in India. We specialise in creating attractive, usable and search engine friendly websites and web applications.

We are passionate about design, coding and project management. We believe that websites should be more than eye-catching: they should be easy to use, highly visible in search engines and achieve their business objectives reliably. In addition to web design and web application development, we can also help market your business through a suite of online marketing services like Search Engine Optimisation (SEO), Electronic Direct Mail india since 2005 as a privately-held company. Over the years we have completed more than 50 projects successfully and have happy clients all over the world. Find out what’s new in our blog or get in touch now.

17 November 2009 1 Comment

Chicago Wedding Photographer – 10 Tips on How to Evaluate Your Options

Chicago Wedding Photographer – 10 Tips on How to Evaluate Your Options
Author: Groshan Fabiola
When searching for the perfect wedding photographer for your special day, especially if you are getting married in a big city like Chicago, the many choices you have can be overwhelming. How do you find the right one?
The most important thing you [...]

12 November 2009 1 Comment

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

12 November 2009 0 Comments

Finding your Joomla Template Positions

In Joomla there is a hidden core function which once activated displays a layer on a Joomla website which shows you exactly the template positions currently used.

To activate this function you just need to add ?tp=1 to the end of your current Joomla address. As an example take a look at the following link:http://www.dart-creations.com?tp=1 As you [...]

10 November 2009 0 Comments

Thumbnail creation from FLV using ffmpeg

seek to the middle of the file an output a JPEG
 
http://ffmpeg-php.sourceforge.net/
 
<?php function GetFLVDuration($file){  // get contents of a file into a string  if(file_exists($file)){   $handle = fopen($file, "r");   $contents = fread($handle, filesize($file));    fclose($handle);     if(strlen($contents) > 3){    if(substr($contents,0 , 3) == "FLV"){     $taglen = hexdec(bin2hex(substr($contents, strlen($contents)-3)));     if(strlen($contents) > $taglen){       $duration = hexdec(bin2hex(substr($contents, strlen($contents) – $taglen, 3)));      return $duration;     }    }   }  }  return 0; }  // get duration and divide by 2 [...]

10 November 2009 0 Comments

XAMPP Apache port change

1. Find httpd.conf file in the folder path C:\xampp\apache\conf\ 
2. Open httpd.conf file in your text editor.
3.Find this line: Listen 80
change it to:Listen 8009
4.Save and restart Apache.
http://locahost:8009 would now be your XAMPP default pages.