Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
iblastoff wrote:
thats odd. imagecreatefromjpeg() is just part of gd. is the gd extension enabled on your vps server? are you able to upload images (and have thumbnail generated) through the regular image tab? i’m assuming this will also fail since all the plugin does is load the image tab within an iframe.
Regular thumbnails fail too… Thanks for the pointer Steve, I’ll starting hunting around for the gd extension on the server.
Cheers
Offline
#77 2008-02-13 10:56:08
- redbot
- Plugin Author
- Registered: 2006-02-14
- Posts: 1,410
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
Aarrgh! Thank you Steve, I was trying to download the plugin for at least a week with no success!
Last edited by redbot (2008-02-13 10:56:30)
Offline
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
iblastoff wrote:
very odd…i just re-uploaded the file again. let me know if it works
http://www.stevelam.ca/index.php?s=file_download&id=18
File Downloaded! Installed and working great!
Thanks a ton!
Offline
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
Great plugin, thanks for it. I’ve made small changes ;)

But I have one question – I tried in jquery to hide lam_image_uploader div on default but every attempt ended with very small (in height) iframe. Can anybody help?
Job: Plugo – tvorba eshopu
Projects: Czech free fonts
Offline
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
beztak wrote:
Great plugin, thanks for it. I’ve made small changes ;)

But I have one question – I tried in jquery to hide lam_image_uploader div on default but every attempt ended with very small (in height) iframe. Can anybody help?
thats a problem i had as well. another reason why the whole iframe idea is just a pain in the ass!
Offline
#81 2008-02-27 22:11:38
- bartekk
- Member
- Registered: 2004-11-09
- Posts: 57
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
Hi. This is a very nice plugin.
I have problems with the permissions. I don’t want freelancer to see the form. If I change the add_privs to 1,2,3,4 I see the admin area again and not the upload form.
How can I fix this? Any suggestions?
Offline
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
hi steve, i guess you are aware of the fact the download links on your site are no longer working? just wanted to let you know, maybe you’ve missed that…
i’d love to use the image uploader but can’t find a working download link at the moment… anyone could help me out?
Offline
#83 2008-03-28 14:22:09
- curiouz
- Member

- Registered: 2006-06-20
- Posts: 56
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
Thanks a lot for this, but unfortunately the download link is dead. Can somebody please provide an alternative link?
edit:
Found one:
lam_images_uploader 0.6c
Last edited by curiouz (2008-03-28 14:24:52)
Offline
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
Hi Steve,
I am not sure what could be the reason, but when I upload one image after the other, it doesn’t append the image ID in the Article Image field, instead it replaces the old ID with the new one! I am using TXP v.4.0.6
Please advise. Thanks!!
Offline
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
FYI, am using hak_article_image to display multiple images.
Cheers,
Husain
Offline
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
husainhk wrote:
I am not sure what could be the reason, but when I upload one image after the other, it doesn’t append the image ID in the Article Image field, instead it replaces the old ID with the new one! I am using TXP v.4.0.6
Edit the plugin code at line 185 to read:
echo "insertid($img_result[1], 'append');</script>";
It’s a hack, but it works for now :)
Offline
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
That worked really well! Thanks so much for this :)
Cheers,
Husain
Offline
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
this is a great plugin how about one almost the same to allow file uploads in the write tab….anything like this exist I have been looking but not found anything…any ideas?
Offline
#89 2008-06-09 21:07:27
- uli
- Moderator

- From: Cologne
- Registered: 2006-08-15
- Posts: 4,319
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
Steve
I installed this of late and find it a great relief for daily work, takes a lot of clicking off me. Thanks! Especially useful when combined with bas_img_selector.
Jirka
would you mind posting your changes?
In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links
Offline
Re: lam_image_uploader v0.6c (improved upload images from the write tab)
To have this great plugin styling appropriately with aro_myadmin, I needed a little mods, as I mentioned here. Just changed the css that is loaded in the iframe to myadmin.css.
Original:
<link rel="stylesheet" href="textpattern.css" type="text/css" media="screen" title="no title" charset="utf-8">
mod:
<link rel="stylesheet" href="myadmin.css" type="text/css" media="screen" title="no title" charset="utf-8">
There’s also another mod I made to have the aro_myadmin replacement of toggleDisplay function work:
Original:
echo '<h3 class="plain" style="text-align:left"><a href="javascript:void(0);" id="lam_show_hide" onload>'.gTxt('upload_image').'</a></h3><div id="lam_image_uploader">';
Mod:
echo '<h3 class="plain"><a href="#lam_image_uploader" onclick="toggleDisplay(\'lam_image_uploader\'); return false;" id="lam_show_hide" onload>'.gTxt('upload_image').'</a></h3><div id="lam_image_uploader">';
Hope this may help someone. Bye
Z-
Last edited by Zanza (2008-06-30 12:50:09)
Offline