The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Comments |
#242
|
||||
|
||||
![]() Quote:
|
#243
|
||||
|
||||
![]()
works perfect on vb2.2.6
|
#244
|
||||
|
||||
![]()
ok, here..
my problem was resolved! Find this bit of code in index.php PHP Code:
|
#245
|
|||
|
|||
![]()
HMMMM....i think i might have found what i did wrong. I never ran the mysql command:
ALTER TABLE `forum` ADD `lasttitle` VARCHAR(100) NOT NULL AFTER `lastposter` If i didnt run that commmand what problems should i expect? SO far, when i move a post/or delete a post, it still shows that post title as the recent post. Is this a problem due to not running that command? |
#246
|
||||
|
||||
![]()
VB Portal users: If anyone is intrested I found a way to hide the last post topic titles from private forums using the list of excluded forums in the vbp config file. It works on the forums and index page. email me
|
#247
|
|||
|
|||
![]()
I am using vb 2.2.5 . it works but only if I delete the last post of the forum (This mean the last titles are updated manually)!. Any one faced such a problem ?
btw, I mad the modifications through the browser, should this be the reason ? |
#248
|
|||
|
|||
![]()
I have the same problem...i beleive this code does not support deletions. So if you delete/move something, it will be screwed up for a bit until someone replies/posts a new topic.
|
#249
|
||||
|
||||
![]()
i'm posting the new updated version for 2.2.7 in about 15min...
![]() |
#250
|
||||
|
||||
![]()
Ok, these are the new updated file instructions to install PPN's hack onto VB227...
Now you have the VB3 style onto your VB227. ![]() PPN, I hope you dont mind i did this update. If you find it usefull, please place it on your first post, and delete from it the sentence "updated by TECK". For the rest of you, please let me know if you got it up and running using this update. It's working great for me... |
#251
|
|||
|
|||
![]() Quote:
|
#252
|
||||
|
||||
![]()
it's fixed now. make sure when you download the file, at the top it says version 1.1, not 1.0.
if it says 1.0, clear your browser temp files. for those of you who want to have a link the the thread itself, instead of going to the last post do this: open showthread.php and find: Code:
if ($goto=="nextnewest") { Code:
// goto newest thread if ($goto=="newthread") { if (isset($forumid) and $forumid!=0) { $foruminfo=verifyid("forum",$forumid,1,1); $forumid=$foruminfo['forumid']; $forumslist = ""; $getchildforums=$DB_site->query("SELECT forumid,parentlist FROM forum WHERE INSTR(CONCAT(',',parentlist,','),',$forumid,')>0"); while ($getchildforum=$DB_site->fetch_array($getchildforums)) { if ($getchildforum[forumid]==$forumid) { $parentlist=$getchildforum[parentlist]; } $forumslist.=",$getchildforum[forumid]"; } $thread=$DB_site->query_first("SELECT threadid FROM thread WHERE forumid IN (0$forumslist) AND visible=1 AND (sticky=1 OR sticky=0) AND lastpost>='".($foruminfo[lastpost]-30)."' AND open<>10 ORDER BY lastpost DESC LIMIT 1"); header("Location: showthread.php?s=$session[sessionhash]&threadid=$thread[threadid]"); exit; } } if ($goto=="nextnewest") { Code:
<a href="showthread.php?s=$session[sessionhash]&goto=newthread&forumid=$forum[forumid]">$forum[lastthread]</a> update: i'm gonna look also in postings.php file, it needs to be also modified. for example if you edit a thread title, it wont update the thread... i will look into it and post the mod here... floren. |
#253
|
||||
|
||||
![]()
ok.. another little bug discovered... and fixed.
in forum/postings.php, find: Code:
updateforumcount($threadinfo[forumid]); if ($visible) { Code:
updateforumcount($threadinfo[forumid]); $lastpost=$DB_site->query_first("SELECT * FROM forum WHERE forumid='$threadinfo[forumid]'"); if($lastpost['lastpost']==$threadinfo['dateline']) { $DB_site->query("UPDATE forum SET lastthread='".addslashes(htmlspecialchars($title))."' WHERE forumid='$threadinfo[forumid]'"); } if ($visible) { if you download the file, make sure it says version 1.2. |
#254
|
||||
|
||||
![]()
now the only problem in postings.php is when you delete a thread, the title is not updated.. i'm working on this as we speak..
|
#255
|
||||
|
||||
![]()
ok, in postings.php, under "start do delete thread", i added this way the code:
Code:
deletethread($threadid,$foruminfo[countposts]); $lastpost = $DB_site->query_first("SELECT title,lastpost FROM thread WHERE forumid='$threadinfo[forumid]' ORDER BY lastpost DESC LIMIT 1"); $DB_site->query("UPDATE forum SET lastthread='".addslashes(htmlspecialchars($lastpost['title']))."' WHERE forumid='$threadinfo[forumid]'"); |
#256
|
|||
|
|||
![]()
Actually if you just change updateforumcount function to do it, as it gets called when a thread gets moved / deleted
I will write this in my diary to get done tonight just about to go out to work. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|