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)
-   -   PhotoPost vBGallery - Forum Home (https://vborg.vbsupport.ru/showthread.php?t=96152)

mooj 10-17-2005 09:46 AM

i tried to cedit (each) group permission and save it as it is, in order to change it from (Default Permissions ) to (Custom Permissions) .. ( and it works properly :) .. )

Nutzz,
try to do it from (Category Permissions > and change the yellow color to red ) ..

:)

Zachariah 10-17-2005 12:09 PM

@mooj and others.

The only thing that will stop the images from showing up on the forumhome is in ver. 1.5 of the hack.

1.5
- <If> usergroup can not see thunbnails FORUMHOME edit will not show up.

AdminCP => vBa Gallery => Usergroup Permissions => Modify Permissions =>

Can view thumbnails: [ ]yes [x]no

Jason McConnell 10-17-2005 03:03 PM

Quote:

Originally Posted by Zachariah
Line 1082:
$images['description'] = $bbcode_parser->do_parse(stripslashes($images[' .........................

(there is more, but i killed the rest)



Set:
$showfields['description'] = 0;

There may be problems with the "description" part of the hack. Try that to see if it works.

Back when KW802 first released this hack, he had a problem with the word stripslashes... for some reason they were getting an extra space added in there somewhere.

I'm also glad to say it's working fine on this end :D Any plans on releasing this as a CMPS Module?

Zachariah 10-17-2005 06:36 PM

Quote:

Originally Posted by Jason McConnell
Back when KW802 first released this hack, he had a problem with the word stripslashes... for some reason they were getting an extra space added in there somewhere.

I'm also glad to say it's working fine on this end :D Any plans on releasing this as a CMPS Module?

Yes sir. on the Module - ill look on the error to see if KW got an fix on that error.

jlaine 10-18-2005 06:17 AM

Quote:

Originally Posted by Zachariah
Line 1082:
$images['description'] = $bbcode_parser->do_parse(stripslashes($images[' .........................

(there is more, but i killed the rest)



Set:
$showfields['description'] = 0;

There may be problems with the "description" part of the hack. Try that to see if it works.

It doesn't (at least not for me - I'm having the same issue) - looking into the comment on the whitespace issue above though...

MotoUp 10-18-2005 09:05 PM

Works great, thanks. :D

Michael-DLR 10-18-2005 11:45 PM

Quote:

Originally Posted by Blackhat
I get this:

Fatal error: Call to a member function on a non-object in /home/usr/public_html/forums/includes/functions_gallery.php on line 1082

I upgraded tonight and now I am in the same situation. Any time frame when we think we will have a fix?

Thank you,

Michael

Zachariah 10-19-2005 12:16 PM

Quote:

Originally Posted by Michael-DLR
I upgraded tonight and now I am in the same situation. Any time frame when we think we will have a fix?

Thank you,

Michael

I found this @ Vbadvanced.com. My personal Gallery already has this edit, but it might help.

Quote:

Quote:
Fatal error: Call to a member function on a non-object in /path/to/forums/includes/functions_gallery.php on line 1082


... un-ticking the "Descriptions" on the Gallery Settings, Main Page display, allows the front page to load up fine. Thoughts?

If you'll look in your includes/functions_gallery.php file for this code:
PHP Code:

    global $vba_options$stylevar$vbulletin$vbphrase$show$adv_sorturl$catinfo$counter$cellwidth$categoryperms$showfields$categorycache$catopts

Replace with:
PHP Code:

    global $vba_options$stylevar$vbulletin$vbphrase$show$adv_sorturl$catinfo$counter$cellwidth$categoryperms$showfields$categorycache$catopts$bbcode_parser

Then find:
PHP Code:

        $images['description'] = parse_bbcode2(stripslashes($images['description']), $catopts["$images[catid]"]['allow_desc_html'], $catopts["$images[catid]"]['allow_desc_bbimgcode'], $catopts["$images[catid]"]['allow_desc_smilies'], $catopts["$images[catid]"]['allow_desc_bbcode']); 

Replace with:
PHP Code:

        $images['description'] = $bbcode_parser->do_parse(stripslashes($images['description']), $catopts["$images[catid]"]['allow_desc_html'], $catopts["$images[catid]"]['allow_desc_smilies'], $catopts["$images[catid]"]['allow_desc_bbcode'], $catopts["$images[catid]"]['allow_desc_bbimgcode']); 

And that should take care of the problem.

Michael-DLR 10-19-2005 12:40 PM

Quote:

Originally Posted by Zachariah
I found this @ Vbadvanced.com. My personal Gallery already has this edit, but it might help.




If you'll look in your includes/functions_gallery.php file for this code:
PHP Code:

    global $vba_options$stylevar$vbulletin$vbphrase$show$adv_sorturl$catinfo$counter$cellwidth$categoryperms$showfields$categorycache$catopts

Replace with:
PHP Code:

    global $vba_options$stylevar$vbulletin$vbphrase$show$adv_sorturl$catinfo$counter$cellwidth$categoryperms$showfields$categorycache$catopts$bbcode_parser

Then find:
PHP Code:

        $images['description'] = parse_bbcode2(stripslashes($images['description']), $catopts["$images[catid]"]['allow_desc_html'], $catopts["$images[catid]"]['allow_desc_bbimgcode'], $catopts["$images[catid]"]['allow_desc_smilies'], $catopts["$images[catid]"]['allow_desc_bbcode']); 

Replace with:
PHP Code:

        $images['description'] = $bbcode_parser->do_parse(stripslashes($images['description']), $catopts["$images[catid]"]['allow_desc_html'], $catopts["$images[catid]"]['allow_desc_smilies'], $catopts["$images[catid]"]['allow_desc_bbcode'], $catopts["$images[catid]"]['allow_desc_bbimgcode']); 

And that should take care of the problem.

Thank you so much for helping. My file already has these changes in it as well. I wonder what the problem could be?

jlaine 10-21-2005 04:02 AM

There definitely was a whitespace error inside my functions_gallery - but it did not remedy the situation. Zachariah - can I send you my existing functions_gallery.php file so you can compare it to yours? (or the other way around, whichever...)

Perhaps you can do a live swap to see if there is another whitespace error somewhere inside that file that I didn't see - at least it could be ruled out that way anyway. Seems to have to do something with the actual parsing function itself - because I've found if the images it pulls up have no image descriptions at all - the page loads fine. Doesn't seem to effect it one way or the other if I disable or enable the display descriptions inside the mod you've made though.


All times are GMT. The time now is 04:29 PM.

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.01394 seconds
  • Memory Usage 1,796KB
  • 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
  • (8)bbcode_php_printable
  • (7)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
  • (10)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