vBulletin (vB) is a commercial Internet forum software produced by Jelsoft Enterprises and vBulletin Solutions, both subsidiaries of Internet Brands. It is written in PHP and uses a MySQL database server.
0
votes
0answers
50 views
vBulletin 3.8: How to display something from database in postbit?
If I make a new .php page, I can do it easily, just use this:
$result = mysql_query("SELECT something");
$variable = mysql_fetch_row($result)
eval('print_output("' . fetch_template('templatename') . ...
0
votes
2answers
40 views
query is not executed in vbulletin php
I am writing a plugin for vbulletin, which includes creating a new thread - the query below is what I have done. The query runs perfectly in phpmyadmin, but is not executed when ran within the php ...
2
votes
0answers
174 views
adding POST to the SimpleHTTPServer as proxy
UPDATED
I've made simple proxy based on SimpleHTTPServer but i've got problem with POST method when someone is requesting with POST method it show Error so i've made do_POST() function,but when i ...
0
votes
0answers
29 views
Authenticating User Using Cron Job in VBulletin
Can anyone knows how i make user login user using cron job by entering his email and password in my cron file.
Actually i want to send information of user of post which has zero post that is why i am ...
0
votes
1answer
100 views
vbulletin 4 Search doesn't work
We recently upgraded to PHP 5.3 (from 5.2) and MySQL 5.1 (from 5.0) and did a database restore on vbulletin 4 forum. After these search stopped working at all.
No matter what you search, you end up ...
0
votes
2answers
80 views
Replace MySQL values in over 120 tables
We have redirect huge internet service from domain .de to domain .com - this is discussion board (vBulletin). At the moment we need to change all phrases like "domainame.de" to "domainame.com":
Over ...
0
votes
0answers
69 views
How to upload the image in vbulletin?
I use the following code to upload the avatar but nothing happens.included the class
_upload file and call the function process_upload but its not working.
function save_avatar($userdata, $avatarurl ...
1
vote
2answers
320 views
Login to site with curl in vBulletin
I been trying to login to a site (www.siamchart/forum) by following instruction on this link.. Login to remote site with PHP cURL. I cannot past through the login. After running the following script, ...
-6
votes
1answer
36 views
Recording who clicks on a popup [closed]
I really don't know how to go about this.
I have a popup on a VB 4 forum that pops up every 24 hours. What I want to know is can I record the number of people that click one of the two options on ...
0
votes
1answer
188 views
Vbulletin 3.8.7 and PHP 5.2.17 Concerns
My friend was wondering if there were any security concerns when running vbulletin 3.8.7 and PHP 5.2.17 on CentOS. I saw that PHP 5.2.17 was vulnerable to CVE-2012-2688 and CVE-2012-2386, but I do not ...
0
votes
1answer
63 views
how to display vbulletin posts in php homepage?
i want to display my vbulletin posts in my php homepage
example:
title
username, date
description
link (details)
title
username, date
description
details
1
vote
1answer
108 views
vBulletin To bbPress Conversion - How Can I Redirect The Old URLs To The New Ones?
I converted my vbulletin forum to bbpress and everything works fine except the redirection of the old urls part.
I want to redirect old vbulletin urls to the new bbpress ones using .htaccess but i ...
2
votes
2answers
50 views
Having some trouble setting up a jQuery .css function
I'm attempting to create a jQuery function that will automatically resize a particular image to it's parent's width. If it's relevant this is for vbulletin 4.2.0
Here's the relevant (simplified) ...
0
votes
0answers
41 views
vBulletin users login Session got mixed
My vbulletin forum has 2k - 3k visitors (based on ip) each day.
Today i faced a rare problem. users login sessions got mixed and each time a user refreshes a page he is seeing another user's profile!
...
0
votes
1answer
117 views
Is there any way to download an entire Vbulletin forum? [closed]
Is there any way to download an entire Vbulletin forum? It could just be in text files or whatever, doesn't matter to me but html files where the look of it is the same would be preferable.
I want an ...
0
votes
0answers
52 views
How to set up Slave Database configuration in vBulletin?
How to set up Slave Database configuration in vBulletin ? I set up like this:
$config['Database']['dbtype'] = 'mysql';
$config['Database']['dbname'] = 'xyz';
$config['Database']['tableprefix'] = ...
0
votes
0answers
23 views
vBulletin 4: Board Statistic On All Pages
I've asked this question but many think it's impossible. I want to have my board stats on all pages or in the {vb:raw footer}. It can be done (not in the {VB:raw footer}) by editing ALL pages but that ...
0
votes
1answer
85 views
vBulletin: Check if user read thread externally
Is there any possible way to check if a user who is logged in has read a certain thread? I'm currently using a seperate webpage (outside of the forum software) where I need to check if a user is ...
0
votes
0answers
42 views
unable to verify plateform error occur in VBSSO
I want to use the VBSSO for single sign on with vBulletin 4.0.3 and Drupal 7 . but after pasting the plateform url in vbulletin from drupal .it gave the error that unable to verify plateform.
any ...
0
votes
0answers
28 views
VBulletin Strip_bbcode function
any idea how to use
Strip_bbcode
function in vbulletin to strip bbcodes without messing (images, links) only, and remove the rest?
0
votes
0answers
50 views
Writing to database intermittently only partly works
I have not been able to re-create the issue, it seems to only happen to one person on multiple machines..
I'm thinking, maybe something to do with the SQL.. I don't know if his ISP could have ...
0
votes
1answer
42 views
math formulas in vbulletin forum
Hello,I have a vbulletin forum and i would like my users to be able to write math formulas in their posts (nice and easy), what is your suggestions?
0
votes
0answers
44 views
Getting notified of topics with no replies on a vBulletin forum [closed]
I have a vBulletin forum I need to watch for and answer topics with no replies.
I want to create a script or program that can alert me when there are for example 5 topics with 0 replies.
What's the ...
3
votes
2answers
270 views
download attachment file in vbulletin for unregistered user
I have a side script in my forums that allows to my users to upload some stuff from my forums.
I wanted to allow my users to upload attachment file from the forums, but vbulletin always show ...
2
votes
1answer
550 views
NGINX and memcached - full page caching and TTL
I'm using nginx, memcached and APC for all my sites. What I host is a wordpress site, a vBulletin forum and some other sites.
I've set up nginx and memcached so that nginx first checks the memcached ...
0
votes
2answers
137 views
Special Characters in JS, how to use “/” character
I've vbulletin 4.2.0 i added an special button to it's editor with this article;
http://www.vbulletinguru.com/2012/add-a-new-toolbar-button-to-ckeditor-tutorial/
The thing i want to do is add an ...
0
votes
1answer
70 views
Can't fill box with webbrowser
This is the box I want to fill:
<textarea name="message" id="vB_Editor_001_textarea" rows="10" cols="60" style="display: block; width: 380px; height: 250px; " tabindex="1" ...
1
vote
2answers
280 views
Can't login with HttpWebRequests
i am trying to login to a forum with httpwerequests but i had no success so far, this is my code:
string url = "http://www.warriorforum.com/";
var bytes = ...
0
votes
1answer
56 views
vBulletin Default Usergroup upon Registration add-on doesn't work
I'm traying to make this add-on work on vBulletin 3.6.8
http://www.vbulletin.org/forum/showthread.php?p=2375613
It doesn't seem to work. Newly registered users are not assigned to the custom group ...
0
votes
2answers
77 views
Stubborn Nav-bar not centering?
I have been trying to center a Navigation bar on my Vbulletin website for a few days now. I've tried changing the parent class, the child class, manually inserting CSS in the html element, but it ...
0
votes
2answers
56 views
Return string/int from evaluated php code?
This is annoying me. In theory it should be easy but I don't live in theory.
Basically, I have an option to set a custom algorithm to make a 'code' that is either string or int.
This is user ...
1
vote
1answer
52 views
I don't know how to change the icon when I get a new private message on my forum (vbulletin)
I started to build an a app for my forum that works on vBulletin 4.2, but I don't know what to do when I get a new private message. I thought to write in the background.html file:
...
2
votes
0answers
68 views
vBulletin Language Manager
i've edited default(en) vBulletin language for my own language(Turkish), but when i want to use it for my other forums with the same version(4.2.0) / when i download vbulletin-language.xml for later ...
1
vote
1answer
268 views
Editing vBulletin database has no effect on the site
This is a problem I've had forever with multiple vBulletin databases. I'm unable to edit the database to change settings such as the cookiepath, bburl or whether it's active or not. I mean, I can ...
4
votes
2answers
105 views
HTTP-SOVIET and HTTP-PACK?
I found a couple vBulletin sites I administer getting hacked recently. They use the latest version of the 3.8 series (3.8.7 Patch Level 2). I am usually pretty good at finding the holes where they get ...
0
votes
1answer
54 views
Edit a VBulletin Post using Qt
Well, i'd like to do an automatization to edit a thread in a certain amount of time with a program. I really don't know how to do it, i don't even know if it's possible to do without an API. It's ...
0
votes
0answers
34 views
vbulletin coding conventions
I have a javascript code in my Vbulletin Forums footer and I would like to pass couple of parameter as php to it but won't get fired, the code looks something like
<script ...
0
votes
0answers
53 views
Facebook “Like” Button is not working [closed]
I have a website running on Vbulletin Version 4.1.7. I have set up all requirements for Facebook Option in the Admin cp. However, when I Click "Like" or Publish for any threads on the forum, there is ...
0
votes
1answer
833 views
Apache or Nginx for php behind Varnish [closed]
We are managing a heavy traffic php site (driven with vbulletin). To get less load I use the cache-proxy varnish. Works very well - with varnish the load was reduced by 50%.
But now I am thinking ...
2
votes
1answer
46 views
Error font in vBulletin when show data from other database
I have a website A using database (charset utf-8) and a forum F (vBulletin 3.84) for this website.
I wrote a plugin to show some information from database website A. When I active plugin, it error ...
1
vote
1answer
123 views
Parsing variables in strings like vBulletin
I'm not sure how else to put it..
What should I consider when attempting to "parse" variables in a string, such as vBulletin in phrases?
ex;
{username} you have two notifications
I've checker ...
0
votes
0answers
148 views
vBulletin Facebook Connect on External Page
This is gonna be a weird question, but I have searched all the main places and can't find anything. Does anyone know how to use vBulletins Facebook Connect on an external page by any chance? I need to ...
0
votes
0answers
30 views
Vbulletin text excerpt?
I'm looking for a code or option which gives me this ability to get an excerpt from a text in Vbulletin forum. For example I have a text with 200 characters, I want for example only 100 characters of ...
0
votes
2answers
263 views
how does the vbulletin threads table looks like? [closed]
In a vbulletin forum every message has a title.
So, if the first message of the thread is saved at the messages table, what data is stored in the threads table?
Just the thread id and the forum?
0
votes
2answers
99 views
Multiple slideUp and slideDown with vBulletin
I'm trying to get this to work with vBulletin:
http://jsfiddle.net/amosrivera/AYWku/
It ONLY works for the FIRST POSTER of the thread and everybody else who replies on that thread, it will not work ...
0
votes
1answer
113 views
Vbulletin Editor BBcodes JS Click event
I want to pop up an alert when a user clicks on a BBcode icon in editor.
for example, I have a Spoiler BBcode and I want the event below for it :
onClick=alert("// Something Here")>
Where should ...
0
votes
1answer
92 views
php session 'stops' for no reason
I have a vbulletin forum. which is located in www.myDomain.com/Forum
I have another in www.myDomain.com/OtherSite/app
I want my Forum logged in users to be identified the other site.
The forum's ...
0
votes
1answer
261 views
Like Button, vBulletin and Mod Rewrite
I'm having a really, really, really weird problem on my vBulletin board using Facebook's Like Button. In my thread template I'm using the following code, which is located inside body tag:
<td ...
0
votes
1answer
111 views
How to parse a Quoted Post from vBulletin?
Using PHP, how can I transform:
[QUOTE=Username;1234]This is the text being quoted[/QUOTE]
Into:
<div class="quote"><a href="./linktopost?id=1234>Posted by: ...
1
vote
1answer
322 views
Django / vBulletin single sign on
What is the easiest way to make a single sign on (SSO) for a Django project and a vBulletin board on the same domain?
I have an existing database of vBulletin users. I have looked into Django's ...
