sharmeen Posted January 17, 2008 Share Posted January 17, 2008 Hi all, Below is the code I used for counting the number of hits on my website. I have been using this code successfully in windows environment. However, while using the same code in Linux, this code does not work. Can anyone please help!! <?php $count_my_page = ("hitcounter.txt"); $hits = file($count_my_page); $hits[0] ++; $fp = fopen($count_my_page , "w"); fputs($fp , "$hits[0]"); fclose($fp); ?> Best regards, sharmeen Link to comment https://forums.phpfreaks.com/topic/86445-problems-with-hit-counter-code/ Share on other sites More sharing options...
pdkv2 Posted January 17, 2008 Share Posted January 17, 2008 simply check the permissions for the "hitcounter.txt" file on Linux server it should have write permission to the apache user. Rgds Sharad. Link to comment https://forums.phpfreaks.com/topic/86445-problems-with-hit-counter-code/#findComment-441774 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.