vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Gallery for vBulletin 3.5.X (https://vborg.vbsupport.ru/showthread.php?t=92875)

Harald_T 09-04-2005 04:47 PM

It seems you've forgot to run the query. Check, if you have the permission (first two instructions in the installation-manual).

Forumi Shqiptar 09-05-2005 12:30 AM

ok done it added the tables and runned the querie now i got a problem that the forum its added but when u click on it all the page its like a forum there are no options where to add photos or how to add them.

Also get this problem when i try to access any sub-forums or to post on them Unable to add cookies, header already sent.
File: /home/www/humori.net/forumdisplay.php(799) : eval()'d code
Line: 12
:surprised:

Harald_T 09-06-2005 04:27 PM

Please check if you run all the instructions right. It should work. The error sounds strange.

Oh, if you go to the category, there isn't a gallery, that's right. You have to make some subforums, and mark them as gallery. There you should find the possibility to upload pictures.

ReadOrDie 09-10-2005 05:37 PM

The gallery is installed but in the instructions it said nothing about the "upload" picture. Where do I put that?

Harald_T 09-10-2005 05:42 PM

Oh, sorry. Just put in the folder "images/buttons".

ReadOrDie 09-10-2005 05:50 PM

Thank you but I have one more question why is the thing in german?

http://img35.imageshack.us/img35/187...tled1co.th.png

ReadOrDie 09-10-2005 06:25 PM

Delete Post I fixed it. German problem is still not fixed though.

Harald_T 09-10-2005 07:11 PM

Oh, that's because i'm german? Anyway, replace "Neueste Galerie-Einträge" with "Latest Gallery-Additions" or something like this.

ReadOrDie 09-10-2005 08:03 PM

Thanks.!!!

Forumi Shqiptar 09-12-2005 09:05 AM

Quote:

Unable to add cookies, header already sent.
File: /home/www/humori.net/forumdisplay.php(799) : eval()'d code
Line: 12

i followed every single step correctly as far as im aware the only thing i changed it was the queries from

Quote:

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

ALTER TABLE `forum` ADD `gallery_rows` VARCHAR( 4 ) NOT NULL
to
Quote:

ALTER TABLE `vb3_forum` ADD `vb3_gallery` TINYINT( 4 ) NOT NULL

ALTER TABLE `vb3_forum` ADD `vb3_gallery_rows` VARCHAR( 4 ) NOT NULL
and after i have finished installing the hack when i try to access my forum or the threads that are opened in any of the sub-forums that are inside my forum it gives me that message
Quote:

Unable to add cookies, header already sent.
File: /home/www/humori.net/forumdisplay.php(799) : eval()'d code
Line: 12
is there any help given on this or not? as i got more than 3 weeks trying to make it work and it wont could someone help me please or not so that i know and if not please do say so so i dont have to loose my time and yours too guys!

Many thanks for anyone who replies

Harald_T 09-12-2005 08:35 PM

The way you've changed the queries could be the problem. Change it to:

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

ALTER TABLE `vb3_forum` ADD `gallery_rows` VARCHAR( 4 ) NOT NULL

The prefix isn't needed for those additions, as they are part of a table.

Maybe this will help.

Forumi Shqiptar 09-18-2005 09:41 PM

sorry for my late reply as i aint been well i tried ur idea Harald_T too but it aint working dont know why its giving the same message again.

anyone has any clue how to get this one working? or no-one has encountered this problem? many thanks in andvance

Harald_T 09-19-2005 08:17 PM

Oh, wait. This problem only get displayed with forumdisplay.php.

Disable all Plugins which belongs to forumdisplay for the gallery and then enable them one by one. Could you post the code of the one, which produces the error-message?

Andreas 09-20-2005 04:33 PM

@Harald T
You are using the following Code on Hook forumdisplay_complete
PHP Code:

//############################Gallery-Modification###########################
if ($displaythumbs == true)
{
eval(
'print_output("' fetch_template('forumdisplay_gallery') . '");');
}
else
{
eval(
'print_output("' fetch_template('FORUMDISPLAY') . '");');
}
//############################End Gallery-Modification######################## 

print_output() causes halt of Script execution, which means that all other Plugins using the same Hook will not be executed, if they would be executed after your Code.
Please change that in order to keep compatibility with other Hacks.

Harald_T 09-20-2005 05:40 PM

Sorry, i didn't knew that. Hmh, i've to see, if i can change it. Any suggestions?

Wordplay 09-29-2005 06:52 AM

this looks exactly like vbadvanced, which one is better?

Harald_T 09-29-2005 05:57 PM

To be honest: I don't know.

This gallery fits for my personal needs,and that's all i want for it.

There are some couple of things i have to do on it, but i'm still learning the new features of vB 3.5

dreck 09-29-2005 10:11 PM

this still working for gold?

Harald_T 10-01-2005 08:31 AM

I would think so. I haven't had the time to install gold, so i'll try it this weekend.

trancetopia 10-01-2005 08:53 AM

I have this gallery installed and it works great but i've had to temporarily hide the gallery forums due to a problem.

I'm not sure if i've missed something somewhere, but how do you limit the amount of images shown when viewing the gallery. I have a forum that has 300+ images in it but when viewing this forum/gallery it displays all 300 thumbnails instead of viewing the first 25 etc and giving the option to go the next page etc. 300+ images on one page takes a long time to build and looks a little messy.

Is there any way to page the gallery view?

Thanks

Harald_T 10-01-2005 09:20 AM

Let me first install 3.5 Gold. Then i'll have a look after this bug.

How many threads to display are set in you UserCP?

trancetopia 10-01-2005 09:41 AM

I have 20 threads specified.

You can see one of the forum gallaries here:

http://www.littlewales.com/forumdisplay.php?f=163

Harald_T 10-01-2005 12:51 PM

O.k., this looks weird.

I'll check it this weekend.

trancetopia 10-01-2005 12:57 PM

Cheers Harald_T

dreck 10-01-2005 04:12 PM

Quote:

Originally Posted by Harald_T
I'll check it this weekend.

cool, thanks!

Willy-K 10-01-2005 05:04 PM

Quote:

Originally Posted by dreck
this still working for gold?

Yes it works!

Harald_T 10-02-2005 08:57 AM

Thanks Willy, you were faster.... :D

dreck 10-02-2005 03:02 PM

Cool, maybe i can install this later today.

Thanks, dreck

ThePimp 10-04-2005 04:57 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?

Allan 10-04-2005 05:25 PM

Harald_T, no update for vB 3.5 Gold ?

Harald_T 10-04-2005 07:31 PM

I'll do soon. ATM i don't have much time (too much work over the day). So don't expect an update for the weekend. Please be patient.

danbc 10-05-2005 07:17 AM

Hmmm noob question here :D


Also, had some probs with attachments, so in the gallery page I now have 4 "posts" with red X?es, how do I delete those, since I only have one option button called "upload" ?

xtreme-mobile 10-05-2005 08:32 AM

at the preview box at the top of forum it says

Neueste Galerie-Einträge how do i change this to english?

regards

dean

Harald_T 10-05-2005 03:58 PM

Sorry, i'll answer your questions. But please be patient. It will be at the coming weekend.

sherykah 10-08-2005 07:44 AM

If anyone is looking for a photo gallery, look no further. This is excellent.

Harald_T 10-08-2005 08:35 AM

Thanks a lot! :)

I've downloaded vB 3.5.0 Gold and will testing it this weekend.

xtreme-mobile 10-11-2005 07:34 PM

this hack is warping my forum

it is making the alignment of the top abnner of my forum become unaligned :(

gonna have to remove this hack :(

xtreme-mobile 10-11-2005 07:36 PM

how do i uninstall this?

regards

dean

Harald_T 10-11-2005 09:23 PM

Hy Dean.

How do you mean "the top banner becomes unaligned"? I had a look at your page, and the page itself looked fine?

Otherwise, to remove the hack, you have to remove the file-editing, and uninstall the plugin.

tuanluu 10-12-2005 08:27 AM

work fine on my thanks for the hack, there are one problem I just notice that... It does not show the filesize, the phrase for reply and view. Did i do some wrong... Or it should be like this ---> look at the attachment to see what I mean


All times are GMT. The time now is 04:58 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01691 seconds
  • Memory Usage 1,815KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete