 |
|
 |
|
Next: Reviewing Google Adsense
|
| Author |
Message |
External

Since: Oct 31, 2003 Posts: 18
|
(Msg. 1) Posted: Fri Nov 07, 2003 6:59 pm
Post subject: Counter script Archived from groups: alt>www>webmaster (more info?)
|
|
|
Hey all,
I have been searching the hotscripts for the last few hours
and I found nothing really good. Grrrrr.
I need a php script(s):
- download count
- users online (live)
- counter that can be set to count several pages, separately...
MySQL is a must.
Can any of you guys & gals recommend me a really good script(s) that
does this, please.
tnx
m. >> Stay informed about: Counter script |
|
| Back to top |
|
 |  |
External

Since: Nov 05, 2003 Posts: 14
|
(Msg. 2) Posted: Fri Nov 07, 2003 6:59 pm
Post subject: Re: Counter script [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
M. wrote:
> Hey all,
> I have been searching the hotscripts for the last few hours
> and I found nothing really good. Grrrrr.
>
> I need a php script(s):
> - download count
> - users online (live)
> - counter that can be set to count several pages, separately...
>
> MySQL is a must.
>
> Can any of you guys & gals recommend me a really good script(s) that
> does this, please.
As found on hotscripts:
<a style='text-decoration: underline;' href="http://www.silver-scripts.de/scripts/silvercounter.php?l=en" target="_blank">http://www.silver-scripts.de/scripts/silvercounter.php?l=en</a>
Pretty good, used to use it myself. HTH.
--
Dale,
<a style='text-decoration: underline;' href="http://www.oxygenkiosk.net" target="_blank">www.oxygenkiosk.net</a>
Now playing: Winamp stopped<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: Counter script |
|
| Back to top |
|
 |  |
External

Since: Oct 22, 2003 Posts: 353
|
(Msg. 3) Posted: Fri Nov 07, 2003 6:59 pm
Post subject: Re: Counter script [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Fri, 07 Nov 2003 15:59:43 +0100, M. wrote:
> Hey all,
> I have been searching the hotscripts for the last few hours
> and I found nothing really good. Grrrrr.
>
> I need a php script(s):
> - download count
> - users online (live)
> - counter that can be set to count several pages, separately...
>
> MySQL is a must.
>
> Can any of you guys & gals recommend me a really good script(s) that
> does this, please.
For heavy traffic sites, a counter attached to a database is not a good
idea.
--
Karim
<a style='text-decoration: underline;' href="http://www.cheapesthosting.com/webmastertoolbox" target="_blank">http://www.cheapesthosting.com/webmastertoolbox</a> - Free Resources for
Webmasters<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: Counter script |
|
| Back to top |
|
 |  |
External

Since: Nov 05, 2003 Posts: 14
|
(Msg. 4) Posted: Fri Nov 07, 2003 6:59 pm
Post subject: Re: Counter script [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Karim wrote:
> For heavy traffic sites, a counter attached to a database is not a good
> idea.
Even if some of the IPs in the database are deleted after X amount of time?
--
Dale,
<a style='text-decoration: underline;' href="http://www.oxygenkiosk.net" target="_blank">www.oxygenkiosk.net</a>
Now playing: Winamp stopped<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: Counter script |
|
| Back to top |
|
 |  |
External

Since: Oct 22, 2003 Posts: 353
|
(Msg. 5) Posted: Fri Nov 07, 2003 6:59 pm
Post subject: Re: Counter script [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Fri, 07 Nov 2003 15:40:42 +0000, Firky wrote:
> Karim wrote:
>
>> For heavy traffic sites, a counter attached to a database is not a good
>> idea.
>
> Even if some of the IPs in the database are deleted after X amount of time?
Everytime a page gets hit, a database connection is needed and a database
insert is done. Collectively, this takes some resources (and I don't know
how MySQL is optimized) and you might get database locking issues.
It would be faster to save your info in a file and later do reports on it
or import all data into the database in one shot.
--
Karim
<a style='text-decoration: underline;' href="http://www.cheapesthosting.com/webmastertoolbox" target="_blank">http://www.cheapesthosting.com/webmastertoolbox</a> - Free Resources for
Webmasters<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: Counter script |
|
| Back to top |
|
 |  |
External

Since: Jul 14, 2003 Posts: 1188
|
(Msg. 6) Posted: Fri Nov 07, 2003 6:59 pm
Post subject: Re: Counter script [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Karim wrote:
>
> On Fri, 07 Nov 2003 15:40:42 +0000, Firky wrote:
>
> > Karim wrote:
> >
> >> For heavy traffic sites, a counter attached to a database is not a good
> >> idea.
> >
> > Even if some of the IPs in the database are deleted after X amount of time?
>
> Everytime a page gets hit, a database connection is needed and a database
> insert is done. Collectively, this takes some resources (and I don't know
> how MySQL is optimized) and you might get database locking issues.
> It would be faster to save your info in a file and later do reports on it
> or import all data into the database in one shot.
>
> --
> Karim
> <a style='text-decoration: underline;' href="http://www.cheapesthosting.com/webmastertoolbox" target="_blank">http://www.cheapesthosting.com/webmastertoolbox</a> - Free Resources for
> Webmasters
Karim,
The problem with writing to a file is the multithreading nature of the
web server can corrupt the file. MySql is made to handle this - and
does so quite well. Sure, there is a little overhead - but not as much
as you would think.
--
To reply, delete the 'x' from my email
Jerry Stuckle,
JDS Computer Training Corp.
jstucklex.TakeThisOut@attglobal.net
Member of Independent Computer Consultants Association - <a style='text-decoration: underline;' href="http://www.icca.org" target="_blank">www.icca.org</a><!-- ~MESSAGE_AFTER~ --> >> Stay informed about: Counter script |
|
| Back to top |
|
 |  |
External

Since: Oct 31, 2003 Posts: 18
|
(Msg. 7) Posted: Fri Nov 07, 2003 10:44 pm
Post subject: Re: Counter script [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Karim <karim3411 DeleteThis @yahoo.moc> wrote:
>For heavy traffic sites, a counter attached to a database is not a good
>idea.
I know.
Client's site is not under heavy traffic, so...
tnx<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: Counter script |
|
| Back to top |
|
 |  |
External

Since: Oct 31, 2003 Posts: 18
|
(Msg. 8) Posted: Sat Nov 08, 2003 2:04 am
Post subject: Re: Counter script [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Firky <bottle.of.dog.DeleteThis@brownale.com> wrote:
>As found on hotscripts:
I seem to have missed this one...
>http://www.silver-scripts.de/scripts/silvercounter.php?l=en
>Pretty good, used to use it myself. HTH.
Yep, quite good.
Too bad it cant be set to count each page separately...
Tnx anyway Firky.
Regards
m.<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: Counter script |
|
| Back to top |
|
 |  |
External

Since: Nov 05, 2003 Posts: 41
|
(Msg. 9) Posted: Sat Nov 08, 2003 3:40 am
Post subject: Re: Counter script [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
M. wrote:
> Hey all,
> I have been searching the hotscripts for the last few hours
> and I found nothing really good. Grrrrr.
>
> I need a php script(s):
> - download count
> - users online (live)
> - counter that can be set to count several pages, separately...
>
> MySQL is a must.
>
> Can any of you guys & gals recommend me a really good script(s) that
> does this, please.
>
Try <a style='text-decoration: underline;' href="http://www.ekstreme.com" target="_blank">http://www.ekstreme.com</a>
no MySQL but it works nice
--
Duende
<a style='text-decoration: underline;' href="http://wipkip.us" target="_blank">http://wipkip.us</a>
<a style='text-decoration: underline;' href="http://wipkip.biz" target="_blank">http://wipkip.biz</a><!-- ~MESSAGE_AFTER~ --> >> Stay informed about: Counter script |
|
| Back to top |
|
 |  |
External

Since: Jul 04, 2003 Posts: 93
|
(Msg. 10) Posted: Sat Nov 08, 2003 4:45 pm
Post subject: Re: Counter script [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Karim <karim3411.DeleteThis@yahoo.moc> wrote in message news:<6mmvrntsylr0$.1mwggbd20yvj$.dlg@40tude.net>...
> On Fri, 07 Nov 2003 15:40:42 +0000, Firky wrote:
>
> > Karim wrote:
> >
> >> For heavy traffic sites, a counter attached to a database is not a good
> >> idea.
> >
> > Even if some of the IPs in the database are deleted after X amount of time?
>
> Everytime a page gets hit, a database connection is needed and a database
> insert is done.
yes - that would be correct.
>Collectively, this takes some resources
yes - correct again.
> (and I don't know how MySQL is optimized)
You don't? Hmm...
>and you might get database locking issues.
Why? A script to insert into a database should not need to acquire
any locks. If you're talking about a resource issue - ie, the number
of processes which can simultaneously connect to the database, then
that's not a "locking issue".
> It would be faster to save your info in a file and later do reports on it
> or import all data into the database in one shot.
No - I don't think it would. That would be ONE method though... not a
particularly bright one... but hey... it's all about choice....
Greg<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: Counter script |
|
| Back to top |
|
 |  |
External

Since: Nov 05, 2003 Posts: 14
|
(Msg. 11) Posted: Sat Nov 08, 2003 5:54 pm
Post subject: Re: Counter script [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
M. wrote:
> Yep, quite good.
> Too bad it cant be set to count each page separately...
I`m sure you could just tweak it
> Tnx anyway Firky.
>
> Regards
> m.
--
Dale,
<a style='text-decoration: underline;' href="http://www.oxygenkiosk.net" target="_blank">www.oxygenkiosk.net</a>
Now playing: Winamp stopped<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: Counter script |
|
| Back to top |
|
 |  |
External

Since: Nov 05, 2003 Posts: 14
|
(Msg. 12) Posted: Sat Nov 08, 2003 5:56 pm
Post subject: Re: Counter script [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Karim wrote:
> Everytime a page gets hit, a database connection is needed and a database
> insert is done. Collectively, this takes some resources (and I don't know
> how MySQL is optimized) and you might get database locking issues.
> It would be faster to save your info in a file and later do reports on it
> or import all data into the database in one shot.
Hhmm still not convinced, the work that MySQL does is very little I
would assume for this task. But I guess if you're talking hundreds of
people a minute or a second even...
--
Dale,
<a style='text-decoration: underline;' href="http://www.oxygenkiosk.net" target="_blank">www.oxygenkiosk.net</a>
Now playing: Winamp stopped<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: Counter script |
|
| Back to top |
|
 |  |
| Related Topics: | Script - Hey all, I have a client (dell partner) with specific need: he wants to be able to extract info, prices form ms excel/access and upload it on to web site. Also photos of products are to be uploaded to web site to specific folder using a script. What do...
FTP script ? - I have a site on Page Zone for a club I'm in. I have set it up to allow members Anonymous FTP access to the "/incoming" folder in order to upload photos for posting. I have a page designed with a form with a "file browse" box. What...
Does anyone know where I can get a script like this.....? - Hi All, Just wanted to know if anyone knew where I could find a script like the one featured on http://www.domaintwister.com Basically, you enter a word, it combines it with some predetermined one and then does a whois check. Ive search cgi-resources,....
Where to get script for form? - Hi, I would like to have a "newsletter subscription" form on my site as seen on many web sites. I want to collect the email addresses of visitors wishing to be on my mailing list. I think I need a PERL script for this but I'm not sure. Can ...
No Flash? script - Hi Guys Anybody know a way to automatically display a graphic rather than a swf file if the browser hasn't got flash installed? I don't want to force people to see a 'Do you want to download Flash?' message box, but I also don't want to leave a big gap... |
|
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
 |
|
|