Archive

Archive for the ‘2.1.Zeta’ Category

Patches for 2.1 Zeta

October 13th, 2009 misiek303 No comments

I have released two patches for 2.1 Zeta version. Some of the most known issues has been fixed, such us

  • downloading the files via browser and email
  • dropZone
  • deleting folders / moving to trash
  • adding users (groups related)
  • Quota for folders
  • groups/sharing
  • calculation folders size (2nd patch only)

Little issues not listed, next time I will be better with documentation, maybe some changelog ?!

Second patch “bh21z.patch.2″ for linux users only (OSX may work too, however not tested, see the source before use).

Please apply all patches in correct order. Downloads available here

Best

Categories: 2.1.Zeta, Bugs, Version, development Tags:

Zeta Bug Report!!

August 10th, 2009 Mike No comments

Problem:  A user with View privileges to a File/Folder can move said File/Folder thus causing a non-read action known as a delete to the file.

Explanation: The Move command was created by duplicating the copy command and making the needed changes.  Unfortunately 2 lines too many where re-used, specifically in the database install scripts.

Fix:  Delete the privledge entry from the database using the following SQL queries (Works on MySQL)

DELETE FROM `bh2_modulesaccesslevel` WHERE CONVERT(`bh2_modulesaccesslevel`.`module` USING utf8) = ‘movefolder’ AND CONVERT(`bh2_modulesaccesslevel`.`accesslevel` USING utf8) = ‘1′ AND CONVERT(`bh2_modulesaccesslevel`.`status` USING utf8) = ‘1′ LIMIT 1;

AND

DELETE FROM `bh2_modulesaccesslevel` WHERE CONVERT(`bh2_modulesaccesslevel`.`module` USING utf8) = ‘move’ AND CONVERT(`bh2_modulesaccesslevel`.`accesslevel` USING utf8) = ‘1′ AND CONVERT(`bh2_modulesaccesslevel`.`status` USING utf8) = ‘1′ LIMIT 1;

Or in simpler SQL command…

DELETE FROM `bh2_modulesaccesslevel` WHERE `bh2_modulesaccesslevel`.`module` = ‘movefolder’ AND `bh2_modulesaccesslevel`.`accesslevel` = ‘1′ AND `bh2_modulesaccesslevel`.`status` = ‘1′;

and

DELETE FROM `bh2_modulesaccesslevel` WHERE `bh2_modulesaccesslevel`.`module` = ‘move’ AND `bh2_modulesaccesslevel`.`accesslevel` = ‘1′ AND `bh2_modulesaccesslevel`.`status` = ‘1′;

Out Come:  Future software releases – Release B and above will have this issue resolved.  ETA August 25, 2009 (with additional improvements).

Apology:  We sincerely apologize for any inconvenience which this bug may affect you with.

Gratitude: We thank you for your patrionage.

Categories: 2.1.Zeta, Bugs, News Tags: