vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   vBGarage v3.1.1 (now with GD-Lib support!) (https://vborg.vbsupport.ru/showthread.php?t=63681)

White Knight 04-22-2004 06:16 PM

Quote:

Originally Posted by magnus
Just an update. v3.2.0 is coming along nicely. There's much more AdminCP control over how vBGarage acts now. I'm also devising a variable template engine, which will sort of allow you to design HOW you want the users detail input to be displayed. The template will be populated by the users input, rather than having the user design the "template" themselves, as they do now.

I'm also considering making some of the variables more 'global', so you can call them rather easily from other portions of the site. For instance, if you wanted to call the "Latest Uploads" from FORUMHOME, etc. Though, this is secondary, at the moment. :)

Oh, and there is definately going to be a need for database restructuring in v3.2.0. I'm hoping I can devise a "migration"-type script. Otherwise, there's going to be a little (read: repititious/tedious) work involved for the admin (read: YOU!). :)

If anyone here is a SQL genius, and would like to help with this migration-script, shoot me a PM. I'm decent with SQL, but by no means do I know it inside and out (yet).

Well I am glad I dropped by to see how this is coming along.. Good work my friend. I for one am still running my customized Sportbike version with no problems at all.

I just had a thought.. if your going to have it so people can design how it looks for people.. maybe a search engine in this would be nice.. so there location being in IL can be found or FL or so on.. Just a idea.. dont know how hard it would be to add in. This way there can be a "Owners Registry" intergrated with it.

Keep up the good work my friend.. top notch

GoTTi 04-23-2004 04:08 AM

when viewing the garage, instead of clicking on a thumbnail and it going to the users garage, can this link be made to popup the image?

also, this is a big step to a photo gallery for vb. anyway to make this a official gallery, instead of a car garage...with maybe editing the informtion that is inputed on images, changing the upload area through the user cpanel.

also, can multiple images be uploaded @ once instead of 1 @ a time.

also, doing "vbgarage.php?do=view&id=1" or any users garage, the pictures are aligned right, is there a way to just make them center when not having text in the "Text"field.

The ideas/throughts i got here are to make this more of a gallery for users...

magnus 04-23-2004 10:04 AM

Quote:

Originally Posted by Da_GoTTi
when viewing the garage, instead of clicking on a thumbnail and it going to the users garage, can this link be made to popup the image?

also, this is a big step to a photo gallery for vb. anyway to make this a official gallery, instead of a car garage...with maybe editing the informtion that is inputed on images, changing the upload area through the user cpanel.

also, can multiple images be uploaded @ once instead of 1 @ a time.

also, doing "vbgarage.php?do=view&id=1" or any users garage, the pictures are aligned right, is there a way to just make them center when not having text in the "Text"field.

The ideas/throughts i got here are to make this more of a gallery for users...

The answer to everything you asked is, yes. As I've stated before, over and over ad nauseum, this is completely template and phrase based. You can make it look and act almost however you feel like. It's just a simple matter of designing the templates differently.

Envy-UK 04-23-2004 10:08 AM

Any plans to have the images use GD 1.6 to display?

Is there a way around using GD 2.0 (other than simply using a scaled down version of the image)?

My host are taking their time to upgrade.

magnus 04-23-2004 11:16 AM

Quote:

Originally Posted by Envy-UK
Any plans to have the images use GD 1.6 to display?

Is there a way around using GD 2.0 (other than simply using a scaled down version of the image)?

My host are taking their time to upgrade.

In vbgarage.php, replace all instances of [high]CreateImageTrueColor[/high] with [high]CreateImage[/high].

GoTTi 04-23-2004 05:35 PM

2 things:

1. i would like to just have it where users can upload image, removing the required fields in the "vbgarage.php?do=editgarage", how can i do this?

2. when viewing "vbgarage.php?do=list", be better if the thumbnails on here would be made to do the popup to the image instead of going to the uploaders gallery. how can this be done.

magnus 04-23-2004 09:25 PM

Quote:

Originally Posted by Da_GoTTi
2 things:

1. i would like to just have it where users can upload image, removing the required fields in the "vbgarage.php?do=editgarage", how can i do this?

2. when viewing "vbgarage.php?do=list", be better if the thumbnails on here would be made to do the popup to the image instead of going to the uploaders gallery. how can this be done.

https://vborg.vbsupport.ru/showpost....&postcount=513

eoc_Jason 04-24-2004 12:48 AM

Here's a way to do the thumbnails using vB's function for creating the thumbnails in threads... You have to write a temp file for the image function to work from, not a big deal... I used all the vB variables for the temp directory and such.

Code:

                if (!empty($_FILES['src']['tmp_name'])) {
                        require_once('./includes/functions_image.php');

                        $name = $_FILES['src']['name'];
                        $data = addslashes(fread(fopen($_FILES['src']['tmp_name'], "r"), filesize($_FILES['src']['tmp_name'])));
                        $type = $_FILES['src']['type'];

                        $filename = tempnam(ini_get('upload_tmp_dir'), 'tmpimg');
                        $fp = @fopen($filename, 'wb');
                        @fwrite($fp, stripslashes($data));
                        @fclose($fp);

                        $attachment[tmp_name] = $filename;
                        $attachment[name] = $name;
                        $thumb = addslashes(fetch_thumbnail_from_image($attachment,$imageerror));
                        @unlink($filename);
// insert into DB table here...
                }


dede1 04-24-2004 06:16 AM

@magnus

I have from vB 3.0.0 to vB 3.0.1 update now get I this error message and can
however nothing find:

Fatal error: Call to undefined function: can_administer() in /var/www/html/Board/vbgarage.php on line 50

Envy-UK 04-24-2004 07:44 AM

Quote:

Originally Posted by eoc_Jason
Here's a way to do the thumbnails using vB's function for creating the thumbnails in threads... You have to write a temp file for the image function to work from, not a big deal... I used all the vB variables for the temp directory and such.

Code:

                if (!empty($_FILES['src']['tmp_name'])) {
                        require_once('./includes/functions_image.php');

                        $name = $_FILES['src']['name'];
                        $data = addslashes(fread(fopen($_FILES['src']['tmp_name'], "r"), filesize($_FILES['src']['tmp_name'])));
                        $type = $_FILES['src']['type'];

                        $filename = tempnam(ini_get('upload_tmp_dir'), 'tmpimg');
                        $fp = @fopen($filename, 'wb');
                        @fwrite($fp, stripslashes($data));
                        @fclose($fp);

                        $attachment[tmp_name] = $filename;
                        $attachment[name] = $name;
                        $thumb = addslashes(fetch_thumbnail_from_image($attachment,$imageerror));
                        @unlink($filename);
// insert into DB table here...
                }


A little more guidance with this would be great. :)


All times are GMT. The time now is 07:42 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.02299 seconds
  • Memory Usage 1,759KB
  • 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
  • (2)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)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