Log in

View Full Version : Gallery for vBulletin 3.5.X


Pages : 1 [2] 3 4 5 6

Harald_T
10-29-2005, 02:16 PM
Just create those two phrases, that's all.

Permissions: If you want to show guests an thumbnail which tells them, that they should register first, you have to change the code. I've already posted this, i think it was about page 8, or so.

ScottC20
10-29-2005, 07:34 PM
I will do that then. Do you know if I can make it so when a new picture is uploaded it isn't displayed in the New Posts area, my members are getting terribly confused by the short threads??

ScottC20
10-31-2005, 05:00 PM
Think I have that sorted ^^ but how can I increase the amount of thumbnails displayed on the forum index to say six or seven?

lexx27
10-31-2005, 09:03 PM
I haven't done yet. As i said, it shouldn't be much work. It's mostly template-work (normaly you only have to copy most of the code into the template-code of those boxes of vBadvanced). I will install vBadvanced on Wednesday and fix the problem.

I know you havent install it yet but can you give me some hypothetical solution to start. Like which templates to use, if i willl need a php file. Thank you

ThePimp
11-01-2005, 02:38 PM
Is there a way to set a default thumbnail? For example, most users aren't the brightest bulb in the bunch, and I frequently get people posting incorrectly, or posting topics in the gallery forums... and what happens is that a broken "Red X" image is displayed in those posts on the gallery as well as on the ForumHome page. I'm wondering if there's a way to detect improperly posted / no image topics and replace the thumbnail with a default graphic?

dreck
11-01-2005, 02:52 PM
Is there a way to set a default thumbnail? For example, most users aren't the brightest bulb in the bunch, and I frequently get people posting incorrectly, or posting topics in the gallery forums... and what happens is that a broken "Red X" image is displayed in those posts on the gallery as well as on the ForumHome page. I'm wondering if there's a way to detect improperly posted / no image topics and replace the thumbnail with a default graphic?Thats a great ideas. I can see my members do the same thing. :)

Harald_T
11-01-2005, 03:16 PM
Sorry for late reply.

O.k., if you want to to have a thumb displayed, if no picture is attached, then you have to change the code in threadbit_gallery:

Find


<td width="170" height="170" align="center">
<if condition="$displaythumbs">
<a HREF="attachment.php?attachmentid=$thread[attachmentid]">
<img src="attachment.php?attachmentid=$thread[attachmentid]&stc=1&thumb=1" border=0 align="center">
</a><br>
<else />
<img src="$stylevar[imgdir_misc]/nothumb.gif" width=75 height=56 border="0">
</if>
<br />
</td>


and replace it with:


<td width="170" height="170" align="center">
<if condition="$displaythumbs">
<if condition="$thread[attachmentid]">
<a HREF="attachment.php?attachmentid=$thread[attachmentid]">
<img src="attachment.php?attachmentid=$thread[attachmentid]&stc=1&thumb=1" border=0 align="center">
</a><br>
<else />
<img src="$stylevar[imgdir_misc]/nothumb.gif" width=75 height=56 border="0">
</if>
</if>
<br />
</td>


And don't forget to upload an :gif-File called "nothumbs.gif". That should do it.

ScottC20
11-01-2005, 04:04 PM
how can I increase the amount of thumbnails displayed on the forum index to say six or seven?

????

Harald_T
11-01-2005, 04:09 PM
You just have to change the plugin: latest_gallery_images_forumhome.

Inside the query you find


ORDER BY ". TABLE_PREFIX . "attachment.dateline DESC LIMIT 5");


Just change the letter 5 to your prefered amount. That's all.

dreck
11-01-2005, 05:14 PM
What if I wanted to put a bit more space between the 5 forum home thumbnails?

Harald_T
11-01-2005, 05:36 PM
Then use this code for template "latestgallery"


<td class="thead" align="center">
<table align="center">
<tr>
<td align="center">
<a HREF="attachment.php?attachmentid=$gallery[attachmentid]">
<img src="attachment.php?attachmentid=$gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td align="center">
<br />
<a href="showthread.php?t=$gallery[threadid]">
$gallery[title]
</a>
</td>
<td>
&nbsp;&nbsp;
</td>
</tr>
</table>
</td>

dreck
11-01-2005, 05:52 PM
hmm, maybe I did something wrong? But it didn't seem to change anything.

And the nothumb.gif works like an charm. ;)

Harald_T
11-01-2005, 08:51 PM
I only added some space between the thumbs, if you want more, add some more &nbsp;. I'll post a better solution tomorrow.

Harald_T
11-03-2005, 05:58 PM
Try this, i think this one is better:


<td class="thead" align="center">
<table align="center">
<tr>
<td align="center">
<a HREF="attachment.php?attachmentid=$gallery[attachmentid]">
<img src="attachment.php?attachmentid=$gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td align="center">
<br />
<a href="showthread.php?t=$gallery[threadid]">
$gallery[title]
</a>
</td>
</tr>
</table>
</td>
<td width="20" height="100%">
&nbsp;
</td>

mwhoob
11-03-2005, 07:33 PM
hi

i install this plugin

but the order in the forumdisplay
show like this picture

row is unfinity

what the problem??
solve me plz :ermm:

dreck
11-04-2005, 12:39 PM
Try this, i think this one is better:


<td class="thead" align="center">
<table align="center">
<tr>
<td align="center">
<a HREF="attachment.php?attachmentid=$gallery[attachmentid]">
<img src="attachment.php?attachmentid=$gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td align="center">
<br />
<a href="showthread.php?t=$gallery[threadid]">
$gallery[title]
</a>
</td>
</tr>
</table>
</td>
<td width="20" height="100%">
&nbsp;
</td>
Thanks, much better.

dreck

Harald_T
11-04-2005, 09:30 PM
hi

i install this plugin

but the order in the forumdisplay
show like this picture

row is unfinity

what the problem??
solve me plz :ermm:

Did you set the number of rows in the gallery-options?

tuanluu
11-05-2005, 07:40 AM
take a look at Attachment to see what I mean plz

Gizmo5h1t3
11-05-2005, 07:44 AM
still no luck on the missing filesize????

tuanluu
11-05-2005, 08:15 AM
Never mind I know what wrong. stupid me forgot to edit forumhome file. It work perfect for now

mwhoob
11-05-2005, 05:57 PM
Did you set the number of rows in the gallery-options?
how to edit gallery-options?

Harald_T
11-05-2005, 07:56 PM
You find them beneath your forums-options.

Brandon Sheley
11-06-2005, 06:40 AM
this looks great i clicked install

do u see what i missed or why the images are broken in thread view ? but if u look at post view you can see the image fine ?

http://locoforum.com/forums/f42-posters.html thread

http://locoforum.com/forums/showthread.php?t=410 post

thx
-loco m

Brandon Sheley
11-07-2005, 03:52 AM
anything on my problem ? I'll check back in a day or 2 then.
i really hope to get this working,, I've moved the gallery to the forums/ header,, I want to use it as a banner, I'm looking foward to fixing the error

mwhoob
11-07-2005, 06:46 AM
You find them beneath your forums-options.

thankx
its ok now :squareeyed:

Harald_T
11-07-2005, 07:38 PM
this looks great i clicked install

do u see what i missed or why the images are broken in thread view ? but if u look at post view you can see the image fine ?

http://locoforum.com/forums/f42-posters.html thread

http://locoforum.com/forums/showthread.php?t=410 post

thx
-loco m

Seems to me, that your vBulletin doesn't create any thumbs. This i would guess at the first look.

Brandon Sheley
11-08-2005, 02:31 AM
ah, how/where would i check for this ?
thx for replying

Brandon Sheley
11-08-2005, 12:00 PM
Generate PNG Thumbnails
On some installations, the creation of PNG thumbnails (with GD) will fail due to incompatible libraries.

This only applies if GD is your chosen image library.

is it here ? cuz this is a yes.. and everything i see says it should work..

lexx27
11-08-2005, 02:50 PM
I know you havent install it yet but can you give me some hypothetical solution to start. Like which templates to use, if i willl need a php file. Thank you

Please someone. I need a hint! Something to start with because i am not a coder

Harald_T
11-08-2005, 03:58 PM
Be patient. I've downloaded vBA CMPS and will check it out in the next days.

SpaceStar
11-08-2005, 04:56 PM
Generate PNG Thumbnails
On some installations, the creation of PNG thumbnails (with GD) will fail due to incompatible libraries.

This only applies if GD is your chosen image library.


is it here ? cuz this is a yes.. and everything i see says it should work..

It seems you are having the same problem as I have had. Did you checked:

admincp=>vBulletin Options=>Message Attachment Options and look for "ENABLE THUMBNAILS" - it must be set to "YES".

lexx27
11-08-2005, 08:21 PM
Be patient. I've downloaded vBA CMPS and will check it out in the next days.ok man! thanks!!! :rolleyes:

Brandon Sheley
11-09-2005, 04:27 AM
It seems you are having the same problem as I have had. Did you checked:

admincp=>vBulletin Options=>Message Attachment Options and look for "ENABLE THUMBNAILS" - it must be set to "YES".


ah,, now ill have to dl and reinstal and try this again.. thx i did have this set to no :P

yeah, this worked.. thank you

now my next question is, how can i make the iamges show randomly ?
I've searched the thread and seen u said it wouldn't be to hard, but it seems ppl are asking about using with vBa cms.
I'm just using the on the forums page, but would still be interesting in making the images show randomly..
thx for the work,, it looks great IMO

Okie
11-10-2005, 06:19 AM
is there any chanse we can use the cover or the image from the free hosting image and there will be Resize for the image . i hope this feature going to be add :)

dadymac
11-10-2005, 05:00 PM
I have made a usergroup that cannot view the photo gallery. but on the forumhome, they can see the latest additions. is there a way to have it check the usergroups permission for the forum housing the pics, and if they dont have permission to view that, to somehow have the latest additions not show up?

alternatively, is there an if condition we can write around the latest addition code in the forumhome template that lets us input a usergroupid that isnt valid?

Harald_T
11-10-2005, 05:25 PM
Random Images: I've posted the answer already. Look around page 8-10, i think it was.

Brandon Sheley
11-10-2005, 06:22 PM
okay, thank you

if you mean here

https://vborg.vbsupport.ru/showpost.php?p=758053&postcount=139

when i swap this code i get this error ?

Parse error: parse error, unexpected $ in /home/loco/public_html/forums/index.php(458) : eval()'d code on line 169

seems like a tempalate error ?

