Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Details »»

Version: , by Kayn Kayn is offline
Developer Last Online: Dec 2010 Show Printable Version Email this Page

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.

Working Demos can be found in use at http://pluh.com/forums/PluhNews.php and for headlines,
http://pluh.com/forums/PluhHeadlines.php

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!
You can check out the raw demo here for PluhNews: http://pluh.com/forums/PluhNews.php

And Headlines! http://pluh.com/forums/PluhHeadlines.php


Let me know if you like it! (Thanks Dark Wizard and Bane)

*NOTE: I will not be able to provide support for this hack, as I am extremely busy. Sorry...*

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #302  
Old 02-02-2002, 01:42 PM
DrkFusion's Avatar
DrkFusion DrkFusion is offline
 
Join Date: Nov 2001
Posts: 1,926
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So how would I go about making my avatar viewable?
Reply With Quote
  #303  
Old 02-03-2002, 12:26 AM
Darren Evans Darren Evans is offline
 
Join Date: Jan 2002
Location: Lakewood, CA
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've followed the instructions to a tee and can not get this script to run including it in a page.

I ran it in raw form from PluhNews.php and PluhHeadlines.php with no problems.

Included in a root index.php file will not work. I keep getting the following error:

Quote:
Fatal error: Failed opening required './global.php' (include_path='') in /home/site/public_html/forums/PluhNews.php on line 5
The include looks like this:

PHP Code:
<? include ("forums/PluhNews.php"); ?>
My PluhConfig file (placed in the forums directory) was tried with vared paths with out success:

PHP Code:
require("global.php");
require(
"PluhConfig.php");
require(
"admin/config.php"); 
Yes, I tried it with full path info (ie, /home/site/public_html/forums).

This thread is very confusing with posts from way back in July 2001.

Any help would be greatly appreciated.
Reply With Quote
  #304  
Old 02-03-2002, 01:06 AM
DrkFusion's Avatar
DrkFusion DrkFusion is offline
 
Join Date: Nov 2001
Posts: 1,926
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Darren Evans
I've followed the instructions to a tee and can not get this script to run including it in a page.

I ran it in raw form from PluhNews.php and PluhHeadlines.php with no problems.

Included in a root index.php file will not work. I keep getting the following error:



The include looks like this:

PHP Code:
<? include ("forums/PluhNews.php"); ?>
My PluhConfig file (placed in the forums directory) was tried with vared paths with out success:

PHP Code:
require("global.php");
require(
"PluhConfig.php");
require(
"admin/config.php"); 
Yes, I tried it with full path info (ie, /home/site/public_html/forums).

This thread is very confusing with posts from way back in July 2001.

Any help would be greatly appreciated.
Reply With Quote
  #305  
Old 02-03-2002, 01:07 AM
DrkFusion's Avatar
DrkFusion DrkFusion is offline
 
Join Date: Nov 2001
Posts: 1,926
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by DrkFusion
So how would I go about making my avatar viewable? For every post, so for example on news.php my avatar will show as well.
Anyone Know?
Reply With Quote
  #306  
Old 02-03-2002, 01:54 AM
sccr410 sccr410 is offline
 
Join Date: Jan 2002
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Darrenn Evans...

I am having the same problems, but I have managed to get it working, but not completely. Do the following and at least it should show up:

Change:
PHP Code:
require("global.php");
require(
"PluhConfig.php");
require(
"admin/config.php"); 
to:
PHP Code:
include("/home/site/public_html/forums/admin/functions.php"); 
Then, change:
PHP Code:
$bericht=bbcodeparse2($pagetext,"1","1","1","1"); 
to:
PHP Code:
$bericht=bbcodeparse2($pagetext,"1","1","0","0"); 
Then, you have manually set the variables for your database (i.e. $servername, $dbusername, $dbpassword, and $dbname)

It should work on your main page, however it won't parse the bbcode.

I am having the exact same problem as you, so hopefully we can bug the hack creator enough to help us out!
Reply With Quote
  #307  
Old 02-03-2002, 02:16 AM
DrkFusion's Avatar
DrkFusion DrkFusion is offline
 
Join Date: Nov 2001
Posts: 1,926
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by DrkFusion


So how would I go about making my avatar viewable? For every post, so for example on news.php my avatar will show as well.
So umm, anyone here?
Reply With Quote
  #308  
Old 02-03-2002, 05:53 PM
monitox's Avatar
monitox monitox is offline
 
Join Date: Nov 2001
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I want to include the title of the news in an shtml page... with this : <!--#include virtual="PluhHeadlines.php" -->

Well.. is NOT working

Any1 can help me ? Without this thing I can not use it
Reply With Quote
  #309  
Old 02-03-2002, 06:01 PM
Darren Evans Darren Evans is offline
 
Join Date: Jan 2002
Location: Lakewood, CA
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is this hack not being supported any more?
Reply With Quote
  #310  
Old 02-03-2002, 06:07 PM
monitox's Avatar
monitox monitox is offline
 
Join Date: Nov 2001
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This hack is REALLY GREAT.. PLS someone help us
Even if you are not the author.. maybe YOU can help us..

* you = ANY good ppl on php
Reply With Quote
  #311  
Old 02-03-2002, 11:37 PM
DrkFusion's Avatar
DrkFusion DrkFusion is offline
 
Join Date: Nov 2001
Posts: 1,926
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by monitox
This hack is REALLY GREAT.. PLS someone help us
Even if you are not the author.. maybe YOU can help us..

* you = ANY good ppl on php
Yea Please
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:37 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05886 seconds
  • Memory Usage 2,329KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (8)bbcode_php
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete