I'm not sure if anyone has posted anything similar but i recently discovered this great time saving process for uploading template QuickStarts.
Uploading any template via FTP takes ages (especially on my crappy connection here in Dubai!) so i I started doing a bit of digging and have come up with a great way to upload a QuickStart installation.
First of all I upload the Quickstart file still zipped, which is way quicker than thousands of files with FTP and then a file called unzip.php (see code below).
- Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?php system('unzip QS3.zip'); ?>
</body>
</html>
I then rename the QuickStart to QS3.zip (only cos it was the third attempt to get it working) and then simply browse to http://mynewsite.com/unzip.php and the template unzips in a matter of moments.
I believe that this unzip command does need to be supported on ur hosting but hey it works great for me.
The only other thing that u may have to do is CHMOD the two files to 644 if they aren't already. Don't forget to delete unzip.php cos if u accidentally hit it from ur browswer cache it will make u sad if u have done a load of work on ur site already!!
Hope it helps out.
Kev