lexx27
11-11-2005, 10:37 PM
This code didnt work with my forum either. It actually caused a problem to all my forumhome hacks. I disabled the latest_images plugin temporalily and i am waiting for news...

Brandon Sheley
11-11-2005, 11:39 PM
are you talking about just the random image part ? or the whole thing lexx27

Marc118
11-12-2005, 01:23 AM
this didnt work on my forum period, i just get a blank forum after setting up the gallery in admin cp...any clue?

Here is a pic of what im getting, i have it set to 'act as forum' when i turn that off i get absolutely nothing on the page. When i click upload it taked me to a normal post editor.

http://img206.imageshack.us/img206/3485/gallery1ew.jpg

wrang
11-12-2005, 01:39 PM
I get this error when i should install the first queries
in the ACP

An error occurred while attempting to execute your query. The following information was returned.
error number: 1146
error desc: Table 'db00000XXXX.forum' doesn't exist

I have the rights to do it in the ACP
In the database the forum called vb3_

lexx27
11-12-2005, 01:55 PM
are you talking about just the random image part ? or the whole thing lexx27Just for the random part my friend

Harald_T
11-12-2005, 02:08 PM
this didnt work on my forum period, i just get a blank forum after setting up the gallery in admin cp...any clue?

Here is a pic of what im getting, i have it set to 'act as forum' when i turn that off i get absolutely nothing on the page. When i click upload it taked me to a normal post editor.

http://img206.imageshack.us/img206/3485/gallery1ew.jpg


This is normal. You always will be forwarded to the normal "New-Post"-Screen. Did you try uploading a picture?

Rhoads
11-12-2005, 04:02 PM
Installed and working great, thnx Harald_T

I have made plugin for the 3 Uncached templates, use it as a plugin, not a product ;)
It's cached the templates on index and forumdisplay pages

Marc118
11-12-2005, 04:08 PM
This is normal. You always will be forwarded to the normal "New-Post"-Screen. Did you try uploading a picture?

yes, i said it takes me to a normal message editor when i hit upload.

Brandon Sheley
11-12-2005, 08:52 PM
Just for the random part my friend


good to know I'm not alone on this part, Harald_T can u check this out ? I have a million images I want to upload, but my members aren't all that smartest about this sort of stuff, if you know what I mean..
the only ones that will get seen are the 7 that are visible on the forum home
http://locoforum.com/forums/index.php?

jarod1981?
11-13-2005, 06:37 PM
Hi all

Where do i upload the file:

threadbit_gallery
forumdisplay_gallery
latestgallery

in the /forum/images or no?

Thanks

Harald_T
11-13-2005, 07:08 PM
Those "files" are templates. You have to create a new template, name it e.g. "threadbit_gallery" and copy the code of it into the template. That's all.

Marc118
11-14-2005, 01:21 AM
so you dont have an idea on why my gallery isnt working?

Harald_T
11-14-2005, 07:24 AM
so you dont have an idea on why my gallery isnt working?

And did you post a short message and did you attached a picture? The gallery is using the normal attachment-system of vBulletin.

So, normaly, if you attach a picture and create the new thread you should see the little thumb of the picture in your gallery-overwiew.

Look here at my gallery:

http://www.scifi-fan.net

Harald_T
11-14-2005, 10:35 AM
O.k., i've removed the filesize-bug. But atm there is still one thing left: The filesize is shown in bytes, not in KB. So i have to fix that.

robihot
11-14-2005, 02:30 PM
Hello Harald

can you post the 'threadbit_gallery' (with the fixed file-size). Would be helpfull. Thanks!

PS: Still a great Plug-in !!! One of my favorites!

Harald_T
11-14-2005, 03:30 PM
As soon as i fixed it, i'll post an update here.

evandaeman
11-14-2005, 03:34 PM
i am running 3.5.0 and installed this script and getting error when i go to the last part

when i create a new forum

Database error in vBulletin 3.5.0:

Invalid SQL:
INSERT INTO forum
(title_clean, title, description_clean, description, link, displayorder, daysprune, parentid, newpostemail, newthreademail, options, styleid, password, gallery, gallery_rows)
VALUES
('B-A Forums Gallery', 'B-A Forums Gallery', 'gallery', 'gallery', '', 0, -1, -1, '', '', 97987, 0, '', '1', '4');

MySQL Error : Unknown column 'gallery_rows' in 'field list'
Error Number : 1054
Date : Monday, November 14th 2005 @ 10:30:51 AM
Script : http://www.ba-forums.com/admincp/forum.php
Referrer : http://www.ba-forums.com/admincp/forum.php?do=add
IP Address : 69.37.9.88
Username : Admin
Classname : vb_database


i think i have done everything that was instructed... now i can't even edit my forums in the forum manager.... i keep getting errors... i have uploaded the file forumdisplay.php, ran the query, updated/added all the templates to my current style (or does it have to be in the defaul template)???... i accidentally deleted the default template...

i'm messing this whole thing up and getting fraustrated... can you help?

please :ermm:

evandaeman
11-14-2005, 05:21 PM
i got it to work.. lol never mind..

i clicked INSTALLED :)

can't see thumbnails... but hey atleast it installed lol

Harald_T
11-14-2005, 08:17 PM
Checked your homepage. The gallery looks alright to me. Glad you've got it working.

DrewM
11-14-2005, 11:13 PM
Harald_T,
I just installed this and i had a image and a zip, when I posted it showed 2 posts though only one thread? Pleaes help image belwoe

Harald_T
11-15-2005, 01:23 AM
The problem is: You've posted more than one attachment in the first post.
Second: You attached also not only a picture, but also those zip-files.

For a solution i would suggest that you attach the zip-files in a second post of the tread.

As this is intend to work as a gallery i suggest only to upload pictures. But be sure to only upload one picture in the gallery (i'm working on this atm).

Harald_T
11-15-2005, 01:23 AM
Oh, btw. i fixed the filesize-bug completly.

Brandon Sheley
11-15-2005, 04:06 AM
any idea why the random gallery didn't work for me or lexx Harald ?
any other code we can try ?
We ( my members ) really love this gallery, but I'd Really like to get random pics shown :)

thank you
-Loco

Harald_T
11-15-2005, 01:37 PM
I'm actually checking it out.

Harald_T
11-15-2005, 01:41 PM
I've got it.

I missed a


}


at the end. That was all. Sorry for the causing trouble.

Updates:

I will clean up the whole code and after this i'll updating the whole hack. So be patient. I think it will be tonight.

Brandon Sheley
11-15-2005, 03:48 PM
sounds good :)
thank you time ;) we appreciate what you've done so far, at least i do :) saves me 60$ on the vba gallery :p

Harald_T
11-15-2005, 04:40 PM
Next version will have the random-pictures integrated. And you can set it by option if it will be shown or not. Same for latest-pictures.

Brandon Sheley
11-15-2005, 04:45 PM
cool :) ill check back on this thread after i get home from work tonight then ;) thx again

Harald_T
11-15-2005, 08:31 PM
So, fixed some minor bugs, and renamed some variables.

Also did i make an extra Gallery-Section in the vBulletin-Options, where you can set some little options for the gallery. Now random-pictures from the gallery are a fix part of the gallery.

And i removed the number of rows from the forums-options. This isn't needed anymore. It will be defined now from the Gallery-Options.

Next i will test it with vB 3.5.1 and after this i will update the hack completly.

Here are two little screenshots from what's coming:

Brandon Sheley
11-16-2005, 02:58 AM
cool :)

I added the } and the random code works now.
looking foward to the update,

what will be involved in updating if we have this installed already ?

Harald_T
11-16-2005, 08:32 AM
Best solution will be to deinstall the product and import the new version. Otherwise it could be, that there will be some trouble.

But i will post it in the new installation-manual.

The next thing that i'm working on at the moment will be a new page for showing the picture and posting a picture. This means, it will no longer use the standard-postbit-template.

DrewM
11-16-2005, 11:17 AM
Harald_T,

I thought i'd share this with you on your gallary hack currently there is no forum tools and search forums also there is not a display options form to add all this edit the the gallary forum display templeat delete ever thing and insert this code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<meta name="description" content="$foruminfo[description]" />
<title>$vboptions[bbtitle] - $foruminfo[title]</title>
$headinclude </head> <body> $header $navbar <br>
<!-- Display options -->
<form action="forumdisplay.php" method="get">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="f" value="$forumid" />
<input type="hidden" name="page" value="$pagenumber" />
<input type="hidden" name="pp" value="$perpage" />

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">$vbphrase[display_options]</td>
<if condition="$show['activeusers']"> </if> <if condition="$show['moderators']">
</if> </tr>
<tr>
<td class="thead"><phrase 1="$limitlower" 2="$limitupper" 3="$totalthreads">$vbphrase[showing_threads_x_to_y_of_z]</phrase></td>
<if condition="$show['activeusers']"> </if> <if condition="$show['moderators']">
</if> </tr>
<tr valign="top">
<td class="alt1"> <table cellpadding="0" cellspacing="1" border="0" width="auto">
<tr>
<td class="smallfont" style="padding-right:6px">$vbphrase[sorted_by]</td>
<td><select name="sort">
<option value="title" $sort[title]>$vbphrase[thread_title]</option>
<option value="lastpost" $sort[lastpost]>$vbphrase[last_post_time]</option>
<option value="replycount" $sort[replycount]>$vbphrase[number_of_replies]</option>
<option value="views" $sort[views]>$vbphrase[number_of_views]</option>
<option value="postusername" $sort[postusername]>$vbphrase[thread_starter]</option>
<if condition="$show['threadratings']">
<option value="voteavg" $sort[voteavg]>$vbphrase[thread_rating]</option>
</if> <if condition="$show['threadprefix']">
<option value="threadprefix" $sort[threadprefix]>$vbphrase[threadprefix]</option>
</if> </select></td>
<td class="smallfont" style="padding-right:6px; padding-left:12px">$vbphrase[sort_order]</td>
<td><select name="order">
<option value="asc" $order[asc]>$vbphrase[ascending]</option>
<option value="desc" $order[desc]>$vbphrase[descending]</option>
</select></td>
</tr>
<tr>
<td class="smallfont" style="padding-right:6px">$vbphrase[from_the]</td>
<td><select name="daysprune">
<option value="1" $daysprunesel[1]>$vbphrase[last_day]</option>
<option value="2" $daysprunesel[2]>$vbphrase[last_2_days]</option>
<option value="7" $daysprunesel[7]>$vbphrase[last_week]</option>
<option value="10" $daysprunesel[10]>$vbphrase[last_10_days]</option>
<option value="14" $daysprunesel[14]>$vbphrase[last_2_weeks]</option>
<option value="30" $daysprunesel[30]>$vbphrase[last_month]</option>
<option value="45" $daysprunesel[45]>$vbphrase[last_45_days]</option>
<option value="60" $daysprunesel[60]>$vbphrase[last_2_months]</option>
<option value="75" $daysprunesel[75]>$vbphrase[last_75_days]</option>
<option value="100" $daysprunesel[100]>$vbphrase[last_100_days]</option>
<option value="365" $daysprunesel[365]>$vbphrase[last_year]</option>
<option value="-1" $daysprunesel[all]>$vbphrase[beginning]</option>
</select></td>
<td colspan="2" class="smallfont">&nbsp;</td>
</tr>
<tr>
<td class="smallfont">&nbsp;</td>
<td>&nbsp;</td>
<td colspan="2" align="$stylevar[right]"><input type="submit" class="button" value="$vbphrase[show_threads]" /></td>
</tr>
</table></td>
<if condition="$show['activeusers']"> </if> <if condition="$show['moderators']">
</if> </tr>
</table>

