Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
New Reputation Comments (and Posts) Since Your Last Visit. Details »»
New Reputation Comments (and Posts) Since Your Last Visit.
Version: 3.03, by Paul M Paul M is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.5.x Rating:
Released: 06-26-2005 Last Update: 05-14-2006 Installs: 187
 
No support by the author.

This modification is no longer available or supported.

The 3.5 port of this simple hack;

This displays the number of new posts since your last visit & the number of new reputation comments since you last checked your usercp - both are displayed in the welcome panel - either can be turned off by de-activating the relevant plugin.


History:

v3.01 : Initial vb3.5 release.
v3.02 : Updated install code.
v3.03 : Minor changes, no update necessary.

Show Your Support

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

Comments
  #152  
Old 06-16-2006, 08:39 AM
ubblite ubblite is offline
 
Join Date: Jan 2006
Posts: 259
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Paul M
$pcount & $rcount probably need to be declared as global in the arcade script (arcade.php ?).
Thanks for the response, Paul. Now I just have to figure out how to do this.
Reply With Quote
  #153  
Old 06-16-2006, 08:50 AM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There is a support forum for it in the premuim section, that's probably the best place to ask. I don't run that arcade so I can't really say.
Reply With Quote
  #154  
Old 06-17-2006, 07:04 AM
wii's Avatar
wii wii is offline
 
Join Date: Oct 2005
Posts: 169
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yeah, I know.

so where do I change the code in the plugin and navbar to show only a counter next to New Posts?

Thanks a lot

Quote:
Originally Posted by Paul M
Not without changes to the plugin, and your navbar template.
Reply With Quote
  #155  
Old 06-19-2006, 11:18 PM
AHMUDEM AHMUDEM is offline
 
Join Date: Feb 2005
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

3.6.0 beta 2 good working
Reply With Quote
  #156  
Old 06-20-2006, 06:17 PM
Gudrune Gudrune is offline
 
Join Date: Jul 2005
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

CPMS problem.

ON the link for new posts under CPMS it doesnt have correct link.

CPMS home page looks like this

http://www.mysite.com/search.php?do=getnew

Under my forums its correct

http://www.mysite.com/forums/search.php?do=getnew

So if people click on new posts on welcome bar from CPMS main page get a 404 error.
Reply With Quote
  #157  
Old 06-20-2006, 06:24 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry, I don't support CMPS, I would suggest you ask in thier forums.
Reply With Quote
  #158  
Old 06-20-2006, 06:53 PM
Mark.B Mark.B is offline
Senior Member
 
Join Date: Feb 2004
Posts: 1,354
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ubblite
Thanks for the response, Paul. Now I just have to figure out how to do this.
In /arcade/functions/functions.php.

Find:
Code:
  function do_output($output_array)
In the list of functions that follows:
Code:
global $header, $vbphrase, $vboptions,
Almost at the end of the long line, immediately before the semicolon ( add:
Code:
, $rcount, $pcount
That should work.
Reply With Quote
  #159  
Old 06-20-2006, 10:45 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks Mark.
Reply With Quote
  #160  
Old 06-21-2006, 12:32 AM
ubblite ubblite is offline
 
Join Date: Jan 2006
Posts: 259
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Mark.B
In /arcade/functions/functions.php.

Find:
Code:
  function do_output($output_array)
In the list of functions that follows:
Code:
global $header, $vbphrase, $vboptions,
Almost at the end of the long line, immediately before the semicolon ( add:
Code:
, $rcount, $pcount
That should work.
Thank you so much Mark - that worked perfectly.
Reply With Quote
  #161  
Old 06-21-2006, 06:35 AM
Mark.B Mark.B is offline
Senior Member
 
Join Date: Feb 2004
Posts: 1,354
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Gudrune
CPMS problem.

ON the link for new posts under CPMS it doesnt have correct link.


CPMS home page looks like this

http://www.mysite.com/search.php?do=getnew

Under my forums its correct

http://www.mysite.com/forums/search.php?do=getnew


So if people click on new posts on welcome bar from CPMS main page get a 404 error.
Hmmm. I run vBAdvanced and it worked ok on there so this has me a bit baffled.

A rather dirty workaround might be to edit the plugin code. Find this line:
Code:
$pcount = "<a href='search.php?do=getnew'><b>" . $pcount . "</b></a> ".$vbphrase['since_last_visit'];
}
and actually hard code the full URL in like this:
Code:
$pcount = "<a href='http://www.allbuffs.com/forums/search.php?do=getnew'><b>" . $pcount . "</b></a> ".$vbphrase['since_last_visit'];
}
I don't know if that will work as I haven't tried it. Make a text copy of the original plugin code first so you can easily restore it without reinstalling.

I am sure there is a cleaner fix than this though. I think yours fails because your portal is actually at your root domain whereas mine simply redirects from the root domain to /forum/cmps_index.php.
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 03:19 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.06684 seconds
  • Memory Usage 2,313KB
  • 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_code
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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