Page 1 of 1

Findmore plug-in

Posted: Wed Jun 21, 2006 3:41 pm
by Kossatsch
I'd like to costumize the findmore plug-in, but when I try to add an image (via FTP) to the findmore plugin directory, I get an error 550 (the image has about 4KB). The same thing happens at any other directory.

Any idea how to change this?

NB: Directory rights are set to 755.

Re: Findmore plug-in

Posted: Wed Jun 21, 2006 3:56 pm
by garvinhicking
Hi!

Plugins downloadded through Spartacus automatically will get the owner of your webserver user. Depending on your server/provider, this owner will not grant access to your FTP user.

You have several options to solve this:

1. Configure the spartacus plugin and there you can set the ownership and permissions for NEW downloaded plugins and directories. This will only prevent future problems, though.

2. Ask your provider/sysadmin to make your FTP user be within the same group like the PHP/Webserver user so that you can access the files.

3. Create a little PHP script fixperm.php:

Code: Select all

<?php
chmod('/path/to/your/plugin/dir', 0777);
?>
and call it in your browser.

4. Ask your provider/sysadmin to change the permissions/ownerships for you.

HTH,
Garvin