vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Today's Posts on forumhome (number). (https://vborg.vbsupport.ru/showthread.php?t=79465)

Deaths 04-05-2005 10:00 PM

Today's Posts on forumhome (number).
 
A couple of my members requested this hack, so I created it, and decided to share it with you guys :).

What does this hack do?
This hack will display the number of posts made today.

Misc Info:
The "today" text linksto search.php?do=getdaily, for your lazy members ;)
Creator: Deaths
Support is given in Hack's Thread, or preferably at vBadditions.com (when its back up).
Live Demo: http://board.xgnews.org/?styleid=1

The attached .zip contains an install file, for those who would like a copy.

Here we go:

Open up /index.php, and find:
PHP Code:

$userstats unserialize($datastore['userstats']);
$numbermembers vb_number_format($userstats['numbermembers']);
$newusername $userstats['newusername'];
$newuserid $userstats['newuserid']; 

Bellow, add:

PHP Code:

// START POSTS TODAY ON FORUMHOME HACK
$starttime mktime(000date('m'), date('d'), date('Y'));
$newposts $DB_site->query_first("SELECT COUNT(*) AS count FROM " TABLE_PREFIX "post WHERE dateline >= $starttime");
$poststoday vb_number_format($newposts['count']);
// END POSTS TODAY ON FORUMHOME HACK 

Save, Close & Upload.

Now, open up the TEMPLATE FORUMHOME.

Find:
HTML Code:

$vbphrase[posts]: $totalposts
REPLACE with:
HTML Code:

$vbphrase[posts] (<a href="search.php?do=getdaily">$vbphrase[today]</a>): $totalposts ($poststoday)
That's it, you're done!

If you use this hack, please click INSTALL!

Deaths 04-06-2005 11:08 AM

Reserved for... oh well, its here, live with it :p.

xtreme-mobile 04-06-2005 04:33 PM

works great on my forum using 3.0.6 :)

thanks

*clicks install*

Deaths 04-06-2005 05:08 PM

Glad to hear it works on 3.0.6 aswell :).

Zachery 04-06-2005 05:14 PM

Going to kill any large instaltions, also you are not adding any index to help with the query time.

Deaths 04-06-2005 05:15 PM

Hmm, didn't think about that yet.

I created it for my rather small board, so I didn't mind those things.

What would your suggestion be on this code?

Zachery 04-06-2005 05:17 PM

Add an index on dateline.

Deaths 04-06-2005 05:19 PM

Ok, I'll change it when I get some time.

boeserwolf 04-10-2005 06:03 PM

Hi


I wanted to ask if it is okay for you if I would translate your hack into german.


2.) Would you mind if I would post the translation at www.vbhacks-germany.com

I promise only licensed vB members may download add-ons from our board.


If that?s not okay for you I would post the translation here in thread


Yours


Markus

Zachery 04-10-2005 08:36 PM

Quote:

Originally Posted by boeserwolf
Hi


I wanted to ask if it is okay for you if I would translate your hack into german.


2.) Would you mind if I would post the translation at www.vbhacks-germany.com

I promise only licensed vB members may download add-ons from our board.


If that?s not okay for you I would post the translation here in thread


Yours


Markus

Markus, how can you do promise that only licensed members will be able to download?

boeserwolf 04-10-2005 09:48 PM

Hello

This solution is realised over a check on vbulletin-germany.

There is a thread with an Attachment, which contains a password.

If you´re a licensed member of vbulletin, you will be able to open this attachment and read the password.

This password changes very often.

If you have the Password, you create a support ticket at vbhacks-germany.com and if the password is correct, the administrator of vbhacks will put you in the "licensed" usergroup.

Sounds complicated I know, we already talked to scott molinari, and he promised he will talk to jailsoft, to put our site to jelsoft´s (adduco´s) member area.

yours

Markus

Zachery 04-10-2005 10:07 PM

Quote:

Originally Posted by boeserwolf
Hello


This solution is realised over a check on vbulletin-germany.

There is a thread with an Attachment, which contains a password.

If you?re a licensed member of vbulletin, you will be able to open this attachment and read the password.

This password changes very often.

If you have the Password, you create a support ticket at vbhacks-germany.com and if the password is correct, the administrator of vbhacks will put you in the "licensed" usergroup.


Sounds complicated I know, we already talked to scott molinari, and he promised he will talk to jailsoft, to put our site to jelsoft?s (adduco?s) member area.


yours


Markus

So what is keeping that password from being distributed thoughout the piracy sites?

Marco van Herwaarden 04-11-2005 03:47 AM

Quote:

Originally Posted by boeserwolf
and he promised he will talk to jailsoft

Lol, how we can take you serious if this is how you think about Jelsoft. Or am i not getting this?

Eternal2u 04-11-2005 08:26 AM

Try using cache instead..one of my coders on my site made it use that and its a much better thing to do than make another useless query...

Trust me the webbies with sense will appreciate you for it..

boeserwolf 04-11-2005 08:50 AM

Sorry for making this nasty error typing the name. It´s Jelsoft clear.

You may only give your best, changing the password very often, so distributing is very hard. But it is not the best solution we all lnow in the community.

We hope to get a better solution very soon from Jelsoft.

lg

Markus

TyleR 04-11-2005 12:47 PM

[off topic]if you plan on having something as such as a lisence verification here on vb.org for your site, it would be in your best interest to use $_SERVER['HTTP_REFERRER'] = 'https://vborg.vbsupport.ru/showpost.php?p=xxxxx&postcount=xx'; to verify they actually are coming from that specific page..and put the link and verification code into a code box preventing non-lisenced mebers from seeing it ;)[/off topic]

Thanks for this hack, Deaths :)

[high]* TyleR clicks install[/high]

Marco van Herwaarden 04-11-2005 12:54 PM

It is very easy to spoof a referrer.

TyleR 04-11-2005 12:58 PM

vBAdvanced.com has been using it I believe...havent seen any problems there.. :rolleyes:

Deaths 04-11-2005 03:45 PM

Thank you for your feedback Tyler.

Please do not spam my hack's thread with stuff like this.

And yes, you may translate my hack, but PLEASE use the PM SYSTEM next time you want to ask something like this!

Zachery 04-11-2005 03:50 PM

Quote:

Originally Posted by TyleR
vBAdvanced.com has been using it I believe...havent seen any problems there.. :rolleyes:

AFAIK the password is updated constantly

boeserwolf 04-12-2005 11:06 AM

Yes thats right

vbadvanced uses nearly the same method we do. We are still waiting for a comment from scott, but I think our system is the best we can until a better solution is suggested by Jelsoft.

lg

Markus

Deaths 04-12-2005 04:42 PM

Quote:

Originally Posted by deaths
Please Do Not Use My Thread To Discuss That Stuff.

Thank you.

illusions 04-15-2005 01:48 AM

Thanks...nice lil mod.. i was searching for this one...cheers.

Deaths 04-15-2005 03:02 PM

No problem ;).

gregsbaby64 04-19-2005 02:41 PM

I'm looking for something similiar to this. On the nav bar, "new posts" I would like to show the number of posts since the person visited the board.

Any way to do this, please? :)

Deaths 04-19-2005 03:56 PM

That'd add an extra query to each page, if I'm not mistaking...

If you're sure that you want it, I'll create it.

gregsbaby64 04-19-2005 04:08 PM

I didn't know it was going to put another query on each page...there has to be another way. Thanks Deaths. :)

Deaths 04-19-2005 04:47 PM

Hmm, there is a posibility to do it using a cronjob and the datastore I guess... I'll look into it for you.

Vevina 04-22-2005 07:36 PM

Sweet installed :)

lovelyman_x 04-22-2005 11:43 PM

thanks 4 sharing !

Deaths 04-23-2005 06:34 AM

No problem guys :).

Please click install if used.

conandoyle 04-27-2005 02:12 AM

Thanks Deaths so much :)

Deaths 04-27-2005 01:24 PM

No problem :)

gregsbaby64 04-27-2005 05:33 PM

Excellent, thanks! :)

Deaths 04-27-2005 06:33 PM

Glad I could be of help :).

gregsbaby64 04-27-2005 06:35 PM

Ack, now the "view new posts since your last visit" thing isn't showing the cookies, it's showing the posts for today. Anyway to fix that? Thanks. :)

Deaths 04-28-2005 01:53 PM

What is the URL?

gregsbaby64 04-28-2005 04:29 PM

Hey, the url is in my signature, guests can't see it though. I just liked having the number of new posts there, no biggie. :)

Deaths 04-28-2005 04:37 PM

Ah, I see.

Change the 2 $newposts variables to $todayposts in my hack, and it'll probably work :)

gregsbaby64 04-28-2005 04:54 PM

Excellent, thanks! Worked great! :) I wish you could join, only chicks though, sorry!


All times are GMT. The time now is 12:42 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01209 seconds
  • Memory Usage 1,818KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_html_printable
  • (2)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete