vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Major Additions - [DBTech] Dragonbyte Gallery v1 (vB4) (https://vborg.vbsupport.ru/showthread.php?t=285074)

ejbreeze 11-09-2012 06:58 PM

Is there a setting for adding the number of thumbnails shown when clicking gallery. Now I have room for two more to even the page out.

https://vborg.vbsupport.ru/external/2012/11/30.png

AusPhotography 11-10-2012 03:52 AM

Yes, but the whole display of thumbs is dynamic, so it depends on the browser window width.
Whatever it is set to will mean variability on different monitors.

ejbreeze 11-11-2012 05:40 PM

I imported 8000 images from vb albums into gallery and placed them all in a category called "Uncatagorized." Now when I click on "any" category, gallery returns all the uncatagorized images. How do I get gallery to show the proper category images that have been catagorized properly? Thanks

UK CHI3F 11-11-2012 07:39 PM

We cannot get the recent images to show on our cms articles
All the buttons are ticked, and we have the forum one just not cms

Might need to look at it www.xboxplayers.co.uk

ejbreeze 11-12-2012 02:42 PM

After importing the albums I am getting this error emailed to me.

PHP Code:

Database error in vBulletin 4.2.0:

Invalid SQL:

                                
SELECT
                                        COUNT
(imageid) AS thiscount
                                FROM dbtech_gallery_images gi
                                LEFT JOIN dbtech_gallery_albums ga ON gi
.albumid ga.albumid
                                WHERE
                                        
((gi.albumid 0) || ((ga.hidden        0) && (ga.password '')) || (gi.userid 0)) &&
                                        
gi.instanceid   &&
                                        
gi.approved             &&
                                        
gi.deleted              0
                                MATCH
                                        
(gi.titlegi.textgi.tagginggi.username)
                                
AGAINST
                                        
('+clematis* ' IN BOOLEAN MODE);

MySQL Error   You have an error in your SQL syntaxcheck the manual that corresponds to your MySQL server version for the right syntax to use near 'MATCH
                                        (gi.title, gi.text, gi.tagging, gi.username)
                                AGAINST
                                        ('
+c' at line 10
Error Number  : 1064
Request Date  : Monday, November 12th 2012 @ 07:55:52 AM
Error Date    : Monday, November 12th 2012 @ 07:55:52 AM
Script        : http://www.xxx.com/forums/dbtgallery.php?do=search
Referrer      : http://www.xxx/forums/dbtgallery.php?catid=13&gal=gallery
IP Address    : 114.152.214.35
Username      : Mal
Classname     : vB_Database
MySQL Version : 


ejbreeze 11-14-2012 12:04 AM

Another thing. I know we went through where you could not delete a album and you fixed that with the latest version. But now on my production site admin sees the delete option when viewing all albums but members do not. If I give members yes to dbgallery "is Admin" then the delete is visible. Is there another permission that needs to be checked? Thanks

DragonByte Tech 11-14-2012 10:25 AM

Quote:

Originally Posted by flussmitteldj (Post 2378264)
Good morning,

We currently use the PhotoPlog Gallery, for which there is unfortunately no longer supported! Now I wanted to ask whether it is possible to transmit with a converter to all our images in your gallery?

Best Regards

Here is the Gallery
http://www.overclockingstation.de/photoplog/index.php

Sorry I didn't answer earlier, I don't have a copy of photoplog so I haven't been able to do one. If you want to let me access yours I can work on it, I would need ftp access to the files and database access so I could see the layout though.

Dylan

DragonByte Tech 11-14-2012 10:27 AM

Quote:

Originally Posted by mitch84 (Post 2379366)
Hi, How we make to see the albums of the members? I can see their images on the index, and the I see that they have an album, but I do not see a direct link towards their albums. thx

If you view their profile you can see all their albums. I'm adding a profile block in the next version that will be similar to the vB Album block.

Dylan

DragonByte Tech 11-14-2012 10:28 AM

Quote:

Originally Posted by ejbreeze (Post 2379766)
Is there a setting for adding the number of thumbnails shown when clicking gallery. Now I have room for two more to even the page out.

The instance has the number of images per page.

Just go to the Instance Management and the field is called Records Per Page

Dylan

DragonByte Tech 11-14-2012 10:35 AM

Quote:

Originally Posted by ejbreeze (Post 2380562)
After importing the albums I am getting this error emailed to me.

PHP Code:

Database error in vBulletin 4.2.0:

Invalid SQL:

                                
SELECT
                                        COUNT
(imageid) AS thiscount
                                FROM dbtech_gallery_images gi
                                LEFT JOIN dbtech_gallery_albums ga ON gi
.albumid ga.albumid
                                WHERE
                                        
((gi.albumid 0) || ((ga.hidden        0) && (ga.password '')) || (gi.userid 0)) &&
                                        
gi.instanceid   &&
                                        
gi.approved             &&
                                        
gi.deleted              0
                                MATCH
                                        
(gi.titlegi.textgi.tagginggi.username)
                                
AGAINST
                                        
('+clematis* ' IN BOOLEAN MODE);

MySQL Error   You have an error in your SQL syntaxcheck the manual that corresponds to your MySQL server version for the right syntax to use near 'MATCH
                                        (gi.title, gi.text, gi.tagging, gi.username)
                                AGAINST
                                        ('
+c' at line 10
Error Number  : 1064
Request Date  : Monday, November 12th 2012 @ 07:55:52 AM
Error Date    : Monday, November 12th 2012 @ 07:55:52 AM
Script        : http://www.xxx.com/forums/dbtgallery.php?do=search
Referrer      : http://www.xxx/forums/dbtgallery.php?catid=13&gal=gallery
IP Address    : 114.152.214.35
Username      : Mal
Classname     : vB_Database
MySQL Version : 


Try opening dbtech/gallery/modules/gallery/functions/class_module.php

About line 1063 you might see

PHP Code:

                    gi.deleted        
                MATCH 
                    
(gi.titlegi.textgi.tagginggi.username
                
AGAINST 
                    
" . $boolean_query
            );
        } elseif ((
$type == 'all_images_thumb') || ($type == 'all_images_full')) { 

With no && after the deleted = 0. If you do, change it to

PHP Code:

                    gi.deleted        && 
                
MATCH 
                    
(gi.titlegi.textgi.tagginggi.username
                
AGAINST 
                    
" . $boolean_query
            );
        } elseif ((
$type == 'all_images_thumb') || ($type == 'all_images_full')) { 

I think that's where it's coming from. If it's right then let me know and I'll keep checking.
Dylan


All times are GMT. The time now is 09:35 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.01440 seconds
  • Memory Usage 1,790KB
  • 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
  • (4)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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