</form>
<br>
<!-- / Display options -->
<br>
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-bottom:3px">
<tr valign="top">
<td class="smallfont"><if condition="$show['newthreadlink']"><a href="newthread.php?$session[sessionurl]do=newthread&amp;f=$foruminfo[forumid]"><img src="$stylevar[imgdir_button]/upload.gif" alt="$vbphrase[post_new_thread]" border="0" /></a><else />&nbsp;</if></td>
<if condition="$pagenav"><td align="$stylevar[right]">$pagenav</td></if>
</tr>
</table>
<if condition="$show['threadslist']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tr>
<td class="tcat" width="100%">$vbphrase[threads_in_forum]<span class="normal">
: $foruminfo[title]</span></td>
<td class="vbmenu_control" id="forumtools" nowrap="nowrap"><a href="$show[nojs_link]#goto_forumtools" rel="nofollow">$vbphrase[forum_tools]</a>
<script type="text/javascript"> vbmenu_register("forumtools"); </script></td>
<if condition="$show['forumsearch']">
<td class="vbmenu_control" id="forumsearch" nowrap="nowrap"><a href="$show[nojs_link]#goto_forumsearch" rel="nofollow">$vbphrase[search_this_forum]</a>
<script type="text/javascript"> vbmenu_register("forumsearch"); </script></td>
</if> </tr>
</table>
<!-- threads list -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">&nbsp;</td></td>
</tr>
<if condition="$show['threads']">
<tr>
<td colspan="6"> <table class="tborder" align="center">
<tr> $threadbit_gallery <if condition="$col">
<td colspan=$col class="alt1">&nbsp;</td>
</if> </tr>
</table></td>
</tr>
<!-- end show threads -->
<else />
<!-- show no threads message -->
<tr>
<td class="alt1" colspan="$foruminfo[bottomcolspan]" align="center"> <div style="padding: 16px">
<if condition="$show['noposts']"><strong>$vbphrase[no_posts_in_this_forum]</strong><else /><strong><phrase 1="$daysprune">$vbphrase[no_posts_last_x_days_forum]</phrase></strong><br />
<span class="smallfont">$vbphrase[try_controls_below_for_older_posts]</span></if>
</div></td>
</tr>
<!-- end show no threads message -->
</if>
</table>
<!-- controls below thread list -->
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-top:3px">
<tr valign="top">
<td class="smallfont"><if condition="$show['newthreadlink']"><a href="newthread.php?$session[sessionurl]do=newthread&amp;f=$foruminfo[forumid]"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /></a><else />&nbsp;</if></td>
<if condition="$pagenav">
<td align="$stylevar[right]">$pagenav</td>
</if> </tr>
</table>
<!-- End Active Users in this Forum (and sub-forums) and Moderators -->
<if condition="$show['popups']"> <br />
<!-- popup menu contents -->
<!-- forum tools menu -->
<div class="vbmenu_popup" id="forumtools_menu" style="display:none">
<form action="moderator.php" method="post" name="forumadminform">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$vbphrase[forum_tools]<a name="goto_forumtools"></a></td>
</tr>
<if condition="$show['newthreadlink']">
<tr>
<td class="vbmenu_option"><a href="newthread.php?$session[sessionurl]do=newthread&amp;f=$foruminfo[forumid]" rel="nofollow">$vbphrase[post_a_new_thread]</a></td>
</tr>
</if>
<tr>
<td class="vbmenu_option"><a href="forumdisplay.php?$session[sessionurl]do=markread&amp;f=$foruminfo[forumid]" rel="nofollow">$vbphrase[mark_this_forum_read]</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="subscription.php?$session[sessionurl]do=addsubscription&amp;f=$foruminfo[forumid]" rel="nofollow">$vbphrase[subscribe_to_this_forum]</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="forumdisplay.php?$session[sessionurl]f=$foruminfo[parentid]" rel="nofollow">$vbphrase[view_parent_forum]</a></td>
</tr>
<if condition="$show['adminoptions']">
<tr>
<td class="thead">$vbphrase[admin_tools]<a name="goto_forumadmin"></a></td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite"> <div>
<label for="fa_mpo">
<input type="radio" name="do" id="fa_mpo" value="modposts" checked="checked" />
$vbphrase[view_posts_queue]</label>
</div>
<div>
<label for="fa_mat">
<input type="radio" name="do" id="fa_mat" value="modattach" />
$vbphrase[view_attachment_queue]</label>
</div>
<div>
<label for="fa_mov">
<input type="radio" name="do" id="fa_mov" value="move" />
$vbphrase[massmove_threads]</label>
</div>
<div>
<label for="fa_prn">
<input type="radio" name="do" id="fa_prn" value="prune" />
$vbphrase[massprune_threads]</label>
</div>
<if condition="$show['addmoderator']">
<div>
<label for="fa_amd">
<input type="radio" name="do" id="fa_amd" value="addmoderator" />
$vbphrase[add_moderator]</label>
</div>
</if> <if condition="$foruminfo['allowprefix']">
<div>
<label for="fa_cat">
<input type="radio" name="do" id="fa_cat" value="manageprefix" />
$vbphrase[manage_threadprefix]</label>
</div>
</if> </td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite" align="center"> <input type="hidden" name="s2" value="$session[sessionhash]" />
<input type="hidden" name="f2" value="$forumid" /> <input name="submit" type="submit" class="button" value="$vbphrase[perform_action]" />
</td>
</tr>
</if>
</table>
</form>
</div>
<!-- / forum tools menu -->
<!-- inline mod menu -->
<if condition="$show['inlinemod']">
<div class="vbmenu_popup" id="imod_menu" style="display:none" align="$stylevar[left]">
$threadadmin_imod_menu_thread </div>
</if>
<!-- / inline mod menu -->
<!-- / popup menu contents -->
<else />
<!-- controls for non-popup browsers -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center" style="border-top-width:0px">
<tr>
<td class="thead">$vbphrase[forum_tools]<a name="goto_forumtools"></a></td>
<td class="thead">$vbphrase[search_this_forum]<a name="goto_forumsearch"></a></td>
</tr>
<tr valign="top">
<!-- forum tools -->
<td class="alt1"> <div class="smallfont">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/subscribe.gif" alt="$vbphrase[mark_this_forum_read]" vspace="1" />
<a href="forumdisplay.php?$session[sessionurl]do=markread&amp;f=$foruminfo[forumid]" rel="nofollow">$vbphrase[mark_this_forum_read]</a></div>
<if condition="$show['member']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/subscribe.gif" alt="$vbphrase[subscription]" vspace="1" />
<a href="subscription.php?$session[sessionurl]do=addsubscription&amp;f=$foruminfo[forumid]" rel="nofollow">$vbphrase[subscribe_to_this_forum]</a></div>
</if>
<div><img class="inlineimg" src="$stylevar[imgdir_button]/subscribe.gif" alt="$vbphrase[view_parent_forum]" vspace="1" />
<a href="forumdisplay.php?$session[sessionurl]f=$foruminfo[parentid]" rel="nofollow">$vbphrase[view_parent_forum]</a></div>
</div></td>
<!-- / forum tools -->
<!-- search this forum -->
<td class="alt1"> <form action="search.php" method="post">
<div class="smallfont">
<input type="hidden" name="s2" value="$session[sessionhash]" />
<input type="hidden" name="do2" value="process" />
<input type="hidden" name="forumchoice[]" value="$forumid" />
<input type="hidden" name="childforums" value="1" />
<strong>$vbphrase[search_this_forum]</strong> :<br />
<input type="text" class="bginput" name="query" size="20" style="width:175px" />
$gobutton<br />
<a href="search.php?$session[sessionurl]f=$forumid" rel="nofollow">$vbphrase[advanced_search]</a>
</div>
</form></td>
<!-- / search this forum -->
</tr>
</table>
<br />
<!-- / controls for non-popup browsers -->
</if> <if condition="$show['ajax_js']">
<script type="text/javascript" src="clientscript/vbulletin_ajax_threadslist.js"></script>
<script type="text/javascript">
<!--
vB_AJAX_Threadlist_Init('threadslist');
//-->
</script>
</if>
<!-- ############## END THREADS LIST ############## -->
<div class="vbmenu_popup" id="forumsearch_menu" style="display:none">
<form action="search.php" method="post">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$vbphrase[search_this_forum]<a name="goto_forumsearch"></a></td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite"> <input type="hidden" name="s2" value="$session[sessionhash]" />
<input type="hidden" name="do2" value="process" /> <input type="hidden" name="forumchoice[]" value="$forumid" />
<input type="hidden" name="childforums" value="1" /> <input type="text" class="bginput" name="query" size="20" />
$gobutton<br /> </td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?$session[sessionurl]f=$forumid" rel="nofollow">$vbphrase[advanced_search]</a></td>
</tr>
</table>
</form>
</div>
<!-- / forum search menu -->
<else /> </if> <if condition="$show['popups'] AND $show['forumsearch']">
<!-- forum search menu -->
</if>
<!-- icon key -->
<if condition="$show['threadslist']"> </if>
<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<tr valign="top">
<td align="right" width="100%">
$forumjump
<if condition="!$show['popups'] AND $show['adminoptions']">
<br />
<form action="moderator.php" method="get">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="f" value="$forumid" />
<div class="smallfont"><strong>$vbphrase[admin_tools]</strong>:</div>
<select name="do" onchange="this.form.submit();">
<optgroup label="$vbphrase[admin_tools]">
<option value="modposts" selected="selected">$vbphrase[view_posts_queue]</option>
<option value="modattach">$vbphrase[view_attachment_queue]</option>
<option value="move">$vbphrase[mass_move]</option>
<option value="prune">$vbphrase[mass_prune]</option>
<if condition="$show['addmoderator']">
<option value="addmoderator">$vbphrase[add_moderator]</option>
</if>
</optgroup>
</select>$gobutton
</form>
</if>
</td>
</tr>
</table>
<!-- / forum rules & forum jump -->
$footer
</body>
</html>

