gnappoman Posted December 19, 2011 Share Posted December 19, 2011 Hello, Downloading, unzipping and uploading back via ftp 47 Mb of installation program is a pain, let's introduce you the Auto Installer! Just upload and execute this php file : installer.php installer.php is nothing but pclzip.php library code plus below code added to the end: $filez = "http://www.prestashop.com/download/prestashop_1.4.6.2.zip"; $pathz = explode("/", $filez); $fileNamez = $pathz[sizeof($pathz) - 1]; copy($filez, $fileNamez); $arch = new PclZip($fileNamez); $arche = $arch->extract(); unlink($fileNamez); unlink(basename($_SERVER['REQUEST_URI'])); header("location:./prestashop"); as you can see the last prestashop zip file url is hardcoded, which may be changed dynamically by prestashop.com admins if they'll add this server to server installation method available from the download page (which i swear) bye! installer.php Link to comment Share on other sites More sharing options...
gnappoman Posted December 19, 2011 Author Share Posted December 19, 2011 it is also suitable for any other zip file... Link to comment Share on other sites More sharing options...
theme_designer Posted December 20, 2011 Share Posted December 20, 2011 Is this an official auto-installer? Link to comment Share on other sites More sharing options...
gnappoman Posted December 21, 2011 Author Share Posted December 21, 2011 (edited) yes it is! ;-) Edited March 9, 2012 by gnappoman Not official, was misrepresented by this user (see edit history) Link to comment Share on other sites More sharing options...
Mike Kranzler Posted January 6, 2012 Share Posted January 6, 2012 Is this an official auto-installer? yes it is! ;-) No, this is not an "official" anything, it was not developed by anyone on or associated with the PrestaShop team, and this is honestly the first we have heard of it. I'm not discouraging you from trying it out for yourself, but please understand that this is in no way developed or supported by PrestaShop, and we cannot guarantee that it will not create any problems within your shop. -Mike Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now