Exel's vBulletin Support Thread. (Free)

Status
Not open for further replies.

Exel

Active Member
2,074
2008
543
130
I see a lot of people here asking simple questions with relatively simple answers, and people offer to help, but request money for it. So.. here I am, I'm not the best coder in the world, but I know my way around vBulletin, so I'm here to offer my services. I can help modify skins, fix issues, find mods, etc. All I ask of you is a thanks, donations are always nice but not required.

So, as long as you give me a detailed description of what you want, with proper info, I'm here to help. :) <3

Hopefully some people can vouch for me if you're scared I'm going to take over your site. >.> I've been a member here for a while now and would like to give back to the community.

tWSla6L.png
 
Last edited by a moderator:
158 comments
Is JSON installed on your server (you can check this via AdminCP > Maintenance > View PHP Info). Also, run the 'TLS/SSL' check from within AdminCP > Maintenance > Diagnostics?​
 
what about this problem
i have problem in User Profile Fields/ about me section
1e551d6908.png

this error display in all skins
any clue how to fix this
iam using 3.8.7 patch level2
 
in profile view every thing is fine but in about me section all fields display like above i delete all custome fields and make again then new made fields didnt display only loction fields but empty even i put country name default fields aslo dont show input
 
Last edited:
Hello can u help me to add another search-bar to my Navbar ?

[slide]http://i2.lulzimg.com/8d78fa713d.png[/slide]

thank you i will be waiting for answer
 
Code:
<form id="searchfunction" style="margin: 0px; padding: 0px;" action="search.php?do=process" method="post">

<input type="hidden" name="do" value="process" />
<input type="hidden" name="quicksearch" value="1" />
<input type="hidden" name="childforums" value="1" />
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />

<input maxlength="100" name="query" style="border: 1px solid white; color: #0089AF; font-family: Arial, Helvetica, sans-serif; width: 200px; height: 15px; font-size: 11px; font-weight: bold; padding-top: 2px; padding-bottom: 2px; background: #ffffff;" value="" />

<input type="submit" value="Search" name="Search" />

</form>

Add this to the navbar around that other search code, I'm not sure if it'll work on vB4, but it works fine on vB3.
 
Code:
<form id="searchfunction" style="margin: 0px; padding: 0px;" action="search.php?do=process" method="post">

<input type="hidden" name="do" value="process" />
<input type="hidden" name="quicksearch" value="1" />
<input type="hidden" name="childforums" value="1" />
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />

<input maxlength="100" name="query" style="border: 1px solid white; color: #0089AF; font-family: Arial, Helvetica, sans-serif; width: 200px; height: 15px; font-size: 11px; font-weight: bold; padding-top: 2px; padding-bottom: 2px; background: #ffffff;" value="" />

<input type="submit" value="Search" name="Search" />

</form>
Add this to the navbar around that other search code, I'm not sure if it'll work on vB4, but it works fine on vB3.

i am trying to replace second search-bar with google search i will try if not please help me bro 8-)

thanks
 
Take a look at this; http://i.imgur.com/LvSas.png

This mod assumes you have an adsense account and are using Google Custom Search.

You want to make sure your results page is named something other than the vb default search.php, this leaves the vb option open to those who click "advanced search"

Open your template navbar


find
PHP Code:
<form action="search.php?do=process" method="post" id="navbar_search">


replace with the form line of the google supplied code
example:
PHP Code:
<form action="http://www.ahfb2000.com/google.php" id="cse-search-box">



find
PHP Code:
<input type="hidden" name="s" value="{vb:raw session.sessionurl}" />
<
input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
<
input type="hidden" name="do" value="process" />


replace with the first 3 hidden input types in your google code
example:
PHP Code:
<input type="hidden" name="cx" value="partner-pub-xxxxxxxxxxxxxxxxxxxxxxx" />
<
input type="hidden" name="cof" value="FORID:10" />
<
input type="hidden" name="ie" value="ISO-8859-1" />



find
PHP Code:
<input type="text" value="" name="query" class="textbox" />


replace with
PHP Code:
<input type="text" value="" name="q" class="textbox" />



find
PHP Code:
<input type="image" class="searchbutton" src="{vb:stylevar imgdir_button}/search.png" name="submit" onclick="document.getElementById('navbar_search').submit;" />


replace with
PHP Code:
<input type="image" class="searchbutton" src="{vb:stylevar imgdir_button}/search.png" name="sa" onclick="document.getElementById('navbar_search').submit;" />



find
PHP Code:
</form>


add this after
PHP Code:
<script type="text/javascript" src="http://www.google.com/cse/brand?form=cse-search-box&amp;lang=en"></script>
 
Are you sure you edited your config.php right?

That is..

// ****** DATABASE NAME ******


// ****** TABLE PREFIX ******

// ****** MASTER DATABASE USERNAME & PASSWORD ******

Usually the only things you need to edit, table prefixes aren't usually there, either, but just incase.

Seems like you didn't input a password for the db?

flVHz.png
 
[SLIDE]http://i.imgur.com/flVHz.png[/SLIDE]

Interesting, I believe it's a custom modification, but I'll look into it!
 
Last edited:
Are you sure you edited your config.php right?

That is..

// ****** DATABASE NAME ******


// ****** TABLE PREFIX ******

// ****** MASTER DATABASE USERNAME & PASSWORD ******

Usually the only things you need to edit, table prefixes aren't usually there, either, but just incase.

Seems like you didn't input a password for the db?

flVHz.png


i never used VB so i don't really know about it

Could u plz take a look at my config.php man..

http://pastebin.com/X1ZQkgpU
 
Status
Not open for further replies.
Back
Top