ballot Posted October 30, 2010 Share Posted October 30, 2010 at big images i get error ? http://i51.tinypic.com/14cy6wj.jpg Link to comment Share on other sites More sharing options...
rocky Posted October 31, 2010 Share Posted October 31, 2010 Most likely, you've exceeded your memory limit. You can edit config/config.inc.php and temporarily change 'display_errors' from 'off' to 'on' to get an error message instead of a blank tab to confirm this. You must edit your php.ini file and increase your memory_limit, or reduce the size the big image yourself using an image editor like Paint.NET before uploading. Link to comment Share on other sites More sharing options...
ballot Posted October 31, 2010 Author Share Posted October 31, 2010 in php.iniupload_max_filesize = 24Mfile_uploads = On;;;;;;;;;;;;;;;;;;;; Resource Limits ;;;;;;;;;;;;;;;;;;;;max_execution_time = 900 ; Maximum execution time of each script, in secondsmax_input_time = 600 ; Maximum amount of time each script may spend parsing request datamemory_limit = 64M ; Maximum amount of memory a script may consume (8MB)in config.inc.php<?php/* Debug only */ini_set('display_errors', 'on');define('_PS_DEBUG_SQL_', false);....in admin/adminproducts.phpclass AdminProducts extends AdminTab{ protected $maxImageSize = 9000000; protected $maxFileSize = 10000000;...so still i get blank page error :S Link to comment Share on other sites More sharing options...
rocky Posted October 31, 2010 Share Posted October 31, 2010 Try 128M instead of 64M. If that doesn't work, you will have to reduce the size of the image before uploading. Link to comment Share on other sites More sharing options...
ballot Posted October 31, 2010 Author Share Posted October 31, 2010 when i did it 256M it worked but execution time was too long :s Link to comment Share on other sites More sharing options...
Recommended Posts