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)
-   -   Add-On Releases - VB Pro Garage Timeslips (https://vborg.vbsupport.ru/showthread.php?t=236888)

Dylanblitz 08-09-2011 07:24 AM

Quote:

Originally Posted by RollaJedi (Post 2223337)
I love this mod, but i dont want it for cars. I run a star wars site where my members collect the toys. I would love to use this mod for them to show off their collections, but there are some things that wouldnt make sense on the adding a new vehicle (collection) and viewing the vehicle (collection) i wish i could take off:

-the color question
-mileage
-purchase date
-no year
-no timeslips
-and just have one of the model/make dropdowns

Is there anyway at all i could do this as maybe a custom non-vehicle garage? I'm not a coder so i dont wanna screw anything up. It would probably be really useful for others like me that want to use this to display a collection.

Thank you!!

Quote:

Originally Posted by RollaJedi (Post 2230890)
any help with my question??

I'm sorry about that, I must have missed it.
You can remove all the fields you mentioned besides the make/model. Those two are tied in too much to remove one without screwing up a lot of stuff. it would be possible only if you tweaked some of the code, kind of messy though.
Timeslips can be turned off through the ACP settings. Garage Page Settings

If you want to give me temp admin I can go in there and remove the fields and change any of the language you want.

thebucky84 08-22-2011 12:13 PM

So i did everything right to the " T ".. but when I import the xml (which loads just fine), I click on my forum homepage and get this meesage:

Warning: require_once([path]/includes/garage_plugin_func.php) [function.require-once]: failed to open stream: No such file or directory in [path]/includes/class_bootstrap.php(517) : eval()'d code on line 84

Fatal error: require_once() [function.require]: Failed opening required '/home/content/68/6995168/html/includes/garage_plugin_func.php' (include_path='.:/usr/local/php5/lib/php') in /home/content/68/6995168/html/includes/class_bootstrap.php(517) : eval()'d code on line 84


once I delete the plugin the site goes back to normal. Any idea?

Dylanblitz 08-22-2011 06:03 PM

Quote:

Originally Posted by thebucky84 (Post 2236535)
So i did everything right to the " T ".. but when I import the xml (which loads just fine), I click on my forum homepage and get this meesage:

Warning: require_once([path]/includes/garage_plugin_func.php) [function.require-once]: failed to open stream: No such file or directory in [path]/includes/class_bootstrap.php(517) : eval()'d code on line 84

Fatal error: require_once() [function.require]: Failed opening required '/home/content/68/6995168/html/includes/garage_plugin_func.php' (include_path='.:/usr/local/php5/lib/php') in /home/content/68/6995168/html/includes/class_bootstrap.php(517) : eval()'d code on line 84



once I delete the plugin the site goes back to normal. Any idea?

It looks like the includes/garage_plugin_func.php file didn't get moved over to the server.
It should be at <your forum directory>/includes/garage_plugin_func.php

thebucky84 08-23-2011 12:18 AM

well i got it to work now. When i click on the garage tab i get this:


Not Found

The requested URL /garage.php was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache Server at xxxxxx.com Port 80



Then when i enter in http://www.mysite.com/vgb/ (the garage.php file is in the sub folder "vgb") under admincp>Settings>options>Garage General Settings>Garage Files URL I get this:



Warning: require_once(./global.php) [function.require-once]: failed to open stream: No such file or directory in /home/content/xx/xxxxxx/html/vbg/garage.php on line 118

Fatal error: require_once() [function.require]: Failed opening required './global.php' (include_path='.:/usr/local/php5/lib/php') in /home/content/xx/xxxxxxx/html/vbg/garage.php on line 118



any clue?

thebucky84 08-23-2011 10:23 PM

bump for help

maupz 08-24-2011 03:39 AM

On line 158 oin garage.php what saids?

Dylanblitz 08-24-2011 06:06 AM

Quote:

Originally Posted by thebucky84 (Post 2236812)
well i got it to work now. When i click on the garage tab i get this:


Not Found

The requested URL /garage.php was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache Server at xxxxxxxx.com Port 80



Then when i enter in http://www.mysite.com/vgb/ (the garage.php file is in the sub folder "vgb") under admincp>Settings>options>Garage General Settings>Garage Files URL I get this:



Warning: require_once(./global.php) [function.require-once]: failed to open stream: No such file or directory in
/home/xxxxhtmlpathxxxx/vbg/garage.php on line 118

Fatal error: require_once() [function.require]: Failed opening required './global.php' (include_path='.:/usr/local/php5/lib/php') in /home/
xxxxhtmlpathxxxx/vbg/garage.php on line 118


any clue?

EDIT:
Oh sorry, just read it again. You also need to update the garage_directory.php file with the absolute path to your forum root.

So open the file and change
PHP Code:

//$forum_directory = 'C:/doc_root/www/domain/forums/'; 

to whatever the path is, something like

PHP Code:

$forum_directory '/home/xxxxhtmlpathxxxx/forums/'

btw, might want to edit the post and remove your domain name and directory structure :)

MotMann 08-24-2011 06:51 AM

Have someone german phrases?

thebucky84 08-24-2011 12:27 PM

Quote:

Originally Posted by Dylanblitz (Post 2237308)
EDIT:
Oh sorry, just read it again. You also need to update the garage_directory.php file with the absolute path to your forum root.

So open the file and change
PHP Code:

//$forum_directory = 'C:/doc_root/www/domain/forums/'; 

to whatever the path is, something like

PHP Code:

$forum_directory '/home/xxxxhtmlpathxxxx/forums/'

btw, might want to edit the post and remove your domain name and directory structure :)

thanks for the heads up! lol


well I've changed the directory already. Line 24

PHP Code:

$forum_directory '/home/account/public_html/forums/'

now there is another line underneath the direcory thats the 'C/doc_root/xxxxxx (sorry at work and obviously cant see my directory file lol) do i need to change that line as well?

I have the directory pointed where I need it to. What exactly do i need to put in the URL block under the garage settings in the admincp?

Dylanblitz 08-24-2011 04:42 PM

Quote:

Originally Posted by thebucky84 (Post 2237406)
thanks for the heads up! lol


well I've changed the directory already. Line 24

PHP Code:

$forum_directory '/home/account/public_html/forums/'

now there is another line underneath the direcory thats the 'C/doc_root/xxxxxx (sorry at work and obviously cant see my directory file lol) do i need to change that line as well?

I have the directory pointed where I need it to. What exactly do i need to put in the URL block under the garage settings in the admincp?

You only needto uncomment the forum directory and modify the variable to the path of your forum.

The Garage URL field should have the url of the garage files. Like http://www.yoursite.com/vgb/


All times are GMT. The time now is 06:28 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.02981 seconds
  • Memory Usage 1,761KB
  • 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
  • (6)bbcode_php_printable
  • (6)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