eberswine wrote:I think I understand.
Try this:
Find this in images.mdu (around line 629 or so)
- Code: Select all
<a target="_blank" title="<?=$echo['imageTitle']; ?>" href="<?=$config_path_image_upload.'/'.$file; ?>"><?=$file; ?></a>
Change it to this:
- Code: Select all
<a target="_blank" title="<?=$echo['imageTitle']; ?>" href="<?=$config_path_image_upload.'/'.$file; ?>"><?=$file; ?></a><br /><input name="textfield" size="15" id="textfield" style="border: 2px solid rgb(204, 204, 204);" value="<?=$config_path_image_upload.'/'.$file; ?>" onclick="select()" type="text">
and you will get this:

Now you can just select it and copy and paste it.

Hey, thanks for the help, but unfortunately, that wasn't what I was after. (but still a great idea nonetheless).
I'll try and explain better:
- Basically, you copy an image's URL (which isn't based on your server)
- Paste that into a box on YOUR server
- When you click upload, that same image is then copied to your server so it's under the URL of
www.mysite.com/images/etc...
So instead of uploading from your computer, you can upload from a URL.
Hopefully that explanation is simplier.
