Open GoogleCodeExporter opened 8 years ago
i listed the issue yesterday and the solution to download r375.
I think it did not work for you because the database was already created.
start with a fresh r375 and then update it and it will work.
hopefully the developer will fix this soon.
Original comment by j...@ittronix.com
on 16 Apr 2013 at 8:22
Thanks. I found another brute-force method.
Alter upload-from-computer.php by adding comments to the checks for
CLIENTS_CAN_UPLOAD in lines 17-19
(or you can simply replace the first line with $allowed_levels[] = 0;
$allowed_levels = array(9,8,7);
/* if (CLIENTS_CAN_UPLOAD == 1) { */
$allowed_levels[] = 0;
/* } */
include('header.php');
This worked and didn't require me to re-setup my site.
Thanks for the tip, though!
Original comment by redheart...@gmail.com
on 16 Apr 2013 at 9:31
Patch file has been posted for r405 here:
http://code.google.com/p/clients-oriented-ftp/issues/detail?id=265
You can also go into your database and run the following sql query:
INSERT INTO `tbl_options` (
`id` ,
`name` ,
`value`
)
VALUES (
'37', 'clients_auto_approve', '0'
), (
'38', 'clients_can_upload', '0'
);
Please be aware the 37 and 38 may need to be larger numbers. Increment the
value as needed.
Original comment by shawn.k...@gmail.com
on 19 Apr 2013 at 5:24
Original issue reported on code.google.com by
redheart...@gmail.com
on 16 Apr 2013 at 6:16