Harald_T
11-16-2005, 12:35 PM
*gg*

I removed those parts as i found them not so needful for the gallery. But thanks, might be usefull for those users who need those tools.

sassyparties
11-16-2005, 12:38 PM
Does this work in 3.5.1? Thanks for you time!

Harald_T
11-16-2005, 01:26 PM
Yes, it works fine. Tested it this morning.

Translation has been done, so update will be tonight.

Brandon Sheley
11-16-2005, 05:44 PM
its running om my 3.5.1 prefect :)
but i am looking foward to the upgrade ;)

Snake
11-16-2005, 06:33 PM
EXCELLENT! Thank you very much.

lexx27
11-17-2005, 03:16 PM
Cant wait for the upgrade!!! :)

Harald_T
11-17-2005, 04:39 PM
On the way...

Checking some little bugs.

Brandon Sheley
11-17-2005, 04:40 PM
take your time :)
my users love it so far, and if you have a paypal account, and don't mind, send me a pm wth your email. I'll shoot you a few $'s :D

Harald_T
11-17-2005, 08:32 PM
I'm sorry, i don't have. But no problem at all. My work is intented to be free for all VBulletin-Users.

So, Update is done.

lexx27
11-17-2005, 09:07 PM
You are the Best!

Thanx Harald_T!

lexx27
11-17-2005, 09:10 PM
Ok - some questions

What do you mean change the code of the templates and Change the file-edit ?

Take the prvious instalation steps backwards?

lexx27
11-17-2005, 10:12 PM
Well, Everything is working except the thread bit. It looks like an ordinary centered thread_bit

Why the new version has the latest pics at forum_display and not in forum_home ?

zzzxxzzz
11-18-2005, 02:31 AM
why it come like this?

how you make random picture on forum home?

zzzxxzzz
11-18-2005, 02:42 AM
one more question, nothing show up in forum display, i did upload the attachment but still not working

tuanluu
11-18-2005, 04:39 AM
I does not work since I upgrade to this new version. look at attachment to see what i mean thanks

Brandon Sheley
11-18-2005, 05:52 AM
one more question, nothing show up in forum display, i did upload the attachment but still not working


https://vborg.vbsupport.ru/showpost.php?p=815895&postcount=281

this may be the issue, i had it too :p

tuanluu
11-18-2005, 05:57 AM
Thanks, but that not the problem I have. Because it work fine for the previous version. Just double check and it is enable and also rebuild thumbnail too.

anymore idea????

Harald_T
11-18-2005, 07:22 AM
Sorry people. There was a little mistake in the installation-guide. I've fixed it.

The problem was the file-edit for forumdisplay.php:

Change:


if ($displaythumbs == true)


into


if ($gallery == true)


then it should work again.

Also, of course, you have to change FORUMHOME for showing the latest pictures.

@Lexx:
The templates you had to create (latestgallery, threadbit_gallery, and so on) have been changed in some ways. So the best way is to overwrite the old code with the new one.

Same is for forumdisplay.php. I changed the variables and there it have to be changed. That's all.

lexx27
11-18-2005, 09:56 AM
Thank you harald.

Harald_T
11-18-2005, 10:20 AM
Next on my list: Integrating with vBAdvanced CMPS

lexx27
11-18-2005, 10:44 AM
Its working.

Next on my list: Integrating with vBAdvanced CMPS

Perfect!

zzzxxzzz
11-18-2005, 01:14 PM
how can i make the topic width expand perfectly to the background

Harald_T
11-18-2005, 01:20 PM
What do you mean exactly?

zzzxxzzz
11-18-2005, 01:27 PM
sorry harald, it still show up the same error above, no pic display

Harald_T
11-18-2005, 01:30 PM
Did you set all permissions right?

Does your vB generates Thumbsnails for attachment? Is GD or ImageMagick installed on your server?

zzzxxzzz
11-18-2005, 01:34 PM
here is 2 picture showing error

Harald_T
11-18-2005, 01:39 PM
Yes, i've noticed it and visited your homepage already.

The problem is: You don't see any thumbnail, because there seems to be no one. It could be at last:

- Your vBulletin can't generate them (check your graphic-settings in your vB-Options)
- You didn't set any the possibility to generate them for the attachment (check your attachment-setting)
- You don't have the right to see any thumbs/graphics. This is mostly the case for non-registered users.

zzzxxzzz
11-18-2005, 01:41 PM
I have gd installed on my server

lexx27
11-18-2005, 01:58 PM
How can I change the backround layer of the gallery?
I dont want to use gradients

Rhoads
11-18-2005, 02:47 PM
Can you fix the Uncached templates in your next release, they are many Uncached templates with the new update.

Thnx, nice job

Harald_T
11-18-2005, 03:17 PM
@Lexx: Change the CSS for your style.

@drl2005: I will do on the weekend.

tuanluu
11-18-2005, 06:45 PM
thanks it work like a charm now hehehe

lexx27
11-18-2005, 10:05 PM
@Lexx: Change the CSS for your style.

@drl2005: I will do on the weekend.I want to change it only for the gallery, not for the whole forum :squareeyed:

nexus851
11-18-2005, 11:43 PM
how do you fix the Uncached templates? please be detailed because im sorta newbie here... appreciate it!

Harald_T
11-19-2005, 08:10 AM
I will insert another plugin, which should solve the problem.

@Lexx: If you wish to do so, then make a new css-class and rename those in gallery-templates. If you need help on it, pm me.

ScottC20
11-19-2005, 08:13 AM
Harald, how can I make the Gallery link on the navbar pop out with links to the seperate gallery forums like on your site?

Harald_T
11-19-2005, 10:17 AM
I did it this way:

Search for


<td class="vbmenu_control"><a href="faq.php?$session[sessionurl]" accesskey="5">$vbphrase[faq]</a></td>


after this insert:


<td id="gallery_popup" class="vbmenu_control">
<a href="#gallery_popup">Gallery</a> <script type="text/javascript"> vbmenu_register("gallery_popup"); </script></td>

<!-- <td class="vbmenu_control"><a href="forumdisplay.php?f=XX">Gallery</a>
</td> -->


XX ist the number of your Gallery-Category.

Now, look a bit further and find:


</div>
<!-- / user cp tools menu -->
</if>


after this insert:


<!-- gallery_popup Menu -->
<div class="vbmenu_popup" id="gallery_popup_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">

<tr><td class="thead">Gallery</td></tr>
<tr><td class="vbmenu_option">
<a href="forumdisplay.php?f=XX">Gallery Overview</a>
</td></tr>
<tr><td class="vbmenu_option">
<a href="forumdisplay.php?f=AA">Gallery 1</a>
</td></tr>
<tr><td class="vbmenu_option">
<a href="forumdisplay.php?f=BB">Gallery 2</a>
</td></tr>
</table>
</div>
<!-- / Gallery-Popup-Menu -->


XX is again the number of your Gallery-Category.

AA, BB and so on are the numbers of each gallery.

Thats all.

ScottC20
11-19-2005, 11:09 AM
Thanks!

lexx27
11-19-2005, 11:37 AM
@Lexx: If you wish to do so, then make a new css-class and rename those in gallery-templates. If you need help on it, pm me.Thanks again Harald. I will try it alone first. :rolleyes:

Gizmo5h1t3
11-19-2005, 05:08 PM
quick one m8.....ive done the upgrade, and it works fine...but im stumped on one thing...

in the actual forum, when trhe pic is shown, along with the comment, the rating ...filesize etc....

where it should say....err..."poster"...or "Submitted by"...it shows this.."Benutzer:"

can u point me where to change it plz??

EDIT:

found it m8..no probs..

its in the threadbit_gallery template if anyone else needs it.....

just the uncached templates to sort out now m8y...otherwise, a top addition!!

Harald_T
11-19-2005, 05:56 PM
Oh, thank for the hint. I'll fix it.

davidw
11-20-2005, 05:31 PM
<font color="SeaGreen">* christianb subscribes to this thread because of the vbagallery incident</font>

lexx27
11-20-2005, 06:25 PM
what vbagallery incident?

Harald_T
11-20-2005, 06:47 PM
Was thinking the same, too.

Btw. atm i'm installing vbA CMPS.

lexx27
11-20-2005, 06:51 PM
I read that vba gallery waa "moved" at photopost and vba doesnt support it anymore

Btw. atm i'm installing vbA CMPS.
I am happy about that :)

Harald_T
11-20-2005, 08:16 PM
O.k., i've got it so far, but at the moment not as a seperate modul. This will come, i'll promise.

In your template "adv_portal" find:


$navbar


after this insert:


<if condition="$vboptions['show_latest']==1">
<table class="tborder" align="center" width=99%">
<tr>
<td colspan=$gal_num_rows>
Latest pictures in the gallery:
</td>
</tr>
<tr>
$latestgallery
</tr>
</table>
<br />
</if>


<if condition="$vboptions['show_random']==1">
<table class="tborder" align="center" width="99%">
<tr>
<td colspan=$gal_num_rows>
Random Pictures from the gallery</td>
</tr>
<tr>
$random_gallery
</tr>
</table>
<br />
</if>


Now, in your /includes/vba_cmps_include_bottom.php find:


eval('print_output("' . fetch_template('adv_portal') . '");');


before this insert:


// #################### Latest Gallery-Additions #######################
// fetch the permissions for each forum
// global $vbulletin;
$gal_num_rows = $vbulletin->options['gal_num_rows'];


$thumbs = $db->query_read("SELECT gallery, threadid, firstpostid, ". TABLE_PREFIX . "thread.title, attachmentid, ". TABLE_PREFIX . "attachment.dateline FROM ". TABLE_PREFIX . "attachment, ". TABLE_PREFIX . "thread, ". TABLE_PREFIX . "forum
WHERE gallery='1' AND ". TABLE_PREFIX . "thread.forumid=". TABLE_PREFIX . "forum.forumid AND ". TABLE_PREFIX . "thread.firstpostid = ". TABLE_PREFIX . "attachment.postid AND ". TABLE_PREFIX . "attachment.dateline < " . TIME() ." ORDER BY ". TABLE_PREFIX . "attachment.dateline DESC LIMIT $gal_num_rows");

while ($gallery = $db->fetch_array($thumbs))
{
eval('$latestgallery .= "' . fetch_template('latestgallery') . '";');
}

// #################### Random Gallery-Pictures #######################
// fetch the permissions for each forum

$random_thumbs = $db->query_read("SELECT gallery, threadid, firstpostid, ". TABLE_PREFIX . "thread.title, attachmentid, ". TABLE_PREFIX . "attachment.dateline FROM ". TABLE_PREFIX . "attachment, ". TABLE_PREFIX . "thread, ". TABLE_PREFIX . "forum
WHERE gallery='1' AND ". TABLE_PREFIX . "thread.forumid=". TABLE_PREFIX . "forum.forumid AND ". TABLE_PREFIX . "thread.firstpostid = ". TABLE_PREFIX . "attachment.postid AND ". TABLE_PREFIX . "attachment.dateline < " . TIME() ." ORDER BY RAND() LIMIT $gal_num_rows");

while ($rand_gallery = $db->fetch_array($random_thumbs))
{
eval('$random_gallery .= "' . fetch_template('random_gallery') . '";');
}

// ##################### End Gallery-Modification ########################


Now it should work.

jarod1981?
11-21-2005, 06:31 AM
Hi

In the file forumdisplay.php i don't find:

$thread['hiddencount']++;

}

eval('$threadbit .= "' . fetch_template('threadbit') . '";');

}

Where I must copy this part?

$thread['hiddencount']++;
}
//############################Gallery-Modification###########################
if ($gallery == true)
{
eval('$threadbit .= "' . fetch_template('threadbit_gallery') . '";');
}
else
{
eval('$threadbit .= "' . fetch_template('threadbit') . '";');
}
//############################End Gallery-Modification########################
}

Bye bye

Harald_T
11-21-2005, 06:50 AM
It's a bit beneath this hook:


($hook = vBulletinHook::fetch_hook('threadbit_display')) ? eval($hook) : false;

VBUsers
11-21-2005, 07:14 AM
hey there i have it installed but my thumbnails wont show up. ive changed the settings but then nothing happens. i dont want my regular images being links so what can i do?

Harald_T
11-21-2005, 07:49 AM
I checked your site, but couldn't see any posts in the gallery. Are the permissions set right? Otherwise, could you do me a favour and give me a test-access?

davidw
11-21-2005, 01:42 PM
<font color="SeaGreen">* christianb clicks install</font>

Just created a vbadvanced module too.

lexx27
11-21-2005, 03:40 PM
why dont you tell us how? :)

davidw
11-21-2005, 05:15 PM
No problem

What I did was went to the VBA CMPS => Add module => Module Type [Template]

Module Title - Gallery (Or whatever you want)
Column [Center Column]
Display Order 20 (whatever you want here)
Active Yes
Template to Include: adv_portal_gallery
Template Content:

<if condition="$vboptions['show_latest']==1">
<tr>
<td colspan=$gal_num_rows align="center">Latest pictures in the gallery:
</tr>
<tr>$latestgallery
</if>

<if condition="$vboptions['show_random']==1">
<tr>
<td colspan=$gal_num_rows align="center">Random pictures from the gallery:
</tr>
<tr>
$random_gallery
</tr>
</if>
Use Module Shell Template - Yes
Module Link: (I used this and put it directly to my gallery (same as the link for the navbar - remember your forum ID)

Permissions are up to you - I disallow unregistered and banned users to save bandwidth

lexx27
11-21-2005, 06:28 PM
Thank you man. This is nice. Does it work in the left column?

davidw
11-21-2005, 06:34 PM
I don't think it will, the way it is formatted. $random_gallery and $latestgallery refer to what is set up in AdminCP - which I think is around 4 or 5 horizontal images. If you set it to 1 image, which would hinder other references, it would probably work.

VBUsers
11-21-2005, 07:44 PM
I checked your site, but couldn't see any posts in the gallery. Are the permissions set right? Otherwise, could you do me a favour and give me a test-access?


test info sent thanks harald!

ScottC20
11-21-2005, 08:11 PM
Hey Harald,

The Latest Pictures From the Gallery table fits in fine on my home computer (although my home computer has a wider than average monitor) but on my work computer it stretches wildly and you need to scroll to see all of the images is there not a way to set it so that it will automatically fit within the screens browser

lexx27
11-21-2005, 08:13 PM
I don't think it will, the way it is formatted. $random_gallery and $latestgallery refer to what is set up in AdminCP - which I think is around 4 or 5 horizontal images. If you set it to 1 image, which would hinder other references, it would probably work.hm, thats true. I ll see what Ι can do. Thanks anyway :)

lexx27
11-21-2005, 10:09 PM
Module Link: (I used this and put it directly to my gallery (same as the link for the navbar - remember your forum ID)
What exactly do you mean here. Because I see an X in my portal

davidw
11-22-2005, 12:11 AM
In the instructions with the download there is a small instruction for putting the link to the gallery in the navigation bar. This requires you to change "X" with the forum ID of the gallery, assumably if the most of the instructions are followed on the extras. For example, when I created the gallery on my site, my gallery became forum 65, so I replaced x with 65 in the navbar hack. If you did the navbar hack, you can take the same link and use it for the module link. It's a quick way to get to the gallery.

Pvtiste
11-22-2005, 12:36 AM
yes very good work guy ;)
I'm really interested in your script !

davidw
11-22-2005, 01:05 AM
Module Link: (I used this and put it directly to my gallery (same as the link for the navbar - remember your forum ID)
What exactly do you mean here. Because I see an X in my portalI hope I've not confused you. :D

The Chief
11-22-2005, 02:56 AM
ok, I have installed this product and everything works fine, but there is one problem. When its a guest that views the forum, he sees a red x for the latest gallery entries, is there a way to make them see something else, like another image??

Harald_T
11-22-2005, 08:16 AM
Look around at page 20, i think. I've posted a solution before.

lexx27
11-22-2005, 09:48 AM
I hope I've not confused you. :DNo, not at all. I did it and the only problem I am having is that the pictures dont show up because their link doent point at my forums.
Note that the gallery is installed inside the forums directory.
How can I change that in Cmps. I saw that in your forums are installed in the parent directory.

lexx27
11-22-2005, 10:16 AM
Sorry for me posting all the time...
I found the solution to my problem. Now the thing that I want to do, is to change the random pictures from horizontal to vertical view. :)

davidw
11-22-2005, 10:37 AM
One thing to note, is that I could not change my FORUMHOME template as I do not have a set $navbar as does the default. My style has a multiple line reference to the navbar. However, that's where I got the code for the cmps. I am unsure at the moment on a vertical view, except maybe put in some code to change the variable that references the one in the admincp and then do a for each (or something) loop with a <br> command at the end before the function loops. Then display the results.

One possibilty is to set the amount in admincp to 1, then just copy the rand code x amount of times - whatever you feel like.

For example..

<center>
<td class="thead" height="150" width="320" align="center">
<a HREF="attachment.php?attachmentid=$rand_gallery[attachmentid]">
<img src="attachment.php?attachmentid=$rand_gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="320" height="40">
<br />
<a href="showthread.php?t=$rand_gallery[threadid]">
$rand_gallery[title]
</a><br>
<td class="thead" height="150" width="320" align="center">
<a HREF="attachment.php?attachmentid=$rand_gallery[attachmentid]">
<img src="attachment.php?attachmentid=$rand_gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="320" height="40">
<br />
<a href="showthread.php?t=$rand_gallery[threadid]">
$rand_gallery[title]
</a><br>
<td class="thead" height="150" width="320" align="center">
<a HREF="attachment.php?attachmentid=$rand_gallery[attachmentid]">
<img src="attachment.php?attachmentid=$rand_gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="320" height="40">
<br />
<a href="showthread.php?t=$rand_gallery[threadid]">
$rand_gallery[title]
</a><br>
<td class="thead" height="150" width="320" align="center">
<a HREF="attachment.php?attachmentid=$rand_gallery[attachmentid]">
<img src="attachment.php?attachmentid=$rand_gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="320" height="40">
<br />
<a href="showthread.php?t=$rand_gallery[threadid]">
$rand_gallery[title]
</a><br>
</center>


I've not tested this, so I have no clue if it will work or not.

Harald_T
11-22-2005, 11:12 AM
Sorry, but this won't work in the desired way, as the code isn't evaluated in the template.

I'm working on it.

lexx27
11-22-2005, 11:34 AM
Thank you christianb, I used your code and Achieved the vertical view with some editing for 4 pictures...but they are the same lol.

admin0
11-22-2005, 11:47 AM
is this the next best thing after the vba gallery ?

lexx27
11-22-2005, 11:54 AM
For me yes! Even better cause its free

davidw
11-22-2005, 12:06 PM
Thank you christianb, I used your code and Achieved the vertical view with some editing for 4 pictures...but they are the same lol.that's what I was afraid of... lol - but then again, how many pictures do you have in your gallery? I've only got a total of 3 in mine. :)

Harald_T
11-22-2005, 12:08 PM
O.k. i've got it.

For vertical view of the latest/random pictures:

Change in the plugin: "gallery_images_forumhome" the following code


while ($gallery = $db->fetch_array($thumbs))
{
eval('$latestgallery .= "' . fetch_template('latestgallery') . '";');
}


to this one:


while ($gallery = $db->fetch_array($thumbs))
{
eval('$adv_latestgallery .= "' . fetch_template('adv_latestgallery') . '";');
eval('$latestgallery .= "' . fetch_template('latestgallery') . '";');
}


Do the same for the random_gallery:


while ($rand_gallery = $db->fetch_array($random_thumbs))
{
eval('$adv_random_gallery .= "' . fetch_template('adv_random_gallery') . '";');
eval('$random_gallery .= "' . fetch_template('random_gallery') . '";');
}


Now, create two the following two templates:

adv_latestgallery:

<tr>
<td align="center">
<table class="tborder" align="center">
<tr>
<td class="thead" height="100" width="120" align="center">
<a HREF="attachment.php?attachmentid=$gallery[attachmentid]">
<img src="attachment.php?attachmentid=$gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="120" height="40">
<br />
<a href="showthread.php?t=$gallery[threadid]">
$gallery[title]
</a>
</td>
</tr>
</table>
</td>
</tr>


adv_random_gallery:

<tr>
<td align="center">
<table class="tborder">
<tr>
<td class="thead" height="100" width="120" align="center">
<a HREF="attachment.php?attachmentid=$rand_gallery[attachmentid]">
<img src="attachment.php?attachmentid=$rand_gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="120" height="40">
<br />
<a href="showthread.php?t=$rand_gallery[threadid]">
$rand_gallery[title]
</a>
</td>
</tr>
</table>
</td>
</tr>


now, change the code for adv_portal_gallery (s. post of christianb):


<if condition="$vboptions['show_latest']==1">
<tr>
<td colspan=$gal_num_rows align="center">Latest pictures in the gallery:
</td>
</tr>
$adv_latestgallery
</if>

<if condition="$vboptions['show_latest']==1">
<tr>
<td colspan=$gal_num_rows align="center">Random pictures from the gallery:
</td>
</tr>
$adv_random_gallery
</if>


Of course, it could be better for handling, if you make two modules, one with the latest pictures and one with the random pictures.

Second: Forget those file-edit on vba_cmps_include_bottom.php. It's not neccessary anymore.

lexx27
11-22-2005, 12:35 PM
harald this is great. Thank you very much for the support.

that's what I was afraid of... lol - but then again, how many pictures do you have in your gallery? I've only got a total of 3 in mine.I have nearly 90 and now I went verical!!! hehe :)

nexus851
11-23-2005, 01:44 PM
the thumbnails are soo small in my gallery, is there a way to make the uploaded images bigger than the reduced size ????

davidw
11-23-2005, 01:50 PM
That is in your AdminCP => vBulletin Options => Message Attachment Options

After you change your setting there, you need to go to Maintenance => Update Counters => Rebuild Attachment Thumbnails

nexus851
11-23-2005, 02:53 PM
didnt work.. the thumbnails in the gallery are still the same size...

not sure if u understand me.. i want the thumbnails in the gallery to be bigger... if i uploaded a 800x600 image, i want to show a smaller version(thumbnail) in the gallery which is bigger than it is set right now... where's the coding for the resizing of the image ?

Harald_T
11-23-2005, 03:05 PM
You find the settings therefor under your vB-Options: Text:Attachments

nexus851
11-23-2005, 03:43 PM
thanks, it worked...

another simple question is: how do i restrict the gallery pix view so that users cannot view the pictures unless they register first...

Harald_T
11-23-2005, 08:26 PM
just look here:

https://vborg.vbsupport.ru/showpost.php?p=755455&postcount=98

nexus851
11-23-2005, 09:20 PM
cool thanx, however can you attach or PM me the REGISTER.JPG. I dont see that file attached to the threads anywhere... & also how do u make a popup window for the images in the latest/random gallery? currently it doesnt popup even if u set the attachment options to popup.

Thanks!

P.S - 1 more question, what if in the future i change my mind and i want guest to be able to view the gallery, is there a easy way to change permissions in the user group that can let guests view the gallery without having to edit the templates again? I tried to edit the usergroups, but that has no effect...

Harald_T
11-24-2005, 10:23 AM
Normaly it should have. As the gallery uses the normal permissions from the vbulletin (just keep in mind, that the gallery isn't anything else than a forum, which is used in another way).

Popup-Window: Add to the <a href.... > which links to the image an target="_blank". Then the window should pop up.

lexx27
11-24-2005, 11:21 AM
This Gallery is simply Great. I am waiting for the new version!!! It will we a pro product!!!

davidw
11-24-2005, 11:23 AM
This works as well as all the *others* from what I have seen on other vb sites with some sort of gallery. I like it! And definately using it - it has also encouraged others to use it as well. :P

Harald_T
11-24-2005, 11:59 AM
Just a question:

What would you like to see in the next version of it ?

davidw
11-24-2005, 12:13 PM
Offhand, I'm not sure as I've not played around with it that much, but maybe a link to the rating system for the thread in the gallery so that one could rate the photo there, rather than going to the thread. It fills a big need on my site- I'm pretty happy with it.

lexx27
11-24-2005, 01:26 PM
Planned for the next version:

- Set by Option, if not registered users will see a thumb with message "Register first"
- A new page for displaying the picture. For this a new file will be included.
- A new page for posting a picture. For this a new file will also be included.
- Ability to load up more then one picture in the first posting.


This is more than good. The thing I am want mostly is
-the new page for displaying the picture
-the new page for posting a picture!
+ easy comments!

Harald_T
11-24-2005, 01:46 PM
@christianb: So you mean, the possibility to rate the picture on the main-view? Not in the thread itself?

Harald_T
11-25-2005, 12:54 AM
Thanks to merk and calourie, so i can use my own postbit now, so it's possible to change the look of the posting itself...

Here is a little view, how it now looks like:

What is missing, is the comment for the picture itself and the rating (which will now be changed to 10) and a little overview, which pictures will come next.

nexus851
11-25-2005, 10:40 AM
Currently, i have the gallery installed and with my compression module, it is saying this:

Uncached templates: latestgallery (6)
Uncached templates: random_gallery (6)
[Output: 69.32 Kb. compressed to 66.88 Kb. by saving 2.44 Kb. (3.52%)]

I believe i need to cache those 2 templates to improve efficiency(latestgallery & random_gallery), how would i do this???

davidw
11-25-2005, 07:29 PM
@christianb: So you mean, the possibility to rate the picture on the main-view? Not in the thread itself?Yeah. I like the idea of rating-on-the-fly - but then again, its just an idea. :D

lexx27
11-26-2005, 01:58 AM
I installed microstats an i realised that most of the gallery templates are uncached. How can I cache them???

Harald_T
11-26-2005, 08:43 AM
I'm busy on it, but yesterday i hadn't any time. So be patient.

nexus851
11-26-2005, 11:53 AM
I used your link in the earlier post where you posted the code so that only "registered" users can see the thumbnails, however after i installed the code, when i go into gallery, the thumbnails dont show anymore... (before the install it did, now it doesnt) There must be something in the current code that make the thumnails in gallery show now, but not the old code you gave me.... can u help me figure out what code i need to show my thumbnails again?

edited: i figured the problem out... at line 10, the variable is suppose to be "$gallery" and that brings up the thumbnails again... However, also the filesizes dont show too.... maybe you should just redo the whole template for "Register users only" template... (assuming it's not as stable as the released version)

thanx

lexx27
11-26-2005, 11:53 AM
No problem Harald, I ll be waiting.

Harald_T
11-26-2005, 12:16 PM
I have a new version ready, which i'll release this weekend. In this release:

- the code for registered members will be included
- the pages, which shows the pictures will have a new look, one which will fit better, i think (just look at : http://www.scifi-fan.net/showthread.php?t=863 for a preview of it)
- templates will be cached
- rating will go up to 10

nexus851
11-26-2005, 12:22 PM
I have a new version ready, which i'll release this weekend. In this release:

- the code for registered members will be included
- the gallery will have a new look, one which will fit better, i think (just look at : http://www.scifi-fan.net/showthread.php?t=863 for a preview of it)
- templates will be cached
- rating will go up to 10


cool, please make sure it is in english language...and also CACHED templates for latest and random gallery, thanx! can't wait... =)

Harald_T
11-26-2005, 12:23 PM
Oh yes, and fully phrased (as long, as i got all variables... ;))

Oh, and one thing i forgot:

the templates will now be grouped under the name "Gallery", so it's easier to handle, i think.

lexx27
11-26-2005, 12:31 PM
Great Work Harald!

CACHED templates for latest and random gallery, thanx! can't wait... =)They are not the only uncached templates... All the templates I think are uncached.

Harald_T
11-26-2005, 12:33 PM
@Lexx: At the moment, yes. But the next version has a plugin, which will fix that problem.

wrang
11-26-2005, 07:05 PM
What do i do wrong when i get this error in the ACP
Query
ALTER TABLE `forum` ADD `gallery` TINYINT( 4 ) NOT NULL

This query may modify data in your database. If this change is done in error, it is possible that you will not be able to recover from this change. Are you sure you wish to continue?

And the error
An error occurred while attempting to execute your query. The following information was returned.
error number: 1146
error desc: Table 'db00000957.forum' doesn't exist

MRGTB
11-26-2005, 09:00 PM
sorry but can I ask if this as been updated now to include the fixes like cached templates etc

The Chief
11-27-2005, 01:55 AM
sorry but can I ask if this as been updated now to include the fixes like cached templates etc

yup, I would also like to know this :D

Harald_T
11-27-2005, 09:50 AM
As i said some postings before, this will be in the next version, which i will release this night.

ScottC20
11-27-2005, 10:43 AM
How easy is it going to be to upgrade?

Harald_T
11-27-2005, 10:52 AM
I'll try to make it simple as possible.

lexx27
11-27-2005, 11:15 AM
Let the man work lol :)

Harald_T
11-27-2005, 11:52 AM
Almost ready. Phrasing is done, at the moment i'm busy on including the templates with the product (so almost no need for template-editing anymore).

After testing this evening i'll release it tonight, as i said.

JohnBee
11-27-2005, 02:17 PM
Almost ready. Phrasing is done, at the moment i'm busy on including the templates with the product (so almost no need for template-editing anymore).

After testing this evening i'll release it tonight, as i said.
Holly crap! your so powerful and precise!... I like that in a man :rolleyes:

Harald_T
11-27-2005, 03:24 PM
What do i do wrong when i get this error in the ACP




And the error
An error occurred while attempting to execute your query. The following information was returned.
error number: 1146
error desc: Table 'db00000957.forum' doesn't exist

It seems, that vbulletin can't alter those table in the database. Try to do it with phpmyadmin.

Harald_T
11-27-2005, 07:37 PM
New version is updated.

lexx27
11-27-2005, 08:50 PM
thank you harald

lexx27
11-27-2005, 11:16 PM
Everything is working fine. Only 2 problems

1. Uncached templates: threadbit_gallery (6) in forumdisply
2. Gallery forum display doesnt show anything

I upgraded from the older version - reverted all templates (latest,random,forumdisplay_gallery,threadbit_gall ery)
and deinstall - reinstall product.

MortysTW
11-28-2005, 01:15 AM
I think this should be edited:

ALTER TABLE `forum` ADD `gallery` TINYINT( 4 ) NOT NULL

Shouldn't it read:

ALTER TABLE `vb_forum` ADD `gallery` TINYINT( 4 ) NOT NULL

Or am I totally wrong on this?

lexx27
11-28-2005, 01:49 AM
Everything is working fine. Only 2 problems

1. Uncached templates: threadbit_gallery (6) in forumdisply
2. Gallery forum display doesnt show anything

I upgraded from the older version - reverted all templates (latest,random,forumdisplay_gallery,threadbit_gall ery)
and deinstall - reinstall product.

Ok I fixed everything!
The only thing I want to mention is that there is no phrase for information, it is inside the template!

Great work again from Harald! Everything is working perfectly! :)

Harald_T
11-28-2005, 06:08 AM
I think this should be edited:

ALTER TABLE `forum` ADD `gallery` TINYINT( 4 ) NOT NULL


Shouldn't it read:

ALTER TABLE `vb_forum` ADD `gallery` TINYINT( 4 ) NOT NULL

Or am I totally wrong on this?

Yes and no. It need to be changed, if you are using prefixes, that's right.

Harald_T
11-28-2005, 06:09 AM
Ok I fixed everything!
The only thing I want to mention is that there is no phrase for information, it is inside the template!

Great work again from Harald! Everything is working perfectly! :)

