View Full Version : Show Latest Threads Outside VBulletin
nima6
06-12-2008, 01:06 AM
is there a way to show the latest 5 VBulettin Threads outside the VB? Ex, on the website's homepage (assuming forum is in /forum/ folder)
ssslippy
06-12-2008, 01:50 AM
Inferno external will do this for u.
sR Craig
06-12-2008, 02:11 AM
is there a way to show the latest 5 VBulettin Threads outside the VB? Ex, on the website's homepage (assuming forum is in /forum/ folder)
PHP & MySQL will do the trick...
Something like this for the SQL:
SELECT threadid, title FROM TABLE-PREFIX_thread WHERE `visible`=1 ORDER BY threadid DESC LIMIT 10
Notes:
TABLE-PREFIX_ = the table prefix you use on your forums, if any...
Never do something like SELECT * FROM if you dont need everything from that row...
Use visible=1 to show only threads which have not been deleted...
Change the 10 in LIMIT 10 to change the number of rows selected...
The rest which would be in PHP should en easy enough...
nima6
06-12-2008, 02:26 AM
I found VBExternal (https://vborg.vbsupport.ru/showthread.php?t=81943), but im trying to figure out why im getting the error that i am getting
Dismounted
06-12-2008, 05:58 AM
What's the error?
@sR Craig: Your SQL will not take into account permissions - so it will show threads from private forums as well.
nima6
06-12-2008, 02:42 PM
Im getting this error:
Warning: main(./includes/db_mysql.php) [function.main]: failed to open stream: No such file or directory in /home/nima/public_html/hookahlounge/shisha-forum/vBExternal.php on line 67
Fatal error: main() [function.require]: Failed opening required './includes/db_mysql.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/nima/public_html/hookahlounge/shisha-forum/vBExternal.php on line 67
Opserty
06-12-2008, 02:55 PM
<a href="http://www.vbulletin.com/forum/showthread.php?t=158895" target="_blank">HowTo Display Latest Active Threads on ANY normal HTML page</a>
nima6
06-12-2008, 03:55 PM
i saw that, but VBExternal (https://vborg.vbsupport.ru/showthread.php?t=81943)seems better and easier. I'm tyring to integrate that, but having troubles with it
Dismounted
06-13-2008, 10:14 AM
Your error indicates that some required file do not exist. Please post in the specific modification thread for help with that modification.
nima6
06-13-2008, 09:33 PM
i did but didnt receive any help
nima6
06-19-2008, 02:08 AM
i made a post in that thread but not luck....
I'm willing to pay someone to help me fix this problem.
Please PM me if you can.
Thanks
ssslippy
06-19-2008, 02:32 AM
I said use inferno external, not vb external.
Mansfield Town
07-19-2008, 01:35 AM
Is there a way of getting the latest threads onto a Joomla 1.5 frontpage at all?
Thanks !
Dismounted
07-19-2008, 04:08 AM
I believe Joomla has an RSS parser, you can just use vBulletin's RSS feed.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.