The "Top Link" Link With The Most Clicks!
The "Top Link" Link With The Most Clicks!
Can you add the link with the most clicks to the version 2.01. This was not carried over. You can send me the corrected file and I can insert it myself.
Re: The "Top Link" Link With The Most Clicks!
Click on the "Click (Total)" table column and links will be sorted by number of clicks 

Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: The "Top Link" Link With The Most Clicks!
Yes, thanks for the reply. Works great.
Re: The "Top Link" Link With The Most Clicks!
Ccount 2.0.2 is a great script. I searched hard for a script like this. I have been using it since December, 2014.
Is it still not possible to have Ccount to sort the links by Clicks (total) automatically, rather than the Added Date of the link?
Every time I log into Ccount, it automatically sort links by the date they were added. I want it to sort links by Clicks (total) automatically when logging in.
Thanks.
Is it still not possible to have Ccount to sort the links by Clicks (total) automatically, rather than the Added Date of the link?
Every time I log into Ccount, it automatically sort links by the date they were added. I want it to sort links by Clicks (total) automatically when logging in.
Thanks.
Open-source software has been changing lives since 1998.
Re: The "Top Link" Link With The Most Clicks!
The tablesorter plugin is very flexible and allows this.
Open file "admin/admin_header.inc.php" in an editor and find line:
Just below that line add
The first digit is column index (starting from 0, so 2 actually means "sort by 3rd column").
The second digit meaning is 0 = ascending, 1 = descending
So if you wanted to automatically sort by unique clicks (4th column) in descending order you would use
Open file "admin/admin_header.inc.php" in an editor and find line:
Code: Select all
theme : "bootstrap",
Code: Select all
sortList: [[2,0]] ,
The second digit meaning is 0 = ascending, 1 = descending
So if you wanted to automatically sort by unique clicks (4th column) in descending order you would use
Code: Select all
sortList: [[3,1]] ,
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: The "Top Link" Link With The Most Clicks!
Perfect!
works just fine.
I love this script and hope support continue. I will play my part in supporting this script, because it is free and very valuable.
Thank you.
Code: Select all
SortList: [[2,1]],
I love this script and hope support continue. I will play my part in supporting this script, because it is free and very valuable.
Thank you.

Open-source software has been changing lives since 1998.