Page 1 of 1
adds count every time the page is loaded
Posted: Sat Aug 07, 2010 11:47 am
by rhawkes
Script URL:
Version of script:1.2
Hosting company: Go Daddy
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
CCounter adds a click count to every link I have assigned every time the web site is loaded as well as every time someone clicks on it. Did I do something wrong maybe or is this normal.
Thanks
Ron
Posted: Sat Aug 07, 2010 5:01 pm
by Klemen
It's not normal, it's because you have a ccount link loaded every time you load a page.
If you post the URL to the problematic page I might be able to check and help.
Posted: Sat Aug 07, 2010 5:46 pm
by rhawkes
Klemen wrote:It's not normal, it's because you have a ccount link loaded every time you load a page.
If you post the URL to the problematic page I might be able to check and help.
www.mainesportsreport.com
Thanks
Ron
Posted: Sun Aug 08, 2010 9:46 am
by Klemen
You are loading
images with ccount. This is how you use it:
<a href="URL"><img src="CLICK.PHP"></a>
It should be the other way around:
<a href="CLICK.PHP"><img src="IMAGE.GIF"></a>
An exmaple from your website. You are using:
Code: Select all
<a href='http://www.mykdkdesigns.com' target=new><img border=4 alt='image 1' src='http://www.mainesportsreport.com/ccount/click.php?id=4'></a>
But it should be:
Code: Select all
<a href='http://www.mainesportsreport.com/ccount/click.php?id=4' target=new><img border=4 alt='image 1' src='http://www.mainesportsreport.com/constant/KDK125px.jpg'></a>
And
http://www.mainesportsreport.com/ccount/click.php?id=4
should then redirect to mykdkdesigns.com
Posted: Sun Aug 08, 2010 10:22 am
by rhawkes
Thank you very much. I copied the code you said I should be using and replaced what I had and now when I click on the image it opens a new window with a picture of the button or banner ad but does not go to the web page.
Ron
Klemen wrote:You are loading
images with ccount. This is how you use it:
<a href="URL"><img src="CLICK.PHP"></a>
It should be the other way around:
<a href="CLICK.PHP"><img src="IMAGE.GIF"></a>
An exmaple from your website. You are using:
Code: Select all
<a href='http://www.mykdkdesigns.com' target=new><img border=4 alt='image 1' src='http://www.mainesportsreport.com/ccount/click.php?id=4'></a>
But it should be:
Code: Select all
<a href='http://www.mainesportsreport.com/ccount/click.php?id=4' target=new><img border=4 alt='image 1' src='http://www.mainesportsreport.com/constant/KDK125px.jpg'></a>
And
http://www.mainesportsreport.com/ccount/click.php?id=4
should then redirect to mykdkdesigns.com
Posted: Sun Aug 08, 2010 12:10 pm
by Klemen
In the CCount admin panel you need to modify the URL from the image URL the target page URL. The URL needs to be set to the URL you want CCount to redirect people to.
Thank you
Posted: Sun Aug 08, 2010 1:06 pm
by rhawkes
That took care of it. Thanks for all your help, really appreciate it.
Ron