Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Image Hosting Details »»
Image Hosting
Version: 1.20b, by loneranger loneranger is offline
Developer Last Online: Oct 2009 Show Printable Version Email this Page

Version: 3.0.7 Rating:
Released: 01-27-2005 Last Update: 03-01-2005 Installs: 37
DB Changes
 
No support by the author.

Image Hosting v1.20b

What Does it Do?
This script will allow your users to upload images onto your server and use them in forums and other sites. You can limit how many images a person can upload and how big the files can be. There is also a watermark feature which will allow you to watermark upload images with any text you want.

Features
- Admin cp settings
- Limit Filetypes
- Limit File size
- Limit What usergroups can upload
- Add Watermark to JPEG's (Removed )
- View uploaded images
- View Forum image code(NEW!!!)
- Different limits for different usergroups(NEW!!!!)
- Improved Layout and design
- Installer
- More....

Installer
I have used the Hack Installer System to make it easier for the end use to upload to their site

Live Demos
1.Sig-Mania
2. Pm me with your site

Support
I will fully support thios project and will fix and bugs or gliches in the script. I also offer a installation process for anyone who needs it.

Donations
This project takes alot of my time and so will the updates to come i would appricate any donation thought paypal email:martinj.porter@btinternet.com, Thanks

Future Features
- Moderate uploads
- Different Limits for users and usergroups(Compeleted)
- User Gallery for uploaded images
- Stats(in progress)

Bugs Fixed
1. Templates should be to the default vbstyle
2. Can't get image size fixed (hopefully)
3. blank screen when uploading an image

please visit www.sig-mania.co.uk
Supported on vbulletin version 3.0.7
Hope you enjoy
thanks
Loneranger

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #62  
Old 03-02-2005, 02:43 PM
loneranger loneranger is offline
 
Join Date: Dec 2004
Posts: 149
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok i will update this version and get all problems sorted! thanks everyone for you help any suggestions on improvements
Reply With Quote
  #63  
Old 03-02-2005, 02:50 PM
MiskaTorn MiskaTorn is offline
 
Join Date: Aug 2004
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by loneranger
ok i will update this version and get all problems sorted! thanks everyone for you help any suggestions on improvements
I know I am a pain to you, but I am just trying to help out.

When I view images, it doesn't show the images.

It is pointing to my

/bbb/hosted_images/ directory when it should be pointing to just hosted_images/


[*IMG*]http://www.doyouwantmybum.com/bbb/bbb/hosted_images/1.gif[*/IMG*]
Reply With Quote
  #64  
Old 03-02-2005, 02:56 PM
MiskaTorn MiskaTorn is offline
 
Join Date: Aug 2004
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

In the admincp

The web address of upload images
Set this to the directory where images are stored eg. /forum/hosted_images/ (remember the / at the end)

Should be changed to

The web address of upload images
Set this to the directory where images are stored eg. /hosted_images/ (remember the / at the end)

Also where the image is called to show in the image viewr it should have the full path to the image as it's not showing up now.


One more thing, you link at the bottom is not correct to goto your website.
http://www.yahoo.com/www.sig....ect
Reply With Quote
  #65  
Old 03-02-2005, 02:58 PM
loneranger loneranger is offline
 
Join Date: Dec 2004
Posts: 149
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i have now updated the download so you can download and update your systems enjoy and let me know of any suggestions on updates
Reply With Quote
  #66  
Old 03-02-2005, 03:01 PM
loneranger loneranger is offline
 
Join Date: Dec 2004
Posts: 149
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

yes just noticed that is a problem with the phrase that is also sorted in the new files
Reply With Quote
  #67  
Old 03-02-2005, 03:57 PM
MiskaTorn MiskaTorn is offline
 
Join Date: Aug 2004
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Now this script works 100% for me, here is a list of changes I made.

Ok, I have made some more changes to make this work correctly.

This will make the install pull the template file correctly
In install\hacks\image_hosting\12\index.php line 93 and 109
Code:
require_once('./template_mods.php');
to
Code:
require_once('./templates.php');
This will display the image correctly when the viewer views the image they uploaded.
In install\hacks\image_hosting\12\templates.php line 139
Code:
  <td class="alt1" colspan="2" valign="middle" align="center"><img src="$images[i_image]" width="" height="" alt="$images[i_name]" /></td>
to
Code:
<td class="alt1" colspan="2" valign="middle" align="center"><img src="$images[i_image]" alt="$images[i_name]" /></td>
This will display the correct example for the path to enter.
In install\hacks\image_hosting\12\settings.php line 17
Code:
$setting['host_upload_dir']['descphrase'] = 'The full local path to the upload directory eg. home/user/www/forum/hosted_images/ DO NOT FORGET THE TRAILING SLASH';
to
Code:
$setting['host_upload_dir']['descphrase'] = 'The full local path to the upload directory eg. /home/user/www/forum/hosted_images/ DO NOT FORGET THE TRAILING SLASH';
Also on line 26 change
Code:
$setting['host_url']['descphrase'] = 'Set this to the directory where images are stored eg. /forum/hosted_images/ (remember the / at the end)';
to
Code:
$setting['host_url']['descphrase'] = 'Set this to the directory where images are stored eg. /hosted_images/ (remember the / at the end)';
This will entire the entire URL to the image into the database.
In image_host.php change line 136
Code:
$imgurl = $vboptions['host_url'] . $_FILES['img']['name'];
to
Code:
$imgurl = $vboptions['bburl'] . $vboptions['host_url'] . $_FILES['img']['name'];
Reply With Quote
  #68  
Old 03-02-2005, 10:04 PM
pxtek pxtek is offline
 
Join Date: Dec 2004
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

when i upload images are not showing in the gallery?
Reply With Quote
  #69  
Old 03-03-2005, 12:21 PM
MiskaTorn MiskaTorn is offline
 
Join Date: Aug 2004
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by pxtek
when i upload images are not showing in the gallery?
Follow my directione above, it will change the paths when the images get uploaded that go in the database and display them correctly.
Reply With Quote
  #70  
Old 03-04-2005, 12:01 AM
Xtrato's Avatar
Xtrato Xtrato is offline
 
Join Date: Feb 2005
Location: New Jersey
Posts: 510
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hm.. i've tried most of what has been said, yet i seem to be getting the same error when clicking done after the templates...

PHP Code:
Warningmain(./upgrade_queries.php): failed to open streamNo such file or directory in /index.php on line 49

Fatal error
main(): Failed opening required './upgrade_queries.php' (include_path='.:/usr/lib/php:/usr/local/lib/php'in /home/strato/public_html/main/forums/install/hacks/image_hosting/12/index.php on line 49 
Reply With Quote
  #71  
Old 03-04-2005, 04:49 AM
loneranger loneranger is offline
 
Join Date: Dec 2004
Posts: 149
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

try uninstalling imagehosting then do a full install unless you have got alot of images hosted then i will have to send you the upgrade queries php file
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:14 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06006 seconds
  • Memory Usage 2,321KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (10)bbcode_code
  • (1)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete