Seite 1 von 1

Change the login screen

Verfasst: Mi 5. Nov 2008, 12:59
von ikbenivo
I'd like to change the images in the login screen. I don't like the dancing people (not very professional). When I try to overwrite the images I get an 'permission denied' error. Any thoughts?
(since appache is the owner, I can't change any permissions)

Verfasst: Mi 5. Nov 2008, 13:08
von deemes
Delete the files through PHP.

e.g. unlink("path/to/image");

Now you'll be able to upload the images via FTP.

Verfasst: Mi 5. Nov 2008, 13:37
von ikbenivo
thanks. But I cannot upload a new file either, so if I delete that file I can't upload the new file to replace it.

Verfasst: Mi 5. Nov 2008, 14:11
von deemes
I see...

Try to upload a file in your document root (you should be able to upload into it) and move that file with PHP afterwards: rename()

Verfasst: Mi 5. Nov 2008, 14:20
von ikbenivo
That did the trick! Thanks!