I'm new here, so firstly, Hi and thanks for a great product!
When I click to the last stage of an image, I get this error:
Forbidden You don't have permission to access /compshop/images/carriage_hall/5th_-_6th_may_2007/p1020557.JPG on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. Apache/1.3.37 Server at www.justimagineit.co.uk Port 80
I have checked the permissions to the folders etc, but can't figure out why it's doing it!
Add this to /plogger/admin/plog-admin-functions.php to, lines 59-64 inc
// cannot use move_uploaded_file here, because plog-import uses the same function and // and doesn't deal with uploaded files //if (!move_uploaded_file($tmpname,$final_fqfn)) { if (!rename($tmpname,$final_fqfn)) { $result['errors'] .= 'Could not move file! ' . $tmpname .' to '.$final_fqfn; return $result; } else { // You will want to add this to your code. chmod ($final_fqfn, 0644); // You will want to add this to your code. } // You will want to add this to your code.