Did you know why your forumdisplay didn't show up anything?

robihot
11-28-2005, 09:42 AM
Hello Harald

I saw some small bugs:
-vbphrase[filesize] does not show the Phrase
-with NEXT/PREVIOUS Thread the image is shown even if not logged on
(user can scroll through all images)

Kind regards, Robert
PS: Thanks for your work! You did a great job.

lexx27
11-28-2005, 11:11 AM
Did you know why your forumdisplay didn't show up anything?No, I dont know why. I installed Gallery. Then I uprgraded vbulleten to 351 from 350. After that I chenged forumdisplay.php as you say in the readme. And then everything was working!

Harald_T
11-28-2005, 12:15 PM
@robihot:

Phrase: Check, if you have a phrase called "Filesize". In my system i have one. It's a standard-phrase of vB.

About the next thread/previous thread-thing. That's strange. I think, it could be a little bug of vB, as my gallery uses a lot of parts from vB.

robihot
11-28-2005, 03:11 PM
@robihot:

Phrase: Check, if you have a phrase called "Filesize". In my system i have one. It's a standard-phrase of vB.

About the next thread/previous thread-thing. That's strange. I think, it could be a little bug of vB, as my gallery uses a lot of parts from vB.

Yes, I have filesize. No clue why the gallery doesn't find the phrase! I added a phrase "gal_filesize" and changed the template accordingly. This works without any problems.

Next/previous: That's possible. I tested on your forum as well, it's definitelly not a bug of my installation. I could reproduce as well on yours.

Regards, Robert

DrewM
11-28-2005, 07:21 PM
Harald_T,
In your next realese could you make it so you could upload regulular files.

P.S. I've been trying to figur it out also.

Harald_T
11-28-2005, 08:25 PM
@robihot: O.k., for a short solution i would say that you could best make a phrase called "filesize" and use the word "Filesize" for it. I will make a fix for the gallery, which have this phrase included.

@Larrysw: Do you mean, uploading an textdokument, for example? And showing a standard-icon for it? It wouldn't fit the use for a gallery, i think, but if you need, i'll have a look.

DrewM
11-28-2005, 08:31 PM
@Larrysw: Do you mean, uploading an textdokument, for example? And showing a standard-icon for it? It wouldn't fit the use for a gallery, i think, but if you need, i'll have a look.
yes like text docs.

AGIRABI
11-28-2005, 09:24 PM
Database error in vBulletin 3.5.1:
Invalid SQL:
SELECT gallery, threadid, firstpostid, thread.title, attachmentid, attachment.dateline FROM attachment, thread, forum
WHERE gallery='1' AND thread.forumid=forum.forumid AND thread.firstpostid = attachment.postid AND attachment.dateline < 1133220095 ORDER BY attachment.dateline DESC LIMIT 5;

MySQL Error : Unknown column 'gallery' in 'field list'
Error Number : 1054
Date : Monday, November 28th 2005 @ 04:21:35 PM
Script : http://www.istmod.com/forum/login.php
Referrer : http://www.istmod.com/forum/admincp/
IP Address : 85.99.27.54
Username : admin
Classname : vb_database

İ got this error where do i make mistake ?

AGIRABI
11-28-2005, 09:49 PM
Somebody help me please my forum is gone i cant open any page.

How can i reset it help please guys...

lexx27
11-28-2005, 10:09 PM
Did you backup your database?

If not, try to log in into your mysql and fix tables

AGIRABI
11-28-2005, 10:13 PM
I did what u suggest than it worked, now i could reach the pages.

But still having problem with Gallery , i did everything almost but i didnot understand this part:

Setting up the gallery:


The best way of integrating the gallery into your forum should be:

1. Make a category, call it "Gallery" and change Display-Order to "0", so it's not visible.

2. Make some subforums, which will be the gallery.

3. In the forums-options you find a new one, called "Gallery".

4. Set the option 'Use as gallery' to 'yes'.

5. Also, have a look at the new Gallery-Section at your vBulletin-Options:

How can i configure this gallery and where its config page still couldn't find anything.

I did installed but thats it ...

I cant even see it on my forums home page...


how can i put it on the forums page and how can i configure even where is the congiguration page ?

I am still looking for those answers and going nuts :ermm:

lexx27
11-28-2005, 10:23 PM
Calm down. If you did everything right you should find the configuration page inside vboptions (bottom). Make a category, call it "Gallery" and change Display-Order to "0", so it's not visible. That means that you should know the url to see that page.

AGIRABI
11-28-2005, 10:28 PM
Dear Lexx27 you are my only hope, thanks alot buddy

On my forum index page i got this error any idea why ?

Parse error: parse error, unexpected T_VARIABLE in /home/content/i/s/t/istmod/html/forum/index2.php(461) : eval()'d code on line 17

Harald_T
11-28-2005, 10:30 PM
@LEXX: Normally, he doesn't need the URL, because there is now a link at the navbar. The only thing he has to do is to fill in the ID of the category into the gallery-option. But thanks for helping him. I was relaxing a bit and played WoW...

@AGIRABI: Your first error-message sounds like you hadn't run the query.

lexx27
11-28-2005, 10:34 PM
Hehe, that was nothing harald. You are here at the right time because I couldnt help him more. Good Luck AGIRABI

Harald_T
11-28-2005, 10:47 PM
Dear Lexx27 you are my only hope, thanks alot buddy

On my forum index page i got this error any idea why ?

I can only guess, but i think that you've changed somehow your forum. I tried to look, but i couldn't get in without registering.

Try doing the following:

-De-Install the product
-Check, if the templates have been removed
-Re-install it new.

AGIRABI
11-28-2005, 11:02 PM
Dear Harald_T yes i ran the query after and then got this error at the moment..

http://www.istmod.com/forum/images/help.gif

This is my index page, when i click the Forum from the left menu i got this error


Parse error: parse error, unexpected T_VARIABLE in /home/content/i/s/t/istmod/html/forum/index2.php(461) : eval()'d code on line 17

And this is my categori config page, what should i do ? :disappointed:


http://www.istmod.com/forum/images/help1.gif

How can get rid of this error and save my forum please help me ...

Harald_T
11-29-2005, 05:59 AM
Could you run the query? I mean, did it work? If not, then the gallery won't work, because this change is needed. It may be, that your problems are because the query didn't run right.

EasyTarget
11-29-2005, 06:28 AM
hey harald I thought I had asked this earlier but I couldn't find the post.

does this hack require allow_url_fopen to be enabled? or does it have support for cURL also? because allow_url_fopen is disabled on my server for security reasons.

Harald_T
11-29-2005, 06:42 AM
This hack uses the normal attachment-system of vBulletin. So, if your vB runs fine with allow_url_fopen enabled, then i don't see any reason, why the hack shouldn't work.

AGIRABI
11-29-2005, 09:59 AM
Could you run the query? I mean, did it work? If not, then the gallery won't work, because this change is needed. It may be, that your problems are because the query didn't run right.



I opened mysql manager and ran this query :

ALTER TABLE `forum` ADD `gallery` TINYINT( 4 ) NOT NULL


Did i do write or wrong ?

EasyTarget
11-29-2005, 05:36 PM
This hack uses the normal attachment-system of vBulletin. So, if your vB runs fine with allow_url_fopen enabled, then i don't see any reason, why the hack shouldn't work.well most everyone has the fopen function enabled.. it allows you to fetch information like dimensions of a pic and size and stuff from a remote site, sometimes within a site as well. the cURL function can do the same thing but it does it in a more secure fashion. My host doesn't allow the fopen function and many image hacks use fopen and are not written to support cURL.

I'll just test it out and see, easy enough :p

ScottC20
11-29-2005, 05:49 PM
I have upgraded (nice work Harald) but the phrases appear to be in Dutch or somesuch tongue, how can I revert this to English?

ScottC20
11-29-2005, 05:59 PM
It's fine in the Category view, but on the view for the individual images there is the following:

http://www.bushcraftliving.com/images/screenie.JPG

So how do I change these to English?

OneShot
11-29-2005, 06:07 PM
That language is german. And since Harald_T is one, I guess he has forgotten to translate some of his Phrases. The one below the image would read : "Click on the image (or picture), to view it in its original size." Next one going down would be "Informations (thats the direct translation) or Details" then "Published by", "Date" and finally "Comments".

Cheers
OS

Harald_T
11-29-2005, 06:11 PM
Hmh, i wrote the english translation into the phrase-fields for english.

Search for phrasenames, which beginn with "gal_". There you can edit those. But it's really strange. I've tested on an lokal board and it worked as i set my language to english.

Oh, btw. i'm half german/half dutch, to be honest.... :D

AGIRABI
11-29-2005, 07:31 PM
Harald i sent you the ftp details could setup mine please..

You know there is a opening for the forum on friday i couldn't finish it yet.

This guys are motorcyle drivers you know what they aer going to do to me ... :nervous:

ScottC20
11-29-2005, 07:52 PM
Got it sorted now thanks.

Harald_T
11-29-2005, 08:01 PM
@AGIRABI: Works now. You only forgot to add an subforum to your Gallery-Category. I add one and now it works. Have fun with it.

AGIRABI
11-29-2005, 08:10 PM
Thanky you so much harald one last question how can i add a random picture gallery blok to my index page.

Harald_T
11-29-2005, 08:20 PM
For vBA CMPS just look here:

https://vborg.vbsupport.ru/showpost.php?p=827700&postcount=392

AGIRABI
11-29-2005, 08:31 PM
Thanks everything you done for me, but i think i ll pass it for now it is to much for me :)

EasyTarget
11-30-2005, 07:13 AM
thanks harald, seems to be working ok so far as long as I don't link to remote sites. lots of german in the hack, is there a list of what the phrases should say in english?

also I saw that cmps link that had code for a vertical module, has anyone made a module for this hack that would work to display the pics on vba just like they do on forumhome?

EasyTarget
11-30-2005, 07:27 AM
also is there a way to get the register.jpg to show on the forumhome if you have the latest and random pics enabled?

Harald_T
11-30-2005, 08:08 PM
@AGABIRI: Ok, no Problem.

@Easy Target: I think ChristianB posted a module for CMPS some posts later.

About the register thing: No, not yet. I have to fix that, but not before sunday, as my holidays are over and i'm working again now.

nexus851
12-01-2005, 05:03 AM
How do you upgrade from the older version of this gallery??? Im running 3.50gold... do i overwrite, run the sql commands again or ??????

EasyTarget
12-01-2005, 07:58 AM
thanks harald, I found the cmps module info here:
https://vborg.vbsupport.ru/showpost.php?p=827086&postcount=372


And can you tell me what's wrong with this code? I edited the gallery_latestpictures thread to try and make it so that only registered members could see the pics posted but it made it so no one can see the pics posted, everyone sees the register jpg. Its from a post I found earlier in this thread.

<td align="center">
<table class="tborder" align="center">
<tr>
<if condition="$show['member']">
<td class="thead" height="100" width="120" align="center">
<a HREF="attachment.php?attachmentid=$gallery[attachmentid]">
<img src="attachment.php?attachmentid=$gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="120" height="40">
<br />
<a href="showthread.php?t=$gallery[threadid]">
$gallery[title]
</a>
</td>
<else />
<td>
<img src="images/misc/register.jpg">
</td>
</if>
</tr>
</table>
</td>

Harald_T
12-02-2005, 01:25 PM
How do you upgrade from the older version of this gallery??? Im running 3.50gold... do i overwrite, run the sql commands again or ??????

As i wrote in the installation-manual: Delete the old templates, de-install the old product and re-install the new version. That's all. All settings stay the same.

nexus851
12-02-2005, 10:20 PM
How do i integrate this with CMPS vbadvance where when i go into the Gallery page, it will also still show the left column of my modules (like it does in my cmps homepage) I know i have to create a module template, but i forgot the rest, does anyone remember????

the problem is my gallery page is just a link "http://www.studentsrus.org/forum/forumdisplay.php?f=47" how would i implement a link to open up on my center columns but yet still have my left and right column modules present

portalimiz
12-03-2005, 02:18 PM
i could not find the Category-Id. i wrote 59,it didn't. when i wrote any number,there was a problem...please help me...

Dollah
12-04-2005, 04:12 AM
ok i have 3.5.1 now how do i edit queries i'm very new to this need to be explained in more detail for me. i'm trying to get off the porch and run with the big dawgs

Harald_T
12-04-2005, 10:52 AM
I'll be back tonight. Sorry for waiting.

AGIRABI
12-04-2005, 10:41 PM
For vBA CMPS just look here:

https://vborg.vbsupport.ru/showpost.php?p=827700&postcount=392


Dear Harald i have tried to install the vba CMPS and almost did it.

Only picture is not showing, this is how its look like:

http://www.istmod.com/forum/images/vba.gif

I am sending you the user details from PM,

Could you please take a look at it where i am making wrong '

Thank you so much buddy...

Lionel
12-05-2005, 02:14 AM
Very nice hack. Is there a way to prevent people from starting a new thread if there are no attachments?

AGIRABI
12-05-2005, 08:33 AM
Harald you are owesame buddy, i owe you a big one...
If you ever thinking about coming istanbul, turkey dont even think about you are my quest...

Thank you so much...

Harald_T
12-05-2005, 08:34 AM
Dear Harald i have tried to install the vba CMPS and almost did it.

Only picture is not showing, this is how its look like:


I am sending you the user details from PM,

Could you please take a look at it where i am making wrong '

Thank you so much buddy...


O.k., works now.

Harald_T
12-05-2005, 08:36 AM
Harald you are owesame buddy, i owe you a big one...
If you ever thinking about coming istanbul, turkey dont even think about you are my quest...

Thank you so much...


Could be. You know, german makes lot's of holiday in turkey.... :D

zzzxxzzz
12-05-2005, 02:49 PM
Klicken Sie bitte auf das Bild, um es in Originalgr?zu sehen << what this mean

and this : Kommentare:

zzzxxzzz
12-05-2005, 03:08 PM
one more: Diese Einstellung definiert, wieviele Bilder nebeneinander in einer Reihe angezeigt werden.

sorry i dont understand

zzzxxzzz
12-05-2005, 03:42 PM
sorry, i have no pic show up in the thread. but i do have pic show up in forumhome

how can i fix it?

sorry the pic below i translate to my language already

Dollah
12-05-2005, 06:44 PM
ok i have 3.5.1 now how do i edit queries i'm very new to this need to be explained in more detail for me. i'm trying to get off the porch and run with the big dawgs


sorry but still waiting on how to do this

Harald_T
12-05-2005, 06:55 PM
ok i have 3.5.1 now how do i edit queries i'm very new to this need to be explained in more detail for me. i'm trying to get off the porch and run with the big dawgs

I wrote it in the installation manual. You have to change your includes/config.php as described and after that you can run a query from your AdminCP (i don't know how it called in english but you find it in the last menu of your AdminCP).

ScottC20
12-07-2005, 02:45 PM
Harald I seem to be having some problems with the individual category appearance after updating to 3.5.2 can we get an update on this please

yayvb
12-07-2005, 04:05 PM
Just a quick question. I read that this hack currently only supports threads with 1 image. Well, other than that 1 aspect the script is perfect. This way people don't have to upload to two different places, ie. photo album, and message attachments.

The only problem is that when I tested it with for instance 4 images, it shows the 4 random images, but they're all named the same, etc. and I forget where but somewhere I saw all 4 images stacked and distorted because I guess it only wants 1 photo at a time.

I love this hack but I can't limit my users to 1 image per post. Any ideas or can this be fixed?

Harald_T
12-07-2005, 08:50 PM
I'm working on this. I'm not sure if i got a solution for this. But I'll try. It's more an idea at the moment.

@ScottC20: I have to look. I personally didn't upgrade yet.

nexus851
12-08-2005, 08:59 AM
can u cache the random and latest gallery templates too please... its not cached yet...

Harald_T
12-08-2005, 05:44 PM
They should be cached. Do you still use the old templates? Or those for the vBadvanced CMPS? If so, you have to edit the plugin "forumcache-->Gallery" and insert the names of the templates.

The Chief
12-08-2005, 05:49 PM
I have just switched to vB 3.5.2 and my photos aren't appearing in the forums...they are appearing on the main page but in the forums we see nothing....

have a look...

http://www.myetalk.com

http://etalk.gamebgs.com/forums/forumdisplay.php?f=84

Harald_T
12-08-2005, 06:05 PM
@ScottC20: Did you edit the forumdisplay.php again? If you updated then you it's possible that you have a new file forumdisplay.php.

The Chief
12-08-2005, 06:07 PM
It may be the bug on vB 3.5.2. There seems to be some problems with the new version. I'm looking at it.

Glad you'll have a look at it harald, thanks ;)

Harald_T
12-08-2005, 06:09 PM
I have just switched to vB 3.5.2 and my photos aren't appearing in the forums...they are appearing on the main page but in the forums we see nothing....

have a look...

http://www.myetalk.com

http://etalk.gamebgs.com/forums/forumdisplay.php?f=84

Would you be so kind an contact me by pm? I guess i must have a look inside.

The Chief
12-08-2005, 06:27 PM
Would you be so kind an contact me by pm? I guess i must have a look inside.

I just sent you a pm, do you want some screenshots or what?

The Chief
12-09-2005, 03:25 AM
I don't know if anybody else is getting this error with vB 3.5.2??

nexus851
12-10-2005, 04:37 AM
O.k. i've got it.

For vertical view of the latest/random pictures:

Change in the plugin: "gallery_images_forumhome" the following code


while ($gallery = $db->fetch_array($thumbs))
{
eval('$latestgallery .= "' . fetch_template('latestgallery') . '";');
}


to this one:


while ($gallery = $db->fetch_array($thumbs))
{
eval('$adv_latestgallery .= "' . fetch_template('adv_latestgallery') . '";');
eval('$latestgallery .= "' . fetch_template('latestgallery') . '";');
}


Do the same for the random_gallery:


while ($rand_gallery = $db->fetch_array($random_thumbs))
{
eval('$adv_random_gallery .= "' . fetch_template('adv_random_gallery') . '";');
eval('$random_gallery .= "' . fetch_template('random_gallery') . '";');
}


Now, create two the following two templates:

adv_latestgallery:

<tr>
<td align="center">
<table class="tborder" align="center">
<tr>
<td class="thead" height="100" width="120" align="center">
<a HREF="attachment.php?attachmentid=$gallery[attachmentid]">
<img src="attachment.php?attachmentid=$gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="120" height="40">
<br />
<a href="showthread.php?t=$gallery[threadid]">
$gallery[title]
</a>
</td>
</tr>
</table>
</td>
</tr>


adv_random_gallery:

<tr>
<td align="center">
<table class="tborder">
<tr>
<td class="thead" height="100" width="120" align="center">
<a HREF="attachment.php?attachmentid=$rand_gallery[attachmentid]">
<img src="attachment.php?attachmentid=$rand_gallery[attachmentid]&stc=1&thumb=1" border=0 align="center"></a>
</td>
</tr>
<tr>
<td valign="center" align="center" width="120" height="40">
<br />
<a href="showthread.php?t=$rand_gallery[threadid]">
$rand_gallery[title]
</a>
</td>
</tr>
</table>
</td>
</tr>


now, change the code for adv_portal_gallery (s. post of christianb):


<if condition="$vboptions['show_latest']==1">
<tr>
<td colspan=$gal_num_rows align="center">Latest pictures in the gallery:
</td>
</tr>
$adv_latestgallery
</if>

<if condition="$vboptions['show_latest']==1">
<tr>
<td colspan=$gal_num_rows align="center">Random pictures from the gallery:
</td>
</tr>
$adv_random_gallery
</if>


Of course, it could be better for handling, if you make two modules, one with the latest pictures and one with the random pictures.

Second: Forget those file-edit on vba_cmps_include_bottom.php. It's not neccessary anymore.



I CANT seem to get the Vertical to work at all... i made those above templates but nothing is showing up at all in my homepage... please help...