Hye all
How r u doing?
I wanted to know which Image uploader you use in your
website ??
which script I mean![]()
Hye all
How r u doing?
I wanted to know which Image uploader you use in your
website ??
which script I mean![]()
[B]iN LoVe WiTh WHB[/B]:o
I use the IP.Gallery a plugin into IP.Board but this script works very good as I have used it in the past.
http://gallery.menalto.com/
Plus it is free!
Tom,Thanks But I mean Image uploader script like imagehost or imageshack
[B]iN LoVe WiTh WHB[/B]:o
I think imageshack is the fastest, but also you have postimage.org.
Thanks Tiolalu but I still Mean
IF someone knows best script for image hosting just tell us the script name
[B]iN LoVe WiTh WHB[/B]:o
Why make someone else money? I use my own upload script, just put this in your webspace, change the upload directory and URL in the echo lines. Name it process.php, or change the upload form to use whatever you name it
<?php
// In PHP versions earlier than 4.1.0, $HTTP_POST_FILES should be used instead
// of $_FILES.
$uploaddir = '/path/to/your/image/directory/';
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
echo "file uploaded, it's available at http://yoursite.com/imagedir".$uploadfile."";
} else {
echo "file already uploaded, it's available at http://yoursite.com/imagedir".$uploadfile."";
}
?>
Then make a form to post to it like this:
<form enctype="multipart/form-data" action="process.php" method="POST">
<!-- MAX_FILE_SIZE must precede the file input field -->
<input type="hidden" name="MAX_FILE_SIZE" value="550000" />
<!-- Name of input element determines name in $_FILES array -->
<input name="userfile" type="file" />
<input type="submit" value="Send File" />
</form>
Jef ,
Its very Simple one![]()
[B]iN LoVe WiTh WHB[/B]:o
Yeah, it's not going to win any awards, but it works for what I use it forYou could try some of the scripts mentioned here:
http://www.hotscripts.com/PHP/Script...ing_direction=
Some are free, some are commercial.
Yes, I was there and I was trying most I found.
The first one, UploadImage it's the best for me, but doesn'twork for me the index page, only admin page![]()
. I cannot change anything because the page is encrypt.
The second one, easyimage, is the one I'm using, and it's very simple, with no addon features, just host the images you put.
Don't forget to check out the CPanel image manipulator... https://server:2083/frontend/x2/cpanelpro/images.html
It has a thumbnailer, image resizer, and format converter.
You can upload your files in the file manager...
then just
<img src="images/file.jpg">![]()
Last edited by jhsands; 05-01-2007 at 01:10 AM. Reason: code tag doesn't work