| christophe wrote: |
This wishlist is interesting, especially multiple upload without FTP + picture rotation. Is there anything planned about these issues? |
For the rotation part, I've done something today.
Here's the steps:
- add left_rotate.gif and right_rotate.gif in modules/coppermine/themes/default/images/
- change modules/coppermine/displayimage.php, in function html_picture_menu, near line 39 - you are just adding the 2 arrows on the page
| Quote:: |
return '<span style="float:right;">
<form method="post" action="'.getlink("&file=rotateOnePic",1,1).'">
<input type="hidden" name="id" value="'.$id.'" />
<input type="hidden" name="degrees" value="270" />
<input name="submit" title="'.RIGHT_ROTATE_PIC.'" type="image" src="' . $THEME_DIR . '/images/right_rotate.gif" /></form></span>' . "\n".'
<span style="float:right;"><form method="post" action="'.getlink("&file=rotateOnePic",1,1).'">
<input type="hidden" name="id" value="'.$id.'" />
<input type="hidden" name="degrees" value="90" />
<input name="submit" title="'.LEFT_ROTATE_PIC.'" type="image" src="' . $THEME_DIR . '/images/left_rotate.gif" /></form></span>' . "\n".' |
- copy rotateOnePic.php in modules/coppermine/
- edit also php.ini to increase the limit memory and reload apache ...
| Quote:: |
| memory_limit = 100M |
Hope it will help ... It works for me ...