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)
-   -   vBindex v3.0.0 RC5 (https://vborg.vbsupport.ru/showthread.php?t=59524)

NTLDR 03-20-2004 08:27 PM

Quote:

Originally Posted by MindTrix
My installation messed up part way through but it seems to be working ok, except i cannot see the vbioptions.php as i get a database error. I think it mght be because it did not run the code for that section so is there any chance of gettin the code

The vBindex Options won't work untill the install process has been finished correctly. Take a look at the error and the query(s) to correct it will probably be in upgrade.php/upgrade1.php

vBindex 3.0.0 RC4 should be out next week which will have better support for re-installing.

MindTrix 03-20-2004 08:29 PM

i was installing it on GOLDcant get the errors now because i closed the window. Everything else works apart from that.

neocorteqz 03-20-2004 08:30 PM

Quote:

Originally Posted by paul_r
The problem i'm having is the images and link.

i've followed the walkthrough and everything went fine the templates are default ones so i used the html code from the zip file.
ran the installer and it created all the tables fine, except for the last bit the readme says.



Click next step and follow the instructions on screen. Eventually you'll get to a step near the end when you have to update your image paths. Make sure you edit these to make sure that the images on vBindex show correctly. If your button images are at http://www.mydomain.com/forums/images/buttons you would either enter that URL or /forums/images/buttons for that sepcific loaction.



But i didn't get this after it made it's last table the next screen was a 404 error

also this bit i'm confused on


A number of vBulletin templates need to be edited to make sure that the JavaScript and navbar links work correctly. (See the install instructions for details of example default templates that will work).
The following HTML tags should be checked and edit to have $vboptions[bburl]/ placed in front of the filename (e.g. login.php would become /login.php):

<form>
<a>
<script>

I have not a clue where to find these ?

The VBINDEX is there in the control panel drop down boxes and radio buttons bt no images i take it this is linked to the IMAGE path problem.

If you take a look at your navbar template (Navigation / Breadcrumb Templates)

anything with a <a>, <form>, or <script> tag

ie.
Code:

                <a href="/register.php?$session[sessionurl]">$vbphrase[register]</a></td>
Code:

<form action="/login.php" method="post" onsubmit="md5hash(vb_login_password,vb_login_md5password)">
Code:

<script type="text/javascript" src="/clientscript/vbulletin_md5.js"></script>
you will need to edit these to add the '$vboptions[bburl]'

so it will look something like this

Code:

a href="$vboptions[bburl]/register.php?$session[sessionurl]">$vbphrase[register]</a></td>
If i recall correctly, there is a step in there to add phrases.

as for the images, i'll look at that in a sec

neocorteqz 03-20-2004 08:31 PM

Quote:

Originally Posted by NTLDR
Make sure you have uploaded all the files to the correct locations.



If you have used the templates from thr HTML files then you don't need to do this.


will that work with any template changes with the release of vB 3.0.0 ?

edit: this is working perfectly on the Gold release. :)

NTLDR 03-20-2004 08:37 PM

Quote:

Originally Posted by neocorteqz
will that work with any template changes with the release of vB 3.0.0 ?

edit: this is working perfectly on the Gold release. :)

According to Kier the only template thats changed in vB 3.0.0 (that vBindex uses) is the headinclude template, the following is an edited vB 3.0.0 one incase anyone has problems:

HTML Code:

<meta http-equiv="Content-Type" content="text/html; charset=$stylevar[charset]" />
<meta name="generator" content="vBulletin $versionnumber" />
<meta name="keywords" content="$vboptions[keywords]" />
<meta name="description" content="$vboptions[description]" />

<!-- CSS Stylesheet -->
$style[css]
<if condition="is_browser('opera')">
<style type="text/css">
ul, ol { padding-left:20px; }
</style>
</if>
<!-- / CSS Stylesheet -->

<script type="text/javascript">
<!--
var SESSIONURL = "$session[sessionurl]";
var IMGDIR_MISC = "$stylevar[imgdir_misc]";
// -->

</script>

<script type="text/javascript" src="$vboptions[bburl]/clientscript/vbulletin_global.js"></script>
<if condition="$show['popups']"><script type="text/javascript" src="$vboptions[bburl]/clientscript/vbulletin_menu.js"></script></if>


neocorteqz 03-20-2004 08:48 PM

Quote:

Originally Posted by NTLDR
According to Kier the only template thats changed in vB 3.0.0 (that vBindex uses) is the headinclude template, the following is an edited vB 3.0.0 one incase anyone has problems:

HTML Code:

<meta http-equiv="Content-Type" content="text/html; charset=$stylevar[charset]" />
<meta name="generator" content="vBulletin $versionnumber" />
<meta name="keywords" content="$vboptions[keywords]" />
<meta name="description" content="$vboptions[description]" />

<!-- CSS Stylesheet -->
$style[css]
<if condition="is_browser('opera')">
<style type="text/css">
ul, ol { padding-left:20px; }
</style>
</if>
<!-- / CSS Stylesheet -->

<script type="text/javascript">
<!--
var SESSIONURL = "$session[sessionurl]";
var IMGDIR_MISC = "$stylevar[imgdir_misc]";
// -->

</script>

<script type="text/javascript" src="$vboptions[bburl]/clientscript/vbulletin_global.js"></script>
<if condition="$show['popups']"><script type="text/javascript" src="$vboptions[bburl]/clientscript/vbulletin_menu.js"></script></if>


Not having problems. but thanks. :) I'm sure this will be in the upcoming update. odd, i'm not having problems, yet the $vboptions[bburl] is not anywhere in that template. heh.

edit, is this post bleeding off the table border?? using mozilla.

NTLDR 03-20-2004 08:53 PM

Quote:

Originally Posted by neocorteqz
Not having problems. but thanks. :) I'm sure this will be in the upcoming update. odd, i'm not having problems, yet the $vboptions[bburl] is not anywhere in that template. heh.

edit, is this post bleeding off the table border?? using mozilla.

As your running vBindex in the name directory as the forums then the template edits don't effect you :)

The Quote, Code, HTML and PHP BB Codes seem to have some problems mainly with Mozilla where the text expands past the border for the box its in.

neocorteqz 03-20-2004 09:01 PM

Quote:

Originally Posted by NTLDR
As your running vBindex in the name directory as the forums then the template edits don't effect you :)

The Quote, Code, HTML and PHP BB Codes seem to have some problems mainly with Mozilla where the text expands past the border for the box its in.

ahh, thanks.

paul_r 03-20-2004 09:03 PM

Quote:

Originally Posted by neocorteqz
If you take a look at your navbar template (Navigation / Breadcrumb Templates)

anything with a <a>, <form>, or <script> tag

ie.
Code:

                <a href="/register.php?$session[sessionurl]">$vbphrase[register]</a></td>
Code:

<form action="/login.php" method="post" onsubmit="md5hash(vb_login_password,vb_login_md5password)">
Code:

<script type="text/javascript" src="/clientscript/vbulletin_md5.js"></script>
you will need to edit these to add the '$vboptions[bburl]'

so it will look something like this

Code:

a href="$vboptions[bburl]/register.php?$session[sessionurl]">$vbphrase[register]</a></td>
If i recall correctly, there is a step in there to add phrases.

as for the images, i'll look at that in a sec

right it works fine and bombs out when it trys to import the vbindex templates

is there a way to add these manually ?

its just bombing out at step 6

NTLDR 03-20-2004 09:08 PM

Quote:

Originally Posted by paul_r
right it works fine and bombs out when it trys to import the vbindex templates

If the installer fails to import the templates correctly then use the Upload Style tool in the Admin CP to overwrite your style with the vbindex_templates.xml file. This will add the vBindex templates to your existing style.


All times are GMT. The time now is 01:14 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.02523 seconds
  • Memory Usage 1,771KB
  • 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
  • (8)bbcode_code_printable
  • (2)bbcode_html_printable
  • (9)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