Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: Hits Counter

  1. #1
    Member
    Join Date
    Sep 2007
    Posts
    38
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default

    I added this code to my login page
    $counter_array = file("counter.dat");
    $all = $counter_array[0]+1;
    $fp = @fopen("counter.dat","wb");
    @fputs($fp,$all);
    @fclose($fp);

    echo '
    Total hits: '.$all.'
    ';



    But got the following error

    Warning: file(counter.dat): failed to open stream: No such file or directory in /home/******/public_html/login.php on line 21

    Can anyone tell me how to fix it please ..Many thanks Tz

  2. #2
    Senior Member
    Join Date
    Jul 2007
    Location
    United States
    Posts
    587
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default

    your counter.dat file is missing in ur dir
    Failure is not when a girls leaves you, its only when you let her go virgin. heheh!!

    <span style="color:#9ACD32"><span style="font-size:36pt;line-height:100%">[Only registered and activated users can see links. Click Here To Register...]</span></span>

    [Only registered and activated users can see links. Click Here To Register...]

  3. #3
    Member
    Join Date
    Sep 2007
    Posts
    38
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Post

    thanks, i gathered that much but dont know how to create a file for it

  4. #4
    Senior Member
    Join Date
    Jun 2006
    Posts
    1,096
    Thanks
    2
    Thanked 75 Times in 42 Posts
    Rep Power
    0

    Default

    just open notepad then save as counter.dat then upload

  5. #5
    Senior Member WhiteWarrior's Avatar
    Join Date
    Apr 2007
    Location
    Space
    Posts
    1,421
    Thanks
    1
    Thanked 17 Times in 10 Posts
    Rep Power
    18

    Default

    Code:
    echo "Site Hits: ";
    $fp=fopen("count.txt","a+"); fputs($fp,"1"); fclose($fp); $fp1=filesize("count.txt");
    echo "$fp1";
    make a new file and call it count.txt and cmod it to 777 and it will count hits for you.

  6. #6
    Member
    Join Date
    Sep 2007
    Posts
    38
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default

    Thank you, I will give that a go, ..one other thing what doe cmod77 mean ?

  7. #7
    Senior Member WhiteWarrior's Avatar
    Join Date
    Apr 2007
    Location
    Space
    Posts
    1,421
    Thanks
    1
    Thanked 17 Times in 10 Posts
    Rep Power
    18

    Default

    have you worked it out yet?.. lol

  8. #8
    Senior Member blackhowk's Avatar
    Join Date
    Jul 2006
    Location
    Bucharest
    Posts
    411
    Thanks
    0
    Thanked 2 Times in 2 Posts
    Rep Power
    0

    Default

    or try this.
    [Only registered and activated users can see links. Click Here To Register...]
    [Only registered and activated users can see links. Click Here To Register...]

  9. #9
    Member
    Join Date
    Sep 2007
    Posts
    33
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default

    No not yet

  10. #10
    Member
    Join Date
    Apr 2007
    Posts
    51
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Post

    $counter_array = file("counter.dat");
    $all = $counter_array[0]+1;
    $fp = @fopen("counter.dat","wb");
    @fputs($fp,$all);
    @fclose($fp);

    echo &#39;
    Total hits: &#39;.$all.&#39;
    &#39;;


    its working fine.. you can upload this.... hope your prob will be solve after this

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Image Hits Counter With Database Help
    By Phpnewb in forum Site / Script testing and error fixing
    Replies: 2
    Last Post: 22-08-08, 00:05
  2. wap page counter with images
    By blackhowk in forum Scripts Forum
    Replies: 2
    Last Post: 20-04-07, 07:19
  3. Counter
    By subzero in forum Design - Templates - Graphics
    Replies: 1
    Last Post: 04-04-07, 06:37
  4. How To Add Info To A Counter Image
    By stretch in forum Coding Forum
    Replies: 1
    Last Post: 15-09-06, 23:12

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

SEO by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19