Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
celsovelarde  
#1 Posted : Tuesday, July 5, 2011 11:30:40 AM(UTC)
celsovelarde

Rank: Newbie

Groups: Member
Joined: 7/5/2011(UTC)
Posts: 2

Hi!, im trying to install the plugin in my wamp server but i cant do it. I tried the two ways (uploading the plugin and putting it in a temp folder uncompressed).
Abyway, i have another question:
will the joomla plugin do the same function as the image uploader?. I mean:
- will the images be resized before being uploaded?
- will be applied a watermark to the images?
Thank you.
Dmitry.Obukhov  
#2 Posted : Tuesday, July 5, 2011 11:28:30 PM(UTC)
Dmitry.Obukhov

Rank: Advanced Member

Groups: Member
Joined: 5/29/2010(UTC)
Posts: 1,310

Thanks: 8 times
Was thanked: 111 time(s) in 111 post(s)
Hello Celso,

Thank you for contacting us.

Could you please describe your problem with installing Photo Order plug-in in details?

As for your questions. Unfortunately, Photo Order sends source files only. Thus, it is not possible to set watermarks using standard settings. However, it can be changed very easy. After we resolve the problem with installing, I will provide you with information on how to set uploading resized images (thumbnails).
Best regards,
Dmitry Obukhov
Technical Support. Aurigma, Inc.
celsovelarde  
#3 Posted : Tuesday, July 5, 2011 11:50:03 PM(UTC)
celsovelarde

Rank: Newbie

Groups: Member
Joined: 7/5/2011(UTC)
Posts: 2

I finally managed to install the plugin in joomla!. But after trying it i havent found the option to resize before uploading, or putting watermark in the pictures ... can this be done or I must use the image uploader product?. Im working on a web that haves a license for the image uploader product, im migrating it from asp to php (Joomla).
Dmitry.Obukhov  
#4 Posted : Wednesday, July 6, 2011 2:08:50 AM(UTC)
Dmitry.Obukhov

Rank: Advanced Member

Groups: Member
Joined: 5/29/2010(UTC)
Posts: 1,310

Thanks: 8 times
Was thanked: 111 time(s) in 111 post(s)
It is very simply to implement this option.You should change mageuploader.tpl.php file, which is located: administrator\components\com_aurigmaphotoorder\templates\.To send thumbnails you should disable source file replacing this line:
Code:
iu.addParam("UploadSourceFile", "<?php print $options['upload_source']; ?>");

with the new one:
Code:
iu.addParam("UploadSourceFile", false);

Then you should configure thumbnails. Just add these strings to your script:
Code:
iu.addParam("UploadThumbnail2FitMode", "Fit");
iu.addParam("UploadThumbnail2Width", "1024");
iu.addParam("UploadThumbnail2Height", "768");
iu.addParam("UploadThumbnail2Watermark", " ImageUrl or Text");


Also, you need to change server script a bit. Please open aurigmaphotoorder.php file (administrator\components\com_aurigmaphotoorder\classes\) and replace:
Code:
$file = JRequest::getVar("SourceFile_$i", '', 'files', 'array' );

with:
Code:
$file = JRequest::getVar("Thumbnail2_$i", '', 'files', 'array' );

Please note that Thumbnail1 has been already used by design reason. You can use Thumbnail2, and Thumbnail3 only.

If you have any additional questions, please feel free to let me know.

Edited by user Wednesday, July 6, 2011 2:09:29 AM(UTC)  | Reason: Not specified

Best regards,
Dmitry Obukhov
Technical Support. Aurigma, Inc.
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.