View Full Version : php online script


babyface_90
07-28-2006, 01:01 PM
heya everyone, i'm having slight problems with a script i downloaded. It was the users online script from Phponline.biz. I've followed the instructions correctly and i'm still getting errors.

www.sweetdreamz.fruitydazzle.com/online/online.php

That's what i get. Instead it should display 1. What am i doing wrong?

Douglas
07-28-2006, 03:35 PM
You can't use the slash in front of an address while using the fopen() function, you current have:

/online/data/online.txt

It should be:

online/data/online.txt

babyface_90
07-29-2006, 05:29 PM
i don't know what to change because i didn't write the script. It used to work before but now its not, no idea why, i just followed the tut from pixelFX. Thanks for the help anyways. i would post the script here but it slows down my whole computer when i try to...so i'll try to find an alternative unless anyone else has any other suggestions or a really good php online script you can recommend. thanks xxx

Douglas
07-30-2006, 12:11 AM
Well all you have to do is open that PHP file in your text editor, use the 'Replace' function, the text that needs to be replaced is:

/online/data/online.txt

And it should be replaced with:

online/data/online.txt

Then save it and reupload it.