gr4devel Posted June 13, 2013 Share Posted June 13, 2013 (edited) Hi community I'm wondering where is the legacy image filesystem gone in PS 1.5.4.1. I'm displaying the BO in italian language. Thanks in advance to everyone will try to help me. Edited June 18, 2013 by gr4devel (see edit history) Link to comment Share on other sites More sharing options...
gr4devel Posted June 18, 2013 Author Share Posted June 18, 2013 Solved guys. The option is simply hidden in the BO. Look at the lines 55 and 56 in AdminImagesController.php . // No need to display the old image system if the install has been made later than 2013-03-26 $this->display_move = (defined('_PS_CREATION_DATE_') && strtotime(_PS_CREATION_DATE_) > strtotime('2013-03-26')) ? false : true; A possible way to reenable it is: $this->display_move = (defined('_PS_CREATION_DATE_') && strtotime(_PS_CREATION_DATE_) > strtotime('2013-03-26')) ? true : true; However let me warn you that all the changes apported directly to the core files of PS are automatically overridden in case of update. If needed I'm here 1 Link to comment Share on other sites More sharing options...
stonepilot Posted February 10, 2014 Share Posted February 10, 2014 Where is AdminImagesController.php located at? Link to comment Share on other sites More sharing options...
stonepilot Posted February 10, 2014 Share Posted February 10, 2014 I found it,but this has all been changed for 1.5.5+ Link to comment Share on other sites More sharing options...
disarci Posted August 7, 2014 Share Posted August 7, 2014 On 1.6 you can use the Old File System (or better convert all the images): controller/admin/AdminImageController.php line: 65: $this->display_move = false; will be $this->display_move = true; 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