WHat could do this...? User id is not allowed t access

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
craka
Forum Newbie
Posts: 21
Joined: Thu Jul 11, 2002 9:04 pm

WHat could do this...? User id is not allowed t access

Post by craka »

Warning: SAFE MODE Restriction in effect. The script whose uid is 544 is not allowed to access /tmp/f072d2872.tmp owned by uid 0 in /listmail/edituser.php on line 357

Warning: fopen("/tmp/f072d2872.tmp","r") - Success /listmail/edituser.php on line 358

Warning: Supplied argument is not a valid File-Handle resource in /listmail/edituser.php on line 358

Does anyone know what could do that?
qartis
Forum Contributor
Posts: 271
Joined: Sat Dec 14, 2002 4:43 pm
Location: BC, Canada
Contact:

Post by qartis »

Your PHP is running in safe mode, on a unix server I'm guessing?

PHP (well, apache really) has insufficient permissions to open the file.

The third warning is because you're trying to perform an operation on the failed file pointer, which never successfully opened the file.
Post Reply