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
4images Gallery 1.7 Details »»
4images Gallery 1.7
Version: 1.00, by Matrixgl Matrixgl is offline
Developer Last Online: May 2006 Show Printable Version Email this Page

Version: 3.0.0 Rating:
Released: 02-28-2004 Last Update: Never Installs: 32
 
No support by the author.

A lot of people, both here and at 4homepages.de have been requesting for a mod/hack that would integrate vBulletin 3 RCX with 4images 1.7 lately. The solutions are scattered around the forums, but nobody has it all in one page.

So I've decided put them all togather, and release it, so it will be easier for people to do the intigration successfully.

Please note that all the codes in this hack/mod are property of Jan and mtha.
http://www.4homepages.de/forum/viewtopic.php?t=1659
http://www.4homepages.de/forum/viewt...tart=165#32514

I have tested this on vBulletin 3.0.0 RC3 and it worked successfully.

Features:
  • Uses your existing vBulletin powered forum's login account for authentication.
  • Uses your existing vBulletin powered forum's whos online feature
  • Can be modified to display any information from your existing vBulletin database, perticularly from the "user" table, which means you can display any information about the logged in user.
  • Since it is integrated with the database, you can display any gallery information such as latest picture, how many pictures a member have submitted etc... on your vBulletin powered forum.
  • Extra modifications can be found here
Screenshot:
Attached

Demo:
http://www.randomforum.com/forums/gallery *NEW
(Please note the gallery sports a custom style, not the default)
http://www.vb-es.com/galeria/ (Non-English)

Show Your Support

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

Comments
  #112  
Old 04-19-2004, 02:56 PM
vonedaddy's Avatar
vonedaddy vonedaddy is offline
 
Join Date: Jan 2004
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have it integrated into my VB3 site and it works nice other than ONE problem. It seems that people are logged in then when they click something and the page reloads it logs them out. And them when you try to log in again it, after the redirect page you go to the forums. ANY help would be greatly appreciated. If you would like to look at the site go here www.hereyah.com

Thanks
Reply With Quote
  #113  
Old 04-19-2004, 03:10 PM
d1635d d1635d is offline
 
Join Date: Aug 2003
Posts: 2
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

TO~3.0.1

open:includes/functions.php

Find this code
========================

$name = COOKIE_PREFIX . $name;

========================

The replace is
=====================
if ($name != 'sessionhash')
{
$name = COOKIE_PREFIX . $name;
}
=====================

OK
Reply With Quote
  #114  
Old 04-20-2004, 08:56 AM
cihangir's Avatar
cihangir cihangir is offline
 
Join Date: Oct 2001
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@d1635d, thank you very much

a bugfix, that solves the problem with validating images uploaded by guests. found at: http://www.4homepages.de/forum/viewtopic.php?t=1659&postdays=0&postorder=asc&high light=validate&start=105

problem:
Quote:
A Guest uploads an image and the image gets uploaded on the server and I see the ?1 image awaiting for validation? on the Control Panel. I click on the link to go and validate the image and there are no results on the ?Validate Images? page. As if nothing was pending for validation.

Found: 1 Displayed: 1-1.
Images marked with ! denote image file that cannot be found on the server.

But on the list below that, nothing appears!!!
solution:

Open admin/validateimages.php and find this part

PHP Code:
$sql "SELECT i.image_id, i.cat_id, i.user_id, i.image_name, i.image_date, i.image_media_file".get_user_table_field(", u.""user_name").
        FROM "
.IMAGES_TEMP_TABLE." i, ".USERS_TABLE." u 
        WHERE 
$condition AND ".get_user_table_field("u.""user_id")." = i.user_id 
        ORDER BY 
$orderby $direction 
        LIMIT 
$limitstart$limitnumber"
Replace it with

PHP Code:
$sql "SELECT i.image_id, i.cat_id, i.user_id, i.image_name, i.image_date, i.image_media_file".get_user_table_field(", u.""user_name").
        FROM "
.IMAGES_TEMP_TABLE." i 
        LEFT JOIN "
.USERS_TABLE." u ON (".get_user_table_field("u.""user_id")." = i.user_id) 
        WHERE 
$condition 
        ORDER BY 
$orderby $direction 
        LIMIT 
$limitstart$limitnumber"
Reply With Quote
  #115  
Old 04-21-2004, 02:18 PM
LeonHartHVA LeonHartHVA is offline
 
Join Date: Jul 2003
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Step 3.
-------
Open includes/constants.php and edit the following parts:
I can't find constants.php in includes folder. Why? I'm using vbb 3.0.1
Reply With Quote
  #116  
Old 04-21-2004, 02:55 PM
cihangir's Avatar
cihangir cihangir is offline
 
Join Date: Oct 2001
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by LeonHartHVA
I can't find constants.php in includes folder. Why? I'm using vbb 3.0.1
you have to edit the constants.php of 4images.
Reply With Quote
  #117  
Old 04-21-2004, 08:19 PM
NS_007 NS_007 is offline
 
Join Date: May 2002
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by d1635d
TO~3.0.1

open:includes/functions.php

Find this code
========================

$name = COOKIE_PREFIX . $name;

========================

The replace is
=====================
if ($name != 'sessionhash')
{
$name = COOKIE_PREFIX . $name;
}
=====================

OK
This is in the forums functions.php?? If so, when I use this the forum and all other pages on my machine/server become blank pages.
Reply With Quote
  #118  
Old 04-22-2004, 09:28 AM
d1635d d1635d is offline
 
Join Date: Aug 2003
Posts: 2
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I use Vb 3.0.1 + 4images 1.7 to be normal

http://www.d1635d.com/BAD/
Reply With Quote
  #119  
Old 04-24-2004, 01:40 AM
13th_Disciple 13th_Disciple is offline
 
Join Date: Jan 2003
Posts: 262
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

is this integration complete? are the directions and information in the first post correct?

if not, does the person who created this thread still post and regularly talk to people and post issues on 4images? i haven't seen him post lately and am not sure if I want to install this if the information is not solid and complete.. if someone can answer, i would really appreciate it.. also, maybe do a comple instruction set, assuming the original post is not thorough..
Reply With Quote
  #120  
Old 04-24-2004, 04:10 AM
OGT OGT is offline
 
Join Date: Mar 2004
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have yet to see any gallery mod that works flawlessly yet 13th disciple. They all seem to have similar login issues, where they are not remembering users, or are totally going ape++++ when more than one person visits the gallery. both the coppermine installations and 4images seem to have the same issues with logging in and out and stuff.

if i understood how the cookies in both systems worked it would be a lot easier to track down, and I am sure soon I will end up plugging away at the research to get it to work.

it sucks because a good gallery integration is probably one of the last things that needs to be fleshed out for vb3.
Reply With Quote
  #121  
Old 04-24-2004, 12:19 PM
13th_Disciple 13th_Disciple is offline
 
Join Date: Jan 2003
Posts: 262
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thank you, ohgeetee.. i appreciate the response.. i guess i will just wait a bit longer then to see if anything comes of either this or the coppermine deal..
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 06:22 PM.


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.07374 seconds
  • Memory Usage 2,321KB
  • Queries Executed 25 (?)
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
  • (2)bbcode_php
  • (4)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
  • (1)pagenav_pagelinkrel
  • (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