Thread: TSSE 1.3.9
View Single Post
  #84  
Old 6th March 2014, 10:29
wdq's Avatar
wdq wdq is offline
Senior Member
 
Join Date: Mar 2010
P2P
Posts: 45
Default Hey
Quote:
Originally Posted by naotem View Post
Please help me.
I use xam 1.3.9, but bitbucket is not working with "gif".

Does anyone have idea how to solve?
The error appears.
Image processing failed:
Sorry, the uploaded gif processing failed. Try resaving the image in a graphic editor. Thanx.
I tried several gif files and always shows this error.

Sorry for the bad english
in root folder you have bitbucket-upload.php open it and the first lines will tell you that is accepting gif pictures you just need to upload them in a specific size
PHP Code:
$maxfilesize 256 1024;
$imgtypes = array (null,'gif','jpg','png');
$scaleh 150// set our height size desired
$scalew 150// set our width size desired 
how you can see the height of the picture needs to be 150px
and the width is set the same the max file size is 256px x 1024px
modify those lines to fit your needs or just upload a picture that is 150 x 150 .
hope thius helps.
Reply With Quote
The Following User Says Thank You to wdq For This Useful Post:
naotem (7th March 2014)