hello,
I'm with trouble with some templates using vaultWiki
1. headers
2. forum display - in some styles
with error
without error [default style]
How can I fix this?
All the best
joao barroca
aka beduino
hello,
I'm with trouble with some templates using vaultWiki
1. headers
2. forum display - in some styles
with error
without error [default style]
How can I fix this?
All the best
joao barroca
aka beduino
1. In vault/special_plugins_forumdisplay.php, find:
Replace with:PHP Code:
$save['outer'] = $stylevar['outertablewidth'];
Find:PHP Code:
$save['outer'] = $show['old_explorer'] ? $stylevar['outertablewidth'] : $stylevar['outerdivwidth'];
$stylevar[$show['old_explorer'] ? 'outertablewidth' : 'outerdivwidth'] = '100%';
Replace with:PHP Code:
$stylevar['outertablewidth'] = $save['outer'];
PHP Code:
if ($show['old_explorer'])
{
$stylevar['outertablewidth'] = $save['outer'];
}
else
{
$stylevar['outerdivwidth'] = $save['outer'];
}
- lead developer for VaultWiki
2. You need to look into the Display Order 0 / Display in Forum workaround described in the Namespace Tutorial.
- lead developer for VaultWiki
thanks pegasus
I will read and try
But ... the question of headers [first issue], any suggestion?
* I try change the css but I don't fix the width of header section
all the best
joao barroca
Did you try the file edits I posted?
- lead developer for VaultWiki
Hi Pegasus
I've try edit but I can't find this pieces of codes in this php !
*sorry, I probably need change my glasses ...
You can tell me in which line I need edit???
Really sorry the inconvenience
all the best
and tks in advance
barroca
The lines mentioned only appear in the newest version 2.2.0.
- lead developer for VaultWiki
Hello Pegasus
I make the upgrade of vaultWiki and change the code in php file .
Unfortunately don't works
See in
What I can do now?
Tks in advance
joao barroca
Last edited by beduino; February 10, 2009 at 4:57 PM.
What are your settings for the "Sizes and Dimensions" section in your style?
- lead developer for VaultWiki
Hello
my default style have this ...
http://picasaweb.google.com.br/lh/ph...eat=directlink
all the best
joao
I don't know if you see the image ... then size and dimension = 880
tks
I see it. I will be trying out these settings today.
- lead developer for VaultWiki
Oh, since I was unable to duplicate this now, I realized I didn't list all of the file edits earlier. I edited the post on the previous page now. The first edit has been changed.
- lead developer for VaultWiki
This has nothing to do with this change. This file is never called on the profile. Since you are using vBulletin blog, it's likely you are using 2.0.1. In 2.0.1, Jelsoft fixed a bug that made it incompatible in earlier versions, however, we had already implemented a workaround that their fix in turn broke. This should not be causing a 500 error, but an error nevertheless.
In vault/special_plugins_online.php, find:
Replace with:PHP Code:
$vbulletin->products['vbblog']
PHP Code:
$vbulletin->products['vbblog'] AND file_exists(DIR . '/includes/blog_plugin_online.php')
- lead developer for VaultWiki
Bookmarks