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)

noppid 01-15-2005 08:00 AM

Images in the File system

I worked on putting the images in the file system tonight. I got so far as to be able to store and retrive them. I have to work on the delete tomorrow. So far this does not add any data queries, just one call to mysql_insert_id(). However no queries have been eliminated.

I will do a convert DB images to the file system as well.

Cheers

joeychgo 01-15-2005 07:10 PM

thanks noppid

noppid 01-15-2005 07:46 PM

Images is the file system is ready. I have to do the refining of the code now.

I need to decide a few things.

The main script will run in DB mode or FileSystem mode. How we will choose which is the question. Right now I'm thinking an edit to the main script. A vbgconfig.php is an easy option too.

There will need to be a path to the files and a file prefix set. This is so each of us can have a unique path to our files and sorta hide um. I'm currrently storing the images in a folder set 777 above the web root folder. This too can be a hard edit of the main script or in a new vbgconfig.php file.

Do we want to gz compress the files? This could add over head. The files will need to be ungzcompressed on a retrive and then most likey just gz'd again if we have gz compression on for the site enabled which most of us do.

Moving existing files from the DB to the FS is no problem as far as I can tell, however if anyone has a comment on this it would be welcome.

Please give us feedback on this so we can have the best of the features we need.

cinq 01-16-2005 12:23 AM

Fantastic noppid ! :D

As for the choice, can it be made a vbulletin setting ? ( 'Store images in DB or in File System' for e.g )
But this would probably mean quite a bit of duplicated code in the script, one for DB, the other for file system ?

I am not too concerned about where the images are placed ( as in, if members are able to access them directly ), after all, it is to showcase their images.

I am not familiar with GZcompress, so I do not know what overheads may be present. But as long as it possibly speeds things up, I'm all for it :D

Keep up the good work mate ! :D

drumsy 01-16-2005 12:59 AM

Quote:

Originally Posted by noppid
If I register at your board will I be able to see the user CP page with the link or are you using a test board?

It's live. :)

drumsy 01-16-2005 01:00 AM

I am also curious as to when we might see some display adjustments. The current layout is very barebones.

I'm also hoping someone would release a "multiple car" option. Yes, there are some out there, but no code for public consumption.

drumsy 01-16-2005 01:05 AM

Quote:

Originally Posted by cinq
In response to this :


In /includes/functions_showthread.php
FIND:
Code:

// ###################### Start process_highlight_postbit #######################
function process_highlight_postbit($text, $words, $prepend)

ADD ABOVE:
Code:

###################### FOR GARAGE ICON #######################
function fetch_garageicon($userid)
{
        global $DB_site, $garagecache;
    if (!is_array($garagecache))
      {
      $garagecache = array();
      $garage = $DB_site->query
                ("
        SELECT gu.userid, user.userid
        FROM " . TABLE_PREFIX ."vbgarage_users AS gu
        LEFT JOIN " . TABLE_PREFIX ."user AS user ON gu.userid = user.userid
        ");

        while($garagequeryarray = $DB_site->fetch_array($garagequery))
        {
          $garagecache["$garagequeryarray[userid]"] = $garagequeryarray;
        }

              $DB_site->free_result($garagequery);
          }

        if($garageinfo = $garagecache[$userid])
          {
          if ($garageinfo[userid])
                  {
                return "$stylevar[imgdir_misc]/viewgarage.gif";
                        }
          }
          return FALSE;
      }
###################### FOR GARAGE ICON #######################

SAVE AND UPLOAD THE FILE

In showthread.php in the root directory of your forums.
FIND:
Code:

$post['attachments'] = &$postattach["$post[postid]"];
ADD BELOW:
Code:

###################### FOR GARAGE ICON #######################
$post['garage'] = fetch_garageicon($post[userid]);
###################### FOR GARAGE ICON #######################

SAVE AND UPLOAD THE FILE


Now in your postbit template ( or postbit_legacy, whichever you are using )
Just add this whereever you want the icon image to show:
Code:

<if condition="$post[garage]">
<br><div><a href="$vboptions[bburl]/vbgarage.php?do=list&userid=$post[userid]" target="_blank">$post[garage]</a>
<br /></div></if>

Lastly, upload your image into your forum images directory, in the MISC folder.

NOT TESTED but it should work. Do feedback for any errors and I will amend the errors accordingly. Would be good if this post can be linked in the hack post under the modifications/addons bit.

Hope this helps :)

cinq,

what modifications can I make to your edits that would allow me to use text, rather than an image? Perhaps in the dropdown box when a username is clicked that will say "View User's Garage," but only if that user has a garage.

kenji4861 01-16-2005 10:06 AM

Thanks a lot for this Magnus. I made some changes, but works great! I hope my users will love it too.

http://www.spoofee.com/forums/vbgarage.php

speedracer68 01-17-2005 03:34 AM

Quote:

Originally Posted by noppid
Did you use the 3.0.5 update?

Noppid, I instaled vBGarage v3.1.1

V8Owner 01-17-2005 09:15 AM

Quote:

Originally Posted by noppid
I see what ya want. Currently a group is either in or out and guests are supposed to be out, but they aint. I'm not really sure what's going on.

There is no granular groups by group way to display the garage currently that I can tell.

could anyone suggest a way to set up security such that only nominated groups have access to view as well?


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