Version: , by Kayn
Developer Last Online: Dec 2010
Version: 2.2.x
Rating:
Released: 07-02-2001
Last Update: Never
Installs: 59
No support by the author.
UPDATED! Woohoo!
I just fixed/added stuff from version 1.0!
Download the new version 1.5 if you have the old 1.0 - lots of better features.
From the readme.txt:
Quote:
This script isn't really a hack, just an external script that pulls information out of the VBulletin Database for news
or whatever reason you see fit. It's easy to install and configure, and has tons of the same features that many other
news scripts have, except you don't have to modify any Vbulletin source code (which I'm never comfortable doing
for some reason, but that's just me .
I had a really rough time finding a good, EASY news script that did what this does. I searched and found some, but
it really came down to easy installation. I didn't want to modify MySql tables or mess with the advanced Vbulletin
source (well, to me anyway). So I wrote this script. Yer.
This script was intended for VBulletin 2.0 only (I don't know if it will work with previous releases) and PHP4.
After you install, if at all possible, I would appreciate some credit to my script. A link to http://pluh.com
on your page before or after your news would be great. Let me know when you have it installed too - I love
seeing my stuff working on other websites!
Ok this hack is GREAT, when i am logged on my board. But when i am logged out. i get this error
Warning: Cannot add header information - headers already sent by (output started at /path/to/index.php:10) in /path/to/admin/functions.php on line 1457
Note: it shows the direct path i didnt want to show it on here to save somewhat privacy. But anyone have any ideas on how to fix it? I am using 2.0.3.
I just ran into this on another hack. I found that it was because the database name and password was wrong, check your Pluhconfig file for proper settings
Brilliant Script ... saved me alot of hairpulling and pain ...
I am getting the same header problem ...
My index is basicly a series of includes
PHP Code:
<? include ("location/includes/header.php")?>
various html for table layouts
<? include ("forums/PluhNews.php")?>
various finishing html
<? include ("location/includes/footer.php")?>
I can already guess that the inclusion of the global.php and admin/config.php is causing the Vbulleting Header functions to kick in causing the conflict with my header.php.
My error occurs on line 1459 ... which is "setcookie($name,$value,$expire,$cookiepath);" Below
PHP Code:
// ###################### Start vbsetcookie #######################
function vbsetcookie($name,$value="",$permanent=1) {
global $cookiepath,$cookiedomain;
I know for a fact its a cookie problem because when you are logged into your board it'll work. But when you delete your cookies from your browser it'll be messed up.