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)

Dylanblitz 06-15-2013 09:51 PM

Quote:

Originally Posted by Yucar (Post 2427819)
hi, again when im trying to upload a image gives me that error :

https://vborg.vbsupport.ru/attachmen...1&d=1371108563

I believe it's saying the file exceeds the php size limit. Check the setting
ACP->DBTech Gallery->Gallery System

Let me know what Max Upload Size is set to.

Dylan

Dylanblitz 06-15-2013 09:58 PM

Quote:

Originally Posted by mertiliuss (Post 2427857)
Thanks, I'll wait for the new version!

You can also add a watermark personalized?

for example: MYWEB.COM/USERNAME

thanks!

Watermarking is a pro only feature so I can't talk about it here.

Dylan

Toshinobu 07-11-2013 12:15 PM

Maybe I'm missing something here but I am experiencing two issues:

1. Is there supposed to be an upload button when you go to dbtgallery.php? I have permissions to upload but I don't see this option.

2. When I add an image to my album (through my user profile) the image does not get added to the gallery page unless I do a manual import. Is is supposed to be added automatically or not?

Thanks in advance!

DragonByte Tech 07-14-2013 08:45 AM

Quote:

Originally Posted by Toshinobu (Post 2433176)
Maybe I'm missing something here but I am experiencing two issues:

1. Is there supposed to be an upload button when you go to dbtgallery.php? I have permissions to upload but I don't see this option.

2. When I add an image to my album (through my user profile) the image does not get added to the gallery page unless I do a manual import. Is is supposed to be added automatically or not?

Thanks in advance!

The permissions are per instance, if you set the permissions so you can upload then you should see the submenu item to do it.

User profile images go to your vB album, not our gallery software. Images added to the vB albums don't automatically get added to our program.

Dylan

acmalin927 08-03-2013 09:44 PM

any way to remove the

Camera Make
Camera Model
Aperture
ISO
Image Date


from the edit section?

I simply don't need it for the type of photos my members update...

THANKS

mse2k 09-06-2013 06:01 AM

Quote:

Originally Posted by vb_nils (Post 2347674)
Hi there,

Manage to install the mod with no problem.
But when uploading an image, it shows me a big "Image is missing".
I've checked the upload folders and rights are 777 on all subfolders.
I've noticed that owners are "apache" and "root". Is it normal?

Any ideas?

Hey there,

i have the same problem.
Folder & subfolder permissions are set (0777) & user rights also.
After upload it show a big image, immage missing.

EDIT: vb version. 4.2.1

any idea?

Thanks and great work

DragonByte Tech 09-08-2013 06:20 AM

Quote:

Originally Posted by mse2k (Post 2443634)
Hey there,

i have the same problem.
Folder & subfolder permissions are set (0777) & user rights also.
After upload it show a big image, immage missing.

EDIT: vb version. 4.2.1

any idea?

Thanks and great work

I'm sorry about the problems you're having. Unfortunately, to troubleshoot it I would need to get a temp admin account and ftp access since it sounds like something is going on with the write file permissions. If you'd like to do that then let me know.

Dylan

Rich 09-08-2013 03:44 PM

Is it possible to use a different template for the "main" page?

I would like to use "dbtech_gallery_home_2" (my template) as the main landing page and use the default "dbtech_gallery_home" for everything else. I attempted to use an if condition but it didn't work. I was trying:

Code:

<vb:if condition="$_REQUEST['do'] == main">Main<vb:else />Not Main</vb:if>
If the condition worked I would have just wrapped my code within the default template and had it use your info after the else statement.

I also tried:

Code:

<vb:if condition="$_GET['do'] == main">Main<vb:else />Not Main</vb:if>
Is there a condition I could use or perhaps a plugin to do this? I have no issues with editing files if it accomplishes my goal.

DragonByte Tech 09-11-2013 08:31 AM

Open dbtech/gallery/modules/gallery/actions/main.php

Find
PHP Code:

$category_main vB_Template::create('dbtech_gallery_home'); 

Replace with
PHP Code:

if ($action == 'main')
{
    
$category_main vB_Template::create('dbtech_gallery_home_2');
} else {
    
$category_main vB_Template::create('dbtech_gallery_home');


That should take care of it.

Dylan

Quote:

Originally Posted by Rich (Post 2444167)
Is it possible to use a different template for the "main" page?

I would like to use "dbtech_gallery_home_2" (my template) as the main landing page and use the default "dbtech_gallery_home" for everything else. I attempted to use an if condition but it didn't work. I was trying:

Code:

<vb:if condition="$_REQUEST['do'] == main">Main<vb:else />Not Main</vb:if>
If the condition worked I would have just wrapped my code within the default template and had it use your info after the else statement.

I also tried:

Code:

<vb:if condition="$_GET['do'] == main">Main<vb:else />Not Main</vb:if>
Is there a condition I could use or perhaps a plugin to do this? I have no issues with editing files if it accomplishes my goal.


Rich 09-11-2013 02:45 PM

Thanks Dylan, I appreciate it. I have another suggestion that I was surprised wasn't already there. Could we amend the navbar to include a link to the homepage?

Example: My Homepage > Gallery > whatever gallery page

I currently have to click my logo to get out of the gallery. (I don't use the default vbulletin navbar on the site I am creating). Is this feasible?

DragonByte Tech 09-13-2013 05:33 AM

Quote:

Originally Posted by Rich (Post 2444913)
Thanks Dylan, I appreciate it. I have another suggestion that I was surprised wasn't already there. Could we amend the navbar to include a link to the homepage?

Example: My Homepage > Gallery > whatever gallery page

I currently have to click my logo to get out of the gallery. (I don't use the default vbulletin navbar on the site I am creating). Is this feasible?

Pretty easy to do.
Open /dbtgallery.php

Find
PHP Code:

$navbits = array();
$navbits[DBTECH_GALLERY::fetch_file_path(0'gallery_front'$gal)] = $vbphrase['dbtech_gallery_title']; 

replace with

PHP Code:

$navbits = array();
$navbits[fetch_seo_url('forumhome', array())] = $vbphrase['forum'];
$navbits[DBTECH_GALLERY::fetch_file_path(0'gallery_front'$gal)] = $vbphrase['dbtech_gallery_title']; 

Dylan

acmalin927 09-14-2013 02:22 AM

receiving this error... any help is appreciated

Warning: getimagesize([path]/dbtech/gallery/images/upload/1/1/thumb/9_1379124143.png) [function.getimagesize]: failed to open stream: No such file or directory in [path]/dbtech/gallery/hooks/forumhome_complete.php on line 170

acmalin927 09-16-2013 08:59 PM

any help? THANKS ;)

DragonByte Tech 09-17-2013 06:41 AM

Quote:

Originally Posted by acmalin927 (Post 2445483)
receiving this error... any help is appreciated


Warning: getimagesize([path]/dbtech/gallery/images/upload/1/1/thumb/9_1379124143.png) [function.getimagesize]: failed to open stream: No such file or directory in [path]/dbtech/gallery/hooks/forumhome_complete.php on line 170

Quote:

Originally Posted by acmalin927 (Post 2446050)
any help? THANKS ;)

Sorry,
Is this on just one image or is this happening on all of them?
If it's just one, it looks like you have an image that didn't upload correctly. Inside of the ACP there is an option to clean up the database.
ACP->Gallery->Maintenance->Remove Orphan DB Entries

Dylan

acmalin927 09-17-2013 01:30 PM

Quote:

Originally Posted by DragonByte Tech (Post 2446132)
Sorry,
Is this on just one image or is this happening on all of them?
If it's just one, it looks like you have an image that didn't upload correctly. Inside of the ACP there is an option to clean up the database.
ACP->Gallery->Maintenance->Remove Orphan DB Entries

Dylan

unfortunately it happens on random images and not always the same image THIS appears at the top of the HOME page only currently (there are always 5 error messages, some different some repeating (as you can see it shows the one error message 3 times for the same image) but always different)


Warning: getimagesize([path]/dbtech/gallery/images/upload/1/1/2/thumb/33_1374068048.jpg) [function.getimagesize]: failed to open stream: No such file or directory in [path]/dbtech/gallery/hooks/forumhome_complete.php on line 170

Warning: getimagesize([path]/dbtech/gallery/images/upload/1/8/thumb/25_1374002045.jpg) [function.getimagesize]: failed to open stream: No such file or directory in [path]/dbtech/gallery/hooks/forumhome_complete.php on line 170

Warning: getimagesize([path]/dbtech/gallery/images/upload/1/8/thumb/60_1379356921.jpg) [function.getimagesize]: failed to open stream: No such file or directory in [path]/dbtech/gallery/hooks/forumhome_complete.php on line 170

Warning: getimagesize([path]/dbtech/gallery/images/upload/1/8/thumb/63_1379356921.jpg) [function.getimagesize]: failed to open stream: No such file or directory in [path]/dbtech/gallery/hooks/forumhome_complete.php on line 170

Warning: getimagesize([path]/dbtech/gallery/images/upload/1/8/thumb/59_1379356921.jpg) [function.getimagesize]: failed to open stream: No such file or directory in [path]/dbtech/gallery/hooks/forumhome_complete.php on line 170


(the RANDOM IMAGE GALLERY shows, but with a few broken images)...... the FORUMS page shows the gallery with broken images, but NOT the error messages. Some times the images show and sometimes they do not. But again it is always different images and they are not always broken

I attempted the above suggestion (ACP->Gallery->Maintenance->Remove Orphan DB Entries) it made no change

Menno11 09-18-2013 06:41 AM

Hi,

great mod.thx

Bentmoron 10-01-2013 07:42 AM

Hi there,
I'm running vBulletin 4.2.1 and trying to get DBTech Gallery 1.2.9 to work. It install fine, but when I go to upload an image, I get the following error:
Code:

Warning: mkdir() [function.mkdir]: SAFE MODE Restriction in effect. The script whose uid/gid is 221228/221228 is not allowed to access [path]/dbtech/gallery/images/upload/1/1 owned by uid/gid 25000/25000 in [path]/dbtech/gallery/includes/class_core.php on line 1203

Warning: copy() [function.copy]: Unable to access dbtech/gallery/images/upload/1/1/thumb/index.html in [path]/dbtech/gallery/includes/class_core.php on line 1220

Warning: copy(dbtech/gallery/images/upload/1/1/thumb/index.html) [function.copy]: failed to open stream: No such file or directory in [path]/dbtech/gallery/includes/class_core.php on line 1220

Warning: mkdir() [function.mkdir]: SAFE MODE Restriction in effect. The script whose uid/gid is 221228/221228 is not allowed to access [path]/dbtech/gallery/images/upload/1/1 owned by uid/gid 25000/25000 in [path]/dbtech/gallery/includes/class_core.php on line 1228

Warning: copy() [function.copy]: Unable to access dbtech/gallery/images/upload/1/1/wm/index.html in [path]/dbtech/gallery/includes/class_core.php on line 1245

Warning: copy(dbtech/gallery/images/upload/1/1/wm/index.html) [function.copy]: failed to open stream: No such file or directory in [path]/dbtech/gallery/includes/class_core.php on line 1245

Warning: mkdir() [function.mkdir]: SAFE MODE Restriction in effect. The script whose uid/gid is 221228/221228 is not allowed to access [path]/dbtech/gallery/images/upload/1/1 owned by uid/gid 25000/25000 in [path]/dbtech/gallery/includes/class_core.php on line 1253

Warning: copy() [function.copy]: Unable to access dbtech/gallery/images/upload/1/1/full/index.html in [path]/dbtech/gallery/includes/class_core.php on line 1270

Warning: copy(dbtech/gallery/images/upload/1/1/full/index.html) [function.copy]: failed to open stream: No such file or directory in [path]/dbtech/gallery/includes/class_core.php on line 1270

Warning: mkdir() [function.mkdir]: SAFE MODE Restriction in effect. The script whose uid/gid is 221228/221228 is not allowed to access [path]/dbtech/gallery/images/upload/1/1 owned by uid/gid 25000/25000 in [path]/dbtech/gallery/includes/class_core.php on line 1203

Warning: copy() [function.copy]: Unable to access dbtech/gallery/images/upload/1/1/thumb/index.html in [path]/dbtech/gallery/includes/class_core.php on line 1220

Warning: copy(dbtech/gallery/images/upload/1/1/thumb/index.html) [function.copy]: failed to open stream: No such file or directory in [path]/dbtech/gallery/includes/class_core.php on line 1220

Warning: mkdir() [function.mkdir]: SAFE MODE Restriction in effect. The script whose uid/gid is 221228/221228 is not allowed to access [path]/dbtech/gallery/images/upload/1/1 owned by uid/gid 25000/25000 in [path]/dbtech/gallery/includes/class_core.php on line 1228

Warning: copy() [function.copy]: Unable to access dbtech/gallery/images/upload/1/1/wm/index.html in [path]/dbtech/gallery/includes/class_core.php on line 1245

Warning: copy(dbtech/gallery/images/upload/1/1/wm/index.html) [function.copy]: failed to open stream: No such file or directory in [path]/dbtech/gallery/includes/class_core.php on line 1245

Warning: mkdir() [function.mkdir]: SAFE MODE Restriction in effect. The script whose uid/gid is 221228/221228 is not allowed to access [path]/dbtech/gallery/images/upload/1/1 owned by uid/gid 25000/25000 in [path]/dbtech/gallery/includes/class_core.php on line 1253

Warning: copy() [function.copy]: Unable to access dbtech/gallery/images/upload/1/1/full/index.html in [path]/dbtech/gallery/includes/class_core.php on line 1270

Warning: copy(dbtech/gallery/images/upload/1/1/full/index.html) [function.copy]: failed to open stream: No such file or directory in [path]/dbtech/gallery/includes/class_core.php on line 1270

Warning: imagejpeg() [function.imagejpeg]: Unable to access [path]/dbtech/gallery/images/upload/1/1/thumb/14_1380616891.jpg in [path]/dbtech/gallery/includes/class_core.php on line 936

Warning: imagejpeg() [function.imagejpeg]: Invalid filename in [path]/dbtech/gallery/includes/class_core.php on line 936

Warning: imagejpeg() [function.imagejpeg]: Unable to access [path]/dbtech/gallery/images/upload/1/1/full/14_1380616891.jpg in [path]/dbtech/gallery/includes/class_core.php on line 936

Warning: imagejpeg() [function.imagejpeg]: Invalid filename in [path]/dbtech/gallery/includes/class_core.php on line 936

Warning: filesize() [function.filesize]: Unable to access [path]/dbtech/gallery/images/upload/1/1/full/14_1380616891.jpg in [path]/dbtech/gallery/includes/class_core.php on line 815

Warning: filesize() [function.filesize]: stat failed for [path]/dbtech/gallery/images/upload/1/1/full/14_1380616891.jpg in [path]/dbtech/gallery/includes/class_core.php on line 815

Warning: filesize() [function.filesize]: Unable to access [path]/dbtech/gallery/images/upload/1/1/thumb/14_1380616891.jpg in [path]/dbtech/gallery/includes/class_core.php on line 816

Warning: filesize() [function.filesize]: stat failed for [path]/dbtech/gallery/images/upload/1/1/thumb/14_1380616891.jpg in [path]/dbtech/gallery/includes/class_core.php on line 816

I can't turn Safe Mode off; is there a way to fix this?

SLY LS1 10-01-2013 03:45 PM

Quote:

Originally Posted by acmalin927 (Post 2436938)
any way to remove the

Camera Make
Camera Model
Aperture
ISO
Image Date


from the edit section?

I simply don't need it for the type of photos my members update...

THANKS

I would also like to remove this information?

It would be good if there was an option to display this or not to display this, as a lot of forums people don't really care about that info.

Cheers

SLY LS1 10-01-2013 04:29 PM

Quote:

Originally Posted by acmalin927 (Post 2436938)
any way to remove the

Camera Make
Camera Model
Aperture
ISO
Image Date


from the edit section?

I simply don't need it for the type of photos my members update...

THANKS

Found it, to remove this info from the display

go to file /dbtech/gallery/modules/gallery/actions/view_image.php

From Approx Line Number 374 to 406 and remove the code below

Cheers

Code:

//Get Image exif data
$cam_info_array = unserialize($image_data['custom_data']);

if ($cam_info_array['Make'] != '')
{
        $camera_info['make']        = $cam_info_array['Make'];
}

if ($cam_info_array['Model'] != '')
{
        $camera_info['model']        = $cam_info_array['Model'];
}

if ($cam_info_array['aperture'] != '')
{
        $camera_info['aperture']        = $cam_info_array['aperture'];
}

if ($cam_info_array['ISO'] != '')
{
        $camera_info['iso']                = $cam_info_array['ISO'];
}

if ($cam_info_array['DateTime'] != '')
{
        $unix_date = strtotime($cam_info_array['DateTime']);
        $camera_info['cam_date']        = vbdate($vbulletin->options['dateformat'], $unix_date, true) . ' ' . vbdate($vbulletin->options['timeformat'], $unix_date, true);
}

$templater = vB_Template::create('dbtech_gallery_view_image_cam_info');
        $templater->register('camera_info'                , $camera_info);
        $templater->register('template_hook'        , $template_hook);
$cam_info_data = $templater->render();


crazyboy1661 10-03-2013 11:41 AM

thanks DragonByte Tech. I have installed this mod on my site. The concept is great. But It doesn't suits my requirements.

So, I decided to uninstall it. But when I tried to delete the files from my root folder, I can't enter either into admin panel or open the site. Just getting a blank pages. After restored all the deleted files to the root again, then my site is working.

Pls guide me how to uninstall it.

jjohns12 10-04-2013 05:13 PM

Nice mod Thanks

Davey-UK 10-05-2013 08:22 PM

I'm seriously thinking of buying the pro version of this mod, but am a little bit wary of transferring my 2000 or so images from my standard vbulletin gallery into it.
The reason being that vB4 is nearly at the end of its life, and vB5 will be the next step.
My question is, will this mod be compatible, and will it allow for images to be put back into the standard vBulletin user galleries in the future if need be?
Thankyou:up:

edunite 10-21-2013 08:52 PM

Hi

I installed it on vb4.2.2 and there are no errors so far. Couple of Q's

1. Can this option be changed in the lite version? Max Upload Size 24M

2. Can this footer be disabled/edited? It is longer than the vbulletin copyright footer!

Image Gallery provided by DragonByte Gallery v1.2.8 (Lite) -
vBulletin Mods & Addons Copyright © 2013 DragonByte Technologies Ltd.

I have selected yes to "(Lite) Disable "Runs best on HiVelocity Hosting" Link" but it still appears.

Thanks

katie hunter 11-02-2013 01:18 AM

Hi Dylan I've installed it but i can't seem to locate the gallery url.

Also it is causing my forum style to break.

Edit: See below.

I really hope future mods doesn't alter tables heavily like this because it locks table and takes around 30 min to import or uninstall for big sites.

katie hunter 11-02-2013 03:12 AM

I really want to uninstall your mod and now i can't.

Code:

Database error in vBulletin 4.2.1:

Invalid SQL:

                                        SELECT
                                                gi.*,
                                                gin.shortname
                                        FROM dbtech_gallery_images gi
                                        LEFT JOIN dbtech_gallery_instances gin ON gi.instanceid = gin.instanceid
                                        LEFT JOIN dbtech_gallery_albums ga ON gi.albumid = ga.albumid
                                        WHERE
                                                gi.instanceid IN (1) &&
                                                gi.approved        = 1 &&
                                                gi.deleted        = 0 &&
                                                ((gi.albumid = 0) || ((ga.hidden = 0) && (ga.password = '')) || (gi.userid = 1)) &&
                                                gi.is_flash        = 0
                                        ORDER BY
                                                gi.dateline DESC
                                        LIMIT
                                                0, 5;

MySQL Error  : Table 'nihonoma_forum.dbtech_gallery_images' doesn't exist
Error Number  : 1146
Request Date  : Friday, November 1st 2013 @ 11:12:14 PM
Error Date    : Friday, November 1st 2013 @ 11:12:14 PM

Uninstalling xml gave me this error ^

Then after i deleted all the files which belongs to this mod, i get a blank page on my site, can't see anything.

Edit: I've re-uploaded the gallery files again but not importing the xml, now i can see the site instead of a blank page but i want to delete the files, i don't want it on my server. I think if i deleted the files again, i will get a blank page.

What should i do ?

I don't want to try install and uninstall the xml product again, it locks my table and takes 30+ min to complete and sometimes it fails, my browser gets disconnected.

_________

I've imported the xml again, but i really want to get rid of this modification, it is causing many issues. These are the entire list of the tables that were created after importing the xml. I presume if i uninstall the product, i will get the same db error again?

http://imagetwist.com/utqjtmizrftc/Capture.PNG.html
https://vborg.vbsupport.ru/external/2013/11/26.jpg

What should i do to install this plugin without issues?

Edit: i've installed the xml twice, and override it and now i see the admin side of it and the gallery url etc.. i guess when the table were locked because it alters many things, it did not finish installing completely. This mod looks very risk if i use it and decided to uninstall it in the future, it would cause many problems when it comes to uninstall.

It took 30 min to import the product, then i had to import it again to complete the entire installation. I have no idea what it will do if i try to uninstall it now. what should i do to completely remove it? I am getting db errors like these too

Code:

Database error in vBulletin 4.2.1:

Invalid SQL:

    UPDATE
        dbtech_gallery_images
    SET
        username    = ''
    WHERE
        userid    = 785326;

MySQL Error  : Table 'nihonoma_forum.dbtech_gallery_images' doesn't exist
Error Number  : 1146
Request Date  : Saturday, November 2nd 2013 @ 12:26:10 AM
Error Date    : Saturday, November 2nd 2013 @ 12:26:10 AM
Script        : http://forum.nihonomaru.com/private.php?do=showpm&pmid=704512Referrer      : http://forum.nihonomaru.com/private.php
IP Address    :
Username      : Sun Seto
Classname    : vB_Database
MySQL Version :

I am trying again to uninstall the xml and i receive timeout. It takes around 30+ min to finish and when it happens, i guess because of the time out the product doesn't completely get uninstalled, what should i do ? This is a very heavy mod for big sites and does alter many tables.

katie hunter 11-02-2013 12:15 PM

After uninstall the xml, i get this db error on my site. I want to safely get rid of it completely.

I also see DBtech admin side in my admin cp, it is not gone but all the links to the dbtech admin cp would give DB errors.

Code:

Database error in vBulletin 4.2.1:

Invalid SQL:

                SELECT phrasegroup_dbtech_gallery AS dbtech_gallery
                FROM language
                WHERE languageid = 1;

MySQL Error  : Unknown column 'phrasegroup_dbtech_gallery' in 'field list'
Error Number  : 1054
Request Date  : Saturday, November 2nd 2013 @ 08:13:39 AM
Error Date    : Saturday, November 2nd 2013 @ 08:13:39 AM
Script        : http://forum.nihonomaru.com/


katie hunter 11-02-2013 01:06 PM

Hi, this is what i did after exchanging emails with Fillip (:

Quote:

After you have uninstalled the product, does the product still appear in the list of products?

If not, try opening another plugin and saving it with no changes made.


Regards,

Fillip Hannisdal
Founder & Programming Director
DragonByte Technologies Ltd http://www.DragonByte-Tech.com
Quote:

Hi Filip,

No the product is not there but i see the DBtech gallery in my admin cp on the left side but all do lead to db errors. This is what is happning now after i uninstalled the xml which took like 30+ min and the browser did time out https://vborg.vbsupport.ru/showpost....&postcount=546

Hmm i think now the issue is gone?

What i did is that i enabled one of my disabled mods, and the templates rebuilt, and the DBtech admin side was gone now, i enabled hook again and now i don't see any db errors and deleted the gallery files.
Is this ok now? So nothing related to DBtech gallery is on tables or the server ?

I can access my site now though without db errors, and hook is enable but i have no idea if something hidden here or there.

Thanks.

DragonByte Tech 11-05-2013 11:10 AM

The crux of the issue was that after uninstall, the plugin cache had not been rebuilt by vB, and editing/saving a random other plugin rebuilt the cache and sorted the issue :)


Fillip

snowname 11-11-2013 04:53 AM

I do not show the gallery's link in the navbar. I let user go to the gallery through a link. (abc.com/bbs/dbtgallery.php?gal=qc)

The question is how to add the following menu into dbtech_gallery_home. Data like {vb:raw instance.shortname} & {vb:raw instance.navbar_title} are empty. How to register them?

Code:

<a class="navtab" href="{vb:raw file_link}?gal={vb:raw instance.shortname}">{vb:raw instance.navbar_title}</a>
        <ul class="floatcontainer">
                <li><a href="{vb:raw file_link}?do=main&amp;gal={vb:raw instance.shortname}" title="{vb:rawphrase dbtech_gallery_nav_main}">{vb:rawphrase dbtech_gallery_nav_main}</a></li>

                <vb:if condition="$instance[user_can_add_cat11]">
                <li><a href="{vb:raw file_link}?do=add_category&amp;gal={vb:raw instance.shortname}" title="{vb:rawphrase dbtech_gallery_nav_add_category}">{vb:rawphrase dbtech_gallery_nav_add_category}</a></li>
                </vb:if>

                <vb:if condition="$instance[user_can_add_album]">
                <li><a href="{vb:raw file_link}?do=add_album&amp;gal={vb:raw instance.shortname}" title="{vb:rawphrase dbtech_gallery_nav_add_album}">{vb:rawphrase dbtech_gallery_nav_add_album}</a></li>
                </vb:if>

                <vb:if condition="$instance[user_can_upload]">
                <li><a href="{vb:raw file_link}?do=add_image&amp;gal={vb:raw instance.shortname}" title="{vb:rawphrase dbtech_gallery_nav_upload}">{vb:rawphrase dbtech_gallery_nav_upload}</a></li>

                <li><a href="{vb:raw file_link}?do=profile&amp;gal={vb:raw instance.shortname}" title="{vb:rawphrase dbtech_gallery_nav_my_profile}">{vb:rawphrase dbtech_gallery_nav_my_profile}</a></li>

                <li><a href="{vb:raw file_link}?do=add_prof_image&amp;gal={vb:raw instance.shortname}" title="{vb:rawphrase dbtech_gallery_nav_add_prof_img}">{vb:rawphrase dbtech_gallery_nav_add_prof_img}</a></li>
                </vb:if>
        </ul>

The reason I do this is because if I do not show the gallery's link in the navbar, I can not find out how to let user add album and images.

snowname 11-12-2013 06:35 PM

I noticed all my forum's link is changed after installing the add-on. Is it normal?

before it is:
/bbs/forumdisplay.php?8

now it is:
/bbs/forumdisplay.php?8#.UoKDxfmbO2U

DragonByte Tech 11-12-2013 06:50 PM

Is it using the same anchor for every link?

Fillip

snowname 11-13-2013 02:50 AM

No. It is not the same. It always starts with #.Uo

snowname 11-13-2013 03:06 AM

Modular layout so each instance can have it's own look and feel
=> can you give me an example? Can I remove the left side column in the gallery homepage for one instance?

Zoul 11-13-2013 08:31 AM

Hello

Is it possible to make the image scroll function "Automatic Deployment"
=> {Vb: raw gallery_fh} on pages other than the forumhome?

option that seems essential to me

thank you

DragonByte Tech 11-13-2013 03:40 PM

Quote:

Originally Posted by snowname (Post 2460299)
No. It is not the same. It always starts with #.Uo

I don't think that's related to this mod, though I'll wait for Dylan to answer it anyway :)


Fillip

snowname 11-14-2013 02:39 PM

Sorry. It is not because of this mod, it is because I added "addthis" to my page, that cause the problem.

Quote:

Originally Posted by DragonByte Tech (Post 2460434)
I don't think that's related to this mod, though I'll wait for Dylan to answer it anyway :)


Fillip


andyv72 11-19-2013 03:01 AM

youtube...

Fatal error: Call to a member function children() on a non-object in /var/www/******/html/dbtech/gallery/includes/class_core.php on line 367

andyv72 11-20-2013 01:49 PM

has no one an idea to remove this error ???

cicudaf 11-23-2013 07:02 AM

1 Attachment(s)
Hi,

When I upload big images, the layout looks broken (see attached picture). I mention that "Resize Images?" is set on YES.
Where can I edit the resizing dimensions so the images can fit the layout well?

Thanks in advance!

effsane 12-06-2013 11:57 AM

comment system language not working.

not work utf-8.


All times are GMT. The time now is 04:54 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.02217 seconds
  • Memory Usage 1,923KB
  • 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
  • (10)bbcode_code_printable
  • (4)bbcode_php_printable
  • (16)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