The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Details »» | |||||||||||||||||||||||||
UPDATED! Not a new version number, but a bug fix.
Fixed another bug with using forum titles and included forums. New update: *Actually* fixed the bug with the forums this time. ------------------------------------------------------------------------------------ It's my best work to date (if I do say so myself ) and I think you'll like it and like all the configuration you can do. This image shows the script with all of the columns on, and parsing [code], smilies, and the post icon, as well as showing the forum title before the thread title. This image shows the script with all the columns off except $lastpostdate, and the $tw (table width) set to 600, and $showdate set to 0 (to just show the last post time). This image shows the same as #2, except $tw is blank (allowing the table to compact and remove the empty space automatically). Hack version: 1.0.1 Changes since version 1.0.0: Fixed small bug. Changes since version 0.1.0: Parses [ b], [ i], [ u], [ code], and [ quote] within the "last post". Displays the icon of the post, or the thread if there is no post icon. Parses smilies. New option to convert new lines to <br> so the post appears as the author wrote it (note: may cause problems if there are large breaks in posts). Changes since version 0.0.2: New option to show the text of the last post of a thread (also option to limit the number of characters of the post displayed). New option to set the table width, as a percent, a number of pixels, or just let the table size naturally. New option to show just the time of the last post, instead of the date *and* the time. New option to show a thin line around the cells (cell spacing). Changes since version 0.0.1: Include only specific forums, or set to allow all forums except certain excluded forums. New option to display a "Last post date" column with the last post date and time, formatted with your board's date & time setting. Fixed a bug with font and font size. Split the config into a separate file to make editing easier. For version: v2 betas 3, 4, 5, RC1, RC2. Files needed: last10.php, last10config.php (see attached zip file). Files to edit: last10config.php (see attached zip file). Possible file locations: Anywhere, as long as the relative path to config.php and the URL to your board are correct. Also, you must put last10.php and last10config.php in the same directory! Instructions 1] Unzip the files last10.php and last10config.php to your hard drive. 2] Open last10config.php in an ASCII text editor, such as Notepad (Windows), SimpleText (Mac), EditPlus, UltraEdit, TextPad, etc. (DO NOT use WYSIWYG HTML editors such as FrontPage, HotDog, DreamWeaver, etc. They will in all likelyhood screw up the file! I will not be able to support you if you edit the file in one of these programs.) 3] Edit the variables at the top. These are:
<? include("last10.php"); ?> To include it on a server-parsed page (.shtml, .shtm, .ssi, etc.): <!--#include file="last10.php"--> Instructions are also included in the zip file (last10.txt). FEEDBACK WANTED! Likes/dislikes/modification requests all gladly accepted! Please DO NOT contact me via IM or PM about this hack. Post your problem/question here and I will try to help you. Show Your Support
|
Comments |
#72
|
|||
|
|||
Thx Tubedogg, it's perfect now.
For all (registered, guests and unlogged) it would be fine just something like server time +- n hours (or GMT +- n hours), without using cookies. If in this way there are some problem with showing the correct date, it could be let it off. |
#73
|
|||
|
|||
Works great (except): When I put a forum number(s) in either (only 1 of the two) include or exclude forums, "can't select info" .
If I leave these blank, display's with no problem. Help! Excellent hack. |
#74
|
||||
|
||||
Odd...I can't reproduce that problem. Make sure you are only putting numbers and commas into those two variables, and separating the numbers with commas. So it might look like:
Code:
$includeforums = "3,4,5,6"; |
#75
|
|||
|
|||
That's exactly how I did it.
Would it be a good idea (or possible) to have the script automatically exclude private forums? |
#76
|
|||
|
|||
Nice hack tubedogg, it fit right in with what I was needing. Here is how I used it.
|
#77
|
||||
|
||||
looks good, wajones!
|
#78
|
|||
|
|||
Thought I'd share this, a few of my users wanted to include tubedogg's last10 hack on a vbulletin page and this is what I came up with...
In a copy of the last10.php script comment out or delete the following require("$path/config.php"); $db=mysql_connect($servername,$dbusername,$dbpassw ord) or die("Can't open connection to MySQL"); mysql_select_db($dbname) or die("Can't select database"); now add this to the phpinclude template ob_start(); include_once("./last10.php"); $last10 = ob_get_contents(); ob_end_clean(); Then I was able to add $last10 into any vbulletin template to display the last10 table. Saved a lot of work trying to create templates and changing his code, plus if he changes it, it's simple to upgrade. |
#79
|
||||
|
||||
very cool idea. thanks, wajones!
|
#80
|
|||
|
|||
tubedogg
any plans to add javascript, so that last posts can be shown in remote sites without actually accessing mysql.? I think it will be very useful for many ppl. |
#81
|
|||
|
|||
Quote:
Create another copy of the last10.php named thelatest.php so you can set different param's. Create a new forum and name it 'The latest posts" or what ever set it to "act as forum = no and open for posts = no" now put this into the phpinclude in place of what I told you before... $forumid being that forum you created ob_start(); if ($forumid==34){ include_once("./thelatest.php"); $thisweek= ob_get_contents(); }else{ include_once("./last10.php"); $last10 = ob_get_contents(); } ob_end_clean(); Now in the forumdisplay template find... $forumdisplay[forumslist] then right above it put $thisweek Now the last10 or $thisweek in this case will show as a forum and be in the jumpforum box for quick access Let me know if you see any conflicts.... |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|