Wordpress Organizer
Organizer is a worpress plugin. This plugin help the wordpress users to manage the files uploaded to their blog. These are some the feature of this plugin.
- View all files uploaded in you wp-content/uploads directory and all the sub directories or the directory you have set to store your uploads
- Copy / Rename / Delete files in the uploads directory
- Create / Rename / Delete directories
- Upload files to the uploads directory
- Resize image files on your uploads directory
- Supports mutiple users and permissions
- Changes the filenames automatically in your post when you change the filenames in your upload directory
- Changes the attachment post to maintain the post cross links
- Supports roles and you can set permission based on each user what can do with this plugin.
- More to come….
To download the latest organizer follow the links bellow
140 Comments
RSS feed for comments on this post.
Sorry, the comment form is closed at this time.
hi there, thanks for your spam
notification. really like the plugin.
two questions:
1) can i move files under /wp-admin/ and integrate it into wp completely? would this be big effort?
2) do you think its possible to include an options-setting that allows to set a specific subfolder for contributors? I’m thinking of a structure like /uploads/user_nice-name/
as this would allow a better management of each users own files.
I’m trying to get this feature to work for some hours now and would be happy to hear your opinion on this as i’m lacking of coding-skills here :-O
kudos to you for a great plugin.
Comment by erik — April 9, 2006 @ 6:55 pm
with 1) i’m talking about the plugin-files of course.
Comment by erik — April 10, 2006 @ 12:50 am
In the new version of the Organizer the plugin all files stays in wp-content/plugins folder. No need to move any files. In Old version I was really stupid and I didnt know how to write a proper plugin for wordpress. Even now to some extent I dont know
Comment by Imthiaz — April 10, 2006 @ 7:17 am
[...]   Organizer,用于管ç?†ä¸Šä¼ æ–‡ä»¶ï¼Œåˆ é™¤/建立/移动ç‰ç‰æ“?作。 organizer upload [...]
Pingback by Blogging Pro China » Blog Archive » WordPress Plugin: Organizer — April 10, 2006 @ 3:33 pm
well you did a great job! i feel comfotable with this plugin, but something i’m missing with all plugins that handle image or file-uploads (and i’ve tested a few … i like the structured blogging thing too):
none of the plugins has the option to set rules for specific users. well your plugin comes closest but what i am missing is not to turn uploading on/off for specific users, i just dont wouldn’t want them to access one and the same folder. get me?
if user “Adam XY” would login i guess it was better structure (and thus better Organized) to only let him access his user specific subfolder. (for example named like his nicename) /wp-content/uploads/adam-xy/
That would lead to a better file-structure, a faster orientation by the user in the folder and prevent accidentially deleted files by another user.
im not a coder and you probably know your own plugin the best, so maybe you can tell how to implement this feature.
after checking if the logged in user has capabilities to upload
1) check if /path/to/upload-folder/ contains a subfolder named after the “user_nicename” value stored in “users”
2) if not create this folder
3) change the dir to this subfolder and make sure the logged in user cant get a level above his subfolder.
no big deal, right?
hehe
kindly regards. and much thank yous in advance
Comment by erik — April 11, 2006 @ 3:11 am
16-Apr-2006 - Version 1.1.0
- Added user level directory uploads
- Added user level extension
- Added user level upload limits
- Added user level upload quota
- Fixed directory permission bug
Comment by Imthiaz — April 16, 2006 @ 3:00 pm
I grabbed the organizer this evening and used it to rename 70+ images that I had previously imported from blogger. Thank you for this amazing plug-in! Well done Imthiaz. Serious amounts of thanks.
Comment by Gary Ploski — April 24, 2006 @ 4:50 am
the same goes for me. i didn’t really expect that you would add my wanted features so quick. so i’m twice as happy to have a very user-(and also admin- ) friendly upload-tool !!! its a pleasure to see how well written this piece of code is. it helps a lot to understand wp’s plugin-api …
Comment by erik — April 26, 2006 @ 9:14 pm
Hi Erik
Thank you very much for supporting me with Organizer. Your contribution so far is great. You are pushing me dude. Thanks for the German translation. I have update the files. Have fun
Comment by Imthiaz — April 26, 2006 @ 11:54 pm
Hey there, interesing plugin,
though its having a problem figuring out what URL to use.
all the javascripts, and images refer to the real server locations instead of the locations relative to the web domain root.
e.g.
/home/httpd/www/wp-content
instead of
http://www.mywebsite.com/wp-content
so im getting urls like this:
http://www.mywebsite.com/home/httpd/www/wp-content
and none of the javascript or images work..
any ideas?
Comment by 1mil — May 3, 2006 @ 7:35 am
I fixed it.
a variable called $organizer_path needs to be corrected in your code.
I was wondering how do you add files to posts?
Comment by 1mil — May 3, 2006 @ 7:55 am
Nice plug-in!!!
a suggestion: I found it beacuse I was looking for a tool to change the DESCRIPTION of an image already uploaded. This function is not provided in your plug-in. I think it would turn it in a must!
Comment by battino — May 12, 2006 @ 2:28 pm
hi Imthiaz,
like to use your plug, but could not find any directory where this function should do its work.
do you have a hint?
do you know if it works with Bad Behavior?
thnx
Comment by researcher — May 19, 2006 @ 12:40 pm
Wonderfull Plugin, very usefull!
One question, is it possible to make is available to users with “author” priviledges. Is there something that I can change to make that happen?
Comment by lou — May 20, 2006 @ 7:03 pm
Hi Lou
Organizer supports Role manager plugin.
If you install role manager plugin you can assign roles for each user what options they can use in organizer plugin.
http://www.redalt.com/wiki/Role+Manager
Comment by Imthiaz — May 20, 2006 @ 7:20 pm
hi Imthiaz
thank you very much for developing organizer. after trying a variety of file-manager plugins for wordpress, yours is by far my first choice. I have installed it and will use it in future. still I have some propositions / wishes:
1) first I would like you to implement a bugfix already mentioned by 1mil. your script does not seem to work with any host. ie. my host returns somewhat like /home//public_html/wordpress/… for dirname(__FILE__) while $_SERVER['DOCUMENT_ROOT'] returns /var/webs//public_html. this circumstance makes your path-replacement useless. instead I wrote some lines to fix this and hope it works on every single host. the hack is dirty, so I would wellcome any better solution.
however, heres my code:
$root_tree = explode(’/', $_SERVER['DOCUMENT_ROOT']);
$root_count = count($root_tree)-1;
$root_last = $root_tree[$root_count];
list($root_path, $organizer_path) = split($root_last, dirname(__FILE__));
replaces:
$organizer_path = str_replace($_SERVER['DOCUMENT_ROOT'],”",$organizer_path);
2) my other issue also concerns a prior post by 1mil. I am definitely missing a convenient way to add uploaded files to a post. currently, the only way seems to be copy-pasting of the address. I already tried to copy an uploaded file to .thumbnail. (same pattern as wp files) and resize this image to thumbnail-size, without success. any suggestions?
3) it is not yet possible to move files within the path hierarchy, is it?
Comment by ade — May 28, 2006 @ 12:22 am
well, it’s me again. a short inspection of the official upload script brought light into the image-publication-issue. I don’t know whether you have already seen this, but wp creates a variety of db-tables for attached pictures, such as:
a) wp_post
here comes all the basic information about the attachment:
ID = internal id, same as post_id
post_author = id of the registered user
post_content = description (as requested by battino)
post_title = display-title
post_category = you could even create categories for images!
post_status = set to “attachment” for identification
post_name = same as title, without spaces
post_parent = where it was uploaded
guid = absolute path in browser
post_mime_type = ie. image/jpeg
b) wp_postmeta (1)
meta_key = _wp_attached_file
meta_value = absolute path in file-system
c) wp_postmeta (2)
meta_key = _wp_attachment_metadata
meta_value = a variety of properties such as height, width, as well as thumbnail information
to display uploaded files on the “write post”-page, only row a) is needed. in my humble opinion, adding the management of these db-entries to your plugin would really make organizer THE file-/attachment-plugin. of course I am aware of the work this would take, so it is only a friendly proposition
Comment by ade — May 28, 2006 @ 1:20 am
真的是很ä¸?é”™,,,,,我支æŒ?ä½ ä»¬,,,
Comment by yen — June 5, 2006 @ 8:22 am
Hmm, I’m obviously doing something amazingly wrong and dumb, because after uploading the files, activating the plugin and accessing the menu, I can select the directories in the drop down list, but then nothing happens. (In IE6 and Firefox 1.5), i.e. the browser just “sits” there. Uploading file invariably produces “Filetype not allowed to upload” (I have Role Manager installed and permissions are set correctly.)
Any clues?
Comment by Sadly, No! — June 9, 2006 @ 11:55 pm
It was an small issue with the file extension case. I have fixed it and updated the file.
Comment by Imthiaz — June 13, 2006 @ 10:24 pm
Ok, what am I doing wrong?
I have put the directory “organizer” and all it’s files under the /plugins. When I activate the it at the plugin page, there is an error message at the top of my screen:
Warning: opendir(/home/content/m/o/m/momgeek/html/wp-content/uploads): failed to open dir: No such file or directory in /home/content/m/o/m/momgeek/html/wp-content/plugins/organizer/plugin_functions.php on line 173
Would greatly appreciate any help.
Comment by Tina — June 16, 2006 @ 7:08 pm
Can I do multiple upload?
Comment by Tina — June 18, 2006 @ 8:18 pm
Great plugin. I like being organized.
Comment by Tina — June 19, 2006 @ 1:40 am
great pluggin,
but will not upload mp3’s larger than 2Mb, with no indication of the problem, until we tried smaller files… even when the user file size limits are set to 0 0 (unlimited)…. any suggestions?
thank you!
Comment by jeffmore — June 21, 2006 @ 9:04 pm
Jeffmore,
The problem may lie on your server. Check that your server allows uploads larger than 2MB. You can usually override the default setting with a htaccess directive. Ask your ISP for help.
M
Comment by marius — June 26, 2006 @ 12:58 am
Hi,
I also had the problem 1mil and ade encountered: where paths to the scripts, CSS, and images were broken. The fix ade offered above didn’t work for me and produced additional errors I didn’t understand.
All I did was replace:
$organizer_path = organizer_fix_windows_path(dirname(__FILE__));$organizer_path = str_replace($_SERVER['DOCUMENT_ROOT'],”",$organizer_path);
$organizer_path = organizer_fix_organizer_path(organizer_fix_windows_path($organizer_path));
with:
$organizer_path = 'wp-content/plugins/organizer';and it seems to work just fine now…
Is there another, better way to handle this?
Comment by Mike — July 5, 2006 @ 11:35 pm
I agree with ade who said:
Comment by kalico — July 7, 2006 @ 11:10 am
Whoops, sorry about that — guess I didn’t close my citation. Only that first paragraph was ade — the rest was me.
Comment by kalico — July 7, 2006 @ 10:12 pm
Nice Plugin! I find it very useful.
I have one feature request though: Multiple uploads. Thanks!
Comment by Tor — July 12, 2006 @ 11:22 pm
Hi there
Firstly, this is a great plugin!
However I’m having a few problems with it. Under “Image functions”, I get the following error:
Fatal error: Call to undefined function: get_image_type() in /home/username/public_html/wp-content/plugins/organizer/page/view.php on line 314
So I can’t “Copy / Rename / Delete files in the uploads directory” or anything similar. Do you have any ideas on how I can fix this?
Thanks
Comment by Andrew — July 14, 2006 @ 4:40 pm
Hi there,
I get the following errors when attempting to install:
Warning: open_basedir restriction in effect. File is in wrong directory in /usr/local/psa/home/vhosts/brokensoapbox.com/httpdocs/wp-content/plugins/organizer/plugin_hook.php on line 50
Warning: open_basedir restriction in effect. File is in wrong directory in /usr/local/psa/home/vhosts/brokensoapbox.com/httpdocs/wp-content/plugins/organizer/plugin_hook.php on line 51
Warning: open_basedir restriction in effect. File is in wrong directory in /usr/local/psa/home/vhosts/brokensoapbox.com/httpdocs/wp-content/plugins/organizer/plugin_hook.php on line 52
Warning: Cannot add header information - headers already sent by (output started at /usr/local/psa/home/vhosts/brokensoapbox.com/httpdocs/wp-content/plugins/organizer/plugin_hook.php:50) in /usr/local/psa/home/vhosts/brokensoapbox.com/httpdocs/wp-admin/plugins.php on line 15
thanks,
json
Comment by json — July 16, 2006 @ 9:01 pm
[...] RECOMMENDED: Organizer is a great WordPress Plugin that allows you to manage and upload files. [...]
Pingback by BusinessBlogHive.com » Blog Archive » Organizer Plugin — July 20, 2006 @ 5:22 pm
I am getting some errors
Warning: move_uploaded_file(d:/inetpub/ahfactory/vb/wp-content/uploads/Wind/Sailing/test/1.jpg): failed to open stream: Permission denied in d:\inetpub\ahfactory\vb\wp-content\plugins\organizer\page\upload.php on line 39
Warning: move_uploaded_file(): Unable to move ‘C:\PHP\uploadtemp\php90F7.tmp’ to ‘d:/inetpub/ahfactory/vb/wp-content/uploads/Wind/Sailing/test/1.jpg’ in d:\inetpub\ahfactory\vb\wp-content\plugins\organizer\page\upload.php on line 39
I set all permission to 777 but I don’t know if that is smart.
Also, where did it get “C:\PHP\uploadtemp\php90F7.tmp”?
Thanks for any help. I can tell this is going to work great.
Doug
Comment by doug — August 1, 2006 @ 8:27 pm
Having the same problem as post 31. Cannot install at all. Any thoughts?
Comment by Albert Roman — August 2, 2006 @ 3:43 am
WordPress Plugin : Organizer…
åŠæœˆè¨˜ » Organizerプラグインã§ç´¹ä»‹ã•れãŸãƒ—ラグインã§ã™ãŒã€é¢ç™½ãã†ãªãƒ—ラグインãªã®ã§ã€ã†ã¡ã®ã‚µã‚¤ãƒˆã§ã‚‚使ã†ã“ã¨ã«ã—ã¦ã¿ã¾ã—ãŸã€‚ã¡ãªã¿ã«æ—¥æœ¬èªžåŒ–も・・・
……
Trackback by orioa — August 7, 2006 @ 10:32 am
[...] Organizer Plugin-Seite | Download Fügt dem Admin-Menü im Backend einen neuen Eintrag “Organizer” hinzu, mit dem sich recht einfach der Upload-Ordner verwalten lässt. Sehr nützlich, besonders wenn der Ordner irgendwann mal unübersichtlich wird WP Admin Bar 2 Plugin-Seite | Download Sehr chices Plugin. Sobald man als Admin oder User im Blog angemeldet ist, erscheint im Live-Modus des Blogs oben die Admin Bar. In ihr findet sich das Backend-Menü, so dass man ganz einfach hin- und hernavigieren kann. Auch zum Abmelden muss man nicht erst den “Meta”-Eintrag in der Sidebar suchen. [...]
Pingback by Thoughtcatcher » Blog Archive » Neue Wordpress-Plugins im Blog — August 8, 2006 @ 11:56 pm
Hmm… My Wordpress installation is in the /wp directory. The 5/28 suggestion by ade wasn’t sufficient to fix the $organizer_path. [The app was still throwing Javascript errors complaining about not being able to find the function organizer_jump_directory.
When I hard coded the path to the organizer directory in the function
organizer_add_files_to_admin_head
all seems to be well. Not a long term solution (since I’m supporting multiple sites), but enough to convince myself that this is way cool.
Plan to use it along with .htaccess authentication for a simple document store that should be moderately private.
Comment by nes — August 29, 2006 @ 3:30 am
Hi, your plugin is precisely what I’ve been looking for in order to organize & make available a large number of documents for our school organization. I have a problem launching the plugin, perhaps I’m missing something - if this has an obvious answer please point me to where I can self educate:
I received the following error after installing, activating Organizer, then attempting to go to the Organizer page:
Request denied by WatchGuard HTTP proxy.
Reason: IPS matched signature id=’2307′
Method: GET
Host: http://www.nkoptions.wednet.edu
Path: /wp-admin/admin.php?page=organizer/page/index.php
Is there any immediately obvious reasons this might be happening? I am sending a request to the hosting site as well to know if their WatchGuard configuration is particularly restrictive - however every other WP function & plugin has been working very smoothly.
Thanks in advance - Paul
Comment by Paul Mc. — September 4, 2006 @ 4:25 am
Hi,
maybe I’ve overseen it, but: is it possible to change the upload path not relative, but absolute? Means: I would like to use a different server for managing the files, not the server, where wp resides. Is this possible?
Thanks Peter
Comment by Peter — September 15, 2006 @ 2:18 pm
[...] התוסף × ×›×ª×‘ ×¢“×™ ×חד ×ימטי××–. חוץ ×ž×”×ª×¨×’×•× ×œ×¢×‘×¨×™×ª, ×’× ×”×•×¡×¤×ª×™ מספר ×©×™× ×•×™×™× ×¢×œ ×ž× ×ª לעשות ×ת ×”×ª×¨×’×•× ×©×œ× ×™×•×ª×¨. ×‘×™× ×ª×™×™× ×œ× ×”×™×™×ª×” תגובה מ×ימטי××– על ×”×©×™× ×•×™×™×, ××– ×× ×™ מספק ×ת התוסף בכללותו. [...]
Pingback by :: ×ž×™×•×ž× ×™×• של לקוח :: » ×רכיון » ×חד וחצי ×ª×•×¡×¤×™× — September 25, 2006 @ 3:18 pm
Just to let you know, your plugin does not play well with the WordPress WWW Redirect Plugin (http://www.justinshattuck.com/wordpress-www-redirect-plugin/).
It has a feature to redirect any requests to index.php to /, which breaks your plugin, resulting in errors such as:
Warning: main(/home/website/public_html/wp-content/plugins/organizer/page/) [function.main]: failed to open stream: Success in /home/website/public_html/wp-admin/admin.php on line 72
Warning: main(/home/website/public_html/wp-content/plugins/organizer/page/) [function.main]: failed to open stream: Success in /home/website/public_html/wp-admin/admin.php on line 72
Warning: main() [function.include]: Failed opening ‘/home/website/public_html/wp-content/plugins/organizer/page/’ for inclusion (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/website/public_html/wp-admin/admin.php on line 72
Disabling that feature in that plugin allowed your plugin to work correctly.
Comment by rustyvz — October 1, 2006 @ 8:27 am
Hi Imthi!
just a minor request: maybe you wanna add some
sort($folders)in the according function. In my case Organizer uses the websites’ root-folder - so having a lot of subfolders looks very chaotic when the foldernames aren’t sorted. cuComment by Erik — October 15, 2006 @ 9:12 pm
[...] Organizer - This plugin allows you to create and upload files from the web browser without having to fire up your FTP program. It’s especially helpful on blogs with multiple users who aren’t tech savvy. The only downside is if they don’t know the “rules†things can get messy and disorgainzed very quickly. [...]
Pingback by 我爱wordpress » Wordpress的一些seoæ’ä»¶(english) — October 21, 2006 @ 5:54 am
[...] Wordpress Organizer [...]
Pingback by The WordPress Podcast · Episode 8: Dealing with splogs, posting by e-mail and more — October 24, 2006 @ 9:27 am
I’m getting a javascript error when trying to choose different directories:
organizer_jump_directory is not defined
index.php (line 1)
onchange
Comment by Roman Edirisinghe — October 24, 2006 @ 7:18 pm
[...] Ein Paradebeispiel ist zum Beispiel der Organizer von Imthi Rafiq. Der in meinen Augen beste Upload-Manager für WordPress gibt einem eine ganze Reihe von Möglichkeiten Dateien zu verwalten, hochzuladen, zu kopieren, umzubenennen, Verzeichnisse zu durchstöbern, etc. Als Besonderheit, lassen sich die einzelnen Funktionen eben auch im Role-Manager den verschiedenen Profilen zuweisen bzw. verbieten. Vielseitig lassen sich auch die Einstellungen einzelner Benutzer vorgeben: so kann der Admin zum Beispiel die maximale Dateigröße für Uplaods für jeden Nutzer individuell festlegen. Wer sein Wordpress-Upload-Verzeichnis zB. auf “/” statt auf “/wp-content/uploads” festlegt, gibt den Benutzern einen (wenn auch in Grenzen) brauchbaren Ersatz für einen echten FTP-Benutzer zur Hand. Die Einstellung “/” für Uploads bewirkt, dass ein Benutzer des Organizers auf alle Verzeichnisse zugreifen kann. Also Vorsicht mit dieser Einstellung, das ist wirklich nur sinnvoll, wenn die Benutzer wissen was sie tun (man könnte theoretisch Themes löschen, die Datenbank-Zugangsdaten auslesen). Genau da kommt aber wieder der Role-Manager ins Spiel, der gewisse Aufgaben verbieten kann. Alternativ lässt sich im Organizer auch für jeden Benutzer sein “eigenes Unterverzeichnis” vergeben. Das verhindert zum einen dass Benutzer in anderen Verzeichnissen Schaden anrichten können. Desweiteren ist das super praktisch um Ordnung zu wahren. Man stelle sich vor 20 Benutzer könnten auf die Daten anderer Nutzer zugreifen, bearbeiten, etc. Überdies erstellt das Plugin die Benutzer-Unterordner selbst, automatisch also. Man braucht sich um nichts zu kümmern und kann sogar festlegen wie groß Verzeichnisse (individeuell für jeden Benutzer) maximal werden dürfen. [...]
Pingback by Role-Manager und Organizer » contactsheet.de — November 5, 2006 @ 5:56 pm
Firstly, this is a superbe plugin!
But what can I do if I want my autor can access to this menu?
Thank a lot
Comment by franckysmith — November 6, 2006 @ 7:28 pm
Thanks for plugin! I like it!
Can you help me?
I install plugin successfully and it display all my files in wp-content/uploads folder.
Then I changed “No of files per page” parameter on option, and Organizer now don’t see files in “uploads” folder because it create folder “admin” in folder “uploads” and folder “admin” is a “root” folder for Organizer!
Reinstallations didn’t make changes.
I don’t need Organizer upload files in “wp-content/uploads/admin”!
What should I do?
Comment by sonika — November 16, 2006 @ 4:54 am
Hi,
just another comment about the comment I did before.
Suddenly after active Organizer plugin I get this error:
Warning: opendir(C:/Program Files/xampp/htdocs/wordp205/wp-content/uploads) [function.opendir]: failed to open dir: Invalid argument in C:\Program Files\xampp\htdocs\wordp205\wp-content\plugins\organizer\plugin_functions.php on line 174
Thank you !
Comment by German — November 17, 2006 @ 7:46 pm
1. re 49: because it admins only uploads folder, which needs to be created under wp-content folder
- i have solved (enhanced) id a differnet way - i have changed the path to /wp-content only, so i can manage all my files under it.
2. I miss a feature - edit files. I want to be able to edit php files, not only rename/delete them
Comment by noname — November 22, 2006 @ 7:55 pm
[...] Organizer - This plugin allows you to create and upload files from the web browser without having to fire up your FTP program. It’s especially helpful on blogs with multiple users who aren’t tech savvy. The only downside is if they don’t know the “rules†things can get messy and disorgainzed very quickly. [...]
Pingback by A WHUer’s Blog » Blog Archive » Digest:Essential Wordpress Plugins — November 23, 2006 @ 10:17 am
[...] Organizer - Organizer is a simple plugin to view and manage your upload folder files. You can’t edit it your files however [...]
Pingback by My First Post » Anak Melayu BOLEH blog! Mana gadis manis melayu aku? — November 28, 2006 @ 11:21 pm
Hello. This is a wonderfull plugin. I was wondering… what should i be editing to be able to set ‘user specific’ as default?
Comment by vlad babii — November 30, 2006 @ 10:52 am
I think i managed to do it… when a user doesnt have a setting i want it to upload only to it’s own folder
Added..
if((!isset($user_setting) or !$user_setting) && organizer_check_organizer_directory()==false)
{
$user_setting=array(
$user_login=>array(
'access' => 0,
'extension' => get_settings('organizer_filetypes'),
'uploadsize' => 102400,
'uploadquota' => 10485760
)
);
}
right before
if($user_setting){
if($user_setting[$user_login]['access']==0){
$upload_path_user = $upload_path .’/’.sanitize_title_with_dashes($user_login);
$upload_path_user_a = organizer_fix_windows_path(ABSPATH.$upload_path_user);
if(!file_exists($upload_path_user_a)){
in plugin_actions.php
Comment by vlad babii — November 30, 2006 @ 11:26 am
[...] Download: http://imthi.com/organizer/ [...]
Pingback by The 10 Most Powerful Wordpress Plugins » Josh Kaufman Blog dot Com — December 3, 2006 @ 11:09 am
[...] Download: http://imthi.com/organizer/ [...]
Pingback by The 10 Most Powerful Wordpress Plugins » Josh Kaufman Blog dot Com — December 3, 2006 @ 11:09 am
Hi, realy nice plugins. i use Wordpress 2.0.x
I use it in a collectif blog and i’m the administrator.
I would like to know how allowed the others users (editor and author) to use organizer without admininstrator right.
Comment by barbo — December 4, 2006 @ 7:32 pm
[...] Óäîáíî óïðàâëÿòü ôàéëàìè ( ñêà÷àòü çäåñü http://imthi.com/organizer/ ) [...]
Pingback by » Óñòàíîâèë ïëàãèí Organizer — December 8, 2006 @ 3:12 am
Hi, I dont know why but Organiser doesn’t work with one of my two providers. It works fine with free.fr but not with the other one !!! When I change the directory on the admi panel nothing happens it doesn’t look like searching somthing even if the directory I choose is full of pictures.
Can you help?
Comment by franckysmith — December 13, 2006 @ 2:45 am
@Roman Edirisinghe [comment #45]:
I was getting that same error too; all the “change directory” drop-down select menus throughout this plugins interface were returning a organizer_jump_directory is not defined javascript error.
I did a search for the organizer_jump_directory function and found that it was in the general.js file. So, I browsed to the Organizer page in the Wordpress admin site, viewed the browser generated source and did a search for general.js to which I found out was being included improperly. For whatever reason, the author of this plugin has [both] the javascript file and css file being included via their local path on the server and not the relative path of the URL. For example, my javascript include line for general.js was targetting /E:/Inetpub/wwwroot/
foobar_com/www/wp-content/plugins/organizer/general.js instead of http://www.foobar.com/wp-content/plugins/organizer/general.jsTo fix this problem, here’s what I did; a better fix could probably be implemented - but wrong or right, it works now and takes two seconds to do.
Add // to the beginning of line 70 to comment out global $organizer_path; and add the following line beneath it so that this new line will fill the void of commenting out previous one:
$organizer_path = get_settings(’home’).”/wp-content/plugins/organizer/”;
Keep in mind, if you have the Organizer plugin installed to a directory other than the default /organizer directory, you will need to modify the new line accordingly.
Comment by DigitalJHelms — December 14, 2006 @ 12:07 am
[RE: comment #60] Forgot to add that I had to change src=\”/$organizer_path in line 71 and 72 to src=\”$organizer_path (removing the / before $organizer_path).
Comment by DigitalJHelms — December 14, 2006 @ 4:01 am
Is a WordPress 2.1-compatible version going to be released soon?
Comment by Erik J. Barzeski — December 22, 2006 @ 3:37 am
Hy, i have Wordpress 2.05 installed but the organizer plugin not rules.
At principal page of plugin (page=organizer/page/index.php) the select menu option “onchange†is death. I can see the list of directorys of my site, but the page not change when i select any directory. I tyr at the last Firefox and in Explorer 5.
Can you do the menu option with the SUBMIT button? why not rules my organizer?
Sorry for my english. I´m spanish blogger.
Thanks
Comment by sekano — December 27, 2006 @ 7:24 pm
A problem that think relates to something mentioned earlier. First, great plug-in, something that is really needed.
Now, the plugin is installed and activates fine. It sees all pre-existing pics in the dir (uploaded via WP post page). I upload a file with Organizer just fine. However, when I go to the Post or Page creation screens, the Organizer pics to not show on the Browse All menu. They do not seem registered with WP.
Are they WP BD tables that need to be updated when the images are uploaded?
It is not problem for me, but friends who are less knowledgeable get confused and can’t use the images if they don’t appear in the WP menus.
thanks.
Comment by Ken — January 12, 2007 @ 2:11 am
I have made a new translation for your nice Wordpress plug-in :
http://softwares.bajram.com/developpers/Organizer-fr_FR.zip
Thanks for Organizer !
Comment by Denis Bajram — February 6, 2007 @ 12:41 am
hello, Thanks for your plugin … I want ask a question … Now the Organizer is visible only for the Admin, I’d like that also the Editor can edit Organizer, I can do that? How?
thanks
sevenumber
Comment by sevenumber — February 9, 2007 @ 12:13 am
By simply heading over to the Organizer and clicking a stupid checkbox. K.I.S.S.

maybe reading documentation is always a good advice
Comment by Erik — February 13, 2007 @ 11:14 pm
damn, should say “Role Manager” instead “Organizer” damnit
Comment by Erik — February 13, 2007 @ 11:15 pm
Can’t find this stupid checkbox to activate “Organizer” for my editors… They have to be “administrators”.
No more information in the documentation.
HELP
Comment by Franck — February 14, 2007 @ 3:09 pm
OK I found it !
Just have to install “Role Manager” plugin
Comment by Franck — February 14, 2007 @ 3:21 pm
[...] http://imthi.com/organizer/ [...]
Pingback by Wordpress Plugins Themes Download » Blog Archive » Wordpress Organizer — February 19, 2007 @ 1:31 pm
[...] WordPress Organizer>> [...]
Pingback by WordPress Organizer - for organizing uploaded files : wordpressgarage.com — February 22, 2007 @ 1:48 pm
Hi.
I just installed a fresh install of WP 2.1
And This great plugin didn’t work.
How:
I can not see any files already uploaded through the post uploader.
(It acts as if I didn’t have any files there to begin with).
p.s: I add role manager working when activating the plugin - but, even after granting myself permisions - it still didn’t work.
Tal.
Comment by Tal G — February 24, 2007 @ 11:27 pm
[...] Sites Less Live Mint Moveable Anything My Video No Ping Wait Objection Redirection Optimal Title Organizer PXS Mail Form Permalink Redirect PodPress Popularity Contest Readers Post Reddit This Related [...]
Pingback by The Applied Blogging Workshop » All The Wordpress Plugins I am Exploring for Use — March 1, 2007 @ 10:55 pm
[...] organizer: å¯åœ¨å¾Œå°ä¸Šå‚³ä¸¦ç®¡ç†æª”案(更å和刪除),支æŒå資料夾功能1,也å¯ä»¥çœ‹åˆ°æœ‰å“ªäº›æ–‡ç« 有使用該檔案,當檔案有更動時å¯ä¸€ä½µä¿®æ”¹é€£çµã€‚æ¯”è¼ƒå¤§çš„ç¼ºé»žæ˜¯æ²’è¾¦æ³•ä¸Šå‚³å¾Œç›´æŽ¥åŠ å…¥æ–‡ç« ä¸ï¼Œåªæä¾›é€£çµ [...]
Pingback by Lakerséƒ¨è½æ‰‹è¨˜ » 檔案/ä¸‹è¼‰ç®¡ç† — March 13, 2007 @ 12:23 pm
have a WP 2.1 installation but i can’t get the plugin working at all.
It activates fine, but when clicking the link in the admin, i get an 404 error.
Has anyone set this up running on WP 2.1 ??
Comment by Dennis — March 16, 2007 @ 11:02 pm
same problem as Dennis.
I can see organizer in my admin panel, but if I click on it I have an error 404
Comment by cnadia — March 21, 2007 @ 2:46 am
I would like to use this with wpmu instead of wp.
this means changing a lot of variables, like: each blog has his own path were uploads are stored: ABSPATH.UPLOADS points to myblog.com/wp-content/blogs.dir/$blog_id/files/
next thing is that each blog has his own id, thus his own tables like: wp_6_sk2 just an example, but the general settigns are stored sitewide, i.e. there is no wp_6_users table only one wp_users table…
are you interested in helping adapt this plugin to wpmu? I woudl liek to try, I would just need to have a better understanding of what and where to modify…
Comment by ovizii — March 23, 2007 @ 1:20 am
@ovizii: would be great if you and imthi would implement wp-mu compatibility instead adapt a new version. regards, good luck. in early april, i could help a bit.
Comment by Erik — March 23, 2007 @ 1:29 am
awesome plug in. hats off.
i m a newbie and is probably a simple ?. I have installed the role manager plug in too.
for a specific user if i aask organizer to use a user specific drirectory, the next time the user logs in, it creates the directory but the user still uploads to the “common” directory
In the extra capabilities section I have given the following:
Organizer Upload, Organizer, delete_private_pages, delete_private_posts, edit_private_pages, edit_private_posts, import, manage_categories, manage_links, moderate_comments, publish_pages, read_private_pages, read_private_posts, unfiltered_html, Organizer Directory, Organizer Option
==========================
what is th eminimum i NEED?
thanks
Comment by aveesh — March 23, 2007 @ 6:19 am
I have installed organizer 1.2.1 on Wordpress 2.1.2. Everything works wonderfully except that the preview on the image resize is not working. I have searched for a solution and have yet to come up with one.
I viewed the source of the page and noticed that the image was pointing to the file system “/C:/recruiting/olemiss/wp-content/plugins/organizer/image.php?m=r&l=100&p=C%3A%2Frecruiting%2Folemiss%2Fwp-content%2Fuploads&f=march-madness-lunch-003.jpg”
Which seems to me to be the problem. Since it is pointing to the PHP page instead of the image itself. However, I am not in any way an experienced programmer so I am just taking a shot in the dark here.
Any assistance you can give is appreciated.
Bryan
Comment by bryan — March 24, 2007 @ 1:28 am
It was a Powerful Wordpress Plugins and nice too, thanks for making it happen
Comment by dodi — March 30, 2007 @ 10:33 am
I installed organiser on WP2.1.2. When I activated it, I get the organiser tab in the admin panel, but the /wp-admin/organiser folder is not created, so clicking the organiser link takes me back to the home page. Any ideas?
Comment by Leigh — April 2, 2007 @ 2:59 pm
Hi! Awesome plugin, really nice work.
I do have one feature request though: it would be even more awesome if I could upload multiple files in one shot.
Great work, thanks again.
Comment by Dan — April 5, 2007 @ 1:56 am
It would be nice if there were some screen shots.
Thanks!
Comment by Mario — April 6, 2007 @ 11:50 pm
[...] WordPress Organizer You can use this plugin to view, copy, rename, delete, resize image files, manage directories and upload files to your upload folder. [...]
Pingback by Die besten WordPress Plugins - Administration » Tipps zur Suchmaschinenoptimierung — April 21, 2007 @ 6:23 pm
[...] Organizer [...]
Pingback by cWanja.com » Unnoticeable User Update — April 29, 2007 @ 8:09 pm
Great work, thanks
Comment by lola — May 1, 2007 @ 3:41 pm
[...] Organizer - Browser-based plugin to upload files. [...]
Pingback by Cool SEO Plugins for WordPress Blogs | GR Rajesh Kumar's Search Marketing Resource — May 7, 2007 @ 8:30 pm
Hi Imthiaz,
I would like to use organizer to manage pictures into phpwebgallery.
I modified the php files to point on the directory I want to upload, I installed the plug-in and it works well, I can create some directories, upload some files.
But when I select a subdirectory in the drop down list, nothing appends. I can only see the content of the root-upload-directory.
Do you have any idea,
Best Regards,
Stephane
Comment by Tistef — May 7, 2007 @ 8:50 pm
You should take a look at the documents DOM. It’s one click to open the error-console for that specific site and read the error. (included in firefox, available to other browsers as extensions)
Comment by Erik — May 8, 2007 @ 12:23 am
Great tool. Here are two features I would drool over if they were implemented:
1) search (much like GaMerZ’s File Explorer: http://files.lesterchan.net/)
2) actual link to download file rather than copying url and pasting it into browser
Comment by Adam Pawley — May 17, 2007 @ 9:15 pm
I have installed Organizer (compatible with WP 2.0.x). It works great with WP 2.1.2, but I’ve just updated to 2.1.3, and now there is a slight problem. It creates directories perfectly, and uploads files to these directories, but will not display files in any directory other than the ‘root’ directory. That is, on the Organizer>Organizer tab (file list), it lists all files in the user’s root directory, but if I click the dropdown box to select a sub-directory, the list does not refresh, and so does not show the files in that sub-directory.
The same problem exists on the “view file” tab of Organizer, where only files in the user’s root directory are displayed… the drop-down box does not appear to submit my sub-directory selection.
I am looking forward to an update, you plugin is fantastic and much-needed by the wordpress community!
Thanks a million,
John Baumgartner
Comment by John — May 19, 2007 @ 8:30 am
(edit for above post)
I can navigate to the relevant pages manually with “/view.php&d=1″ or “/index.php&d=1″ etc, but it would be great if my client did not need to do it this way.
Thanks again for your great work on this plugin.
- John
Comment by John — May 19, 2007 @ 8:40 am
(edit again)
perhaps something to do with
” onchange=\”organizer_jump_directory(’$this_page_url’,this.value);\” “;
in view.php?
I’m a php and js novice, and I just can’t figure out what the problem is here.. can anyone help?
Thanks,
John
Comment by John — May 19, 2007 @ 9:03 am
[...] Visit [...]
Pingback by WP Plugins DB » Blog Archive » Organizer — May 20, 2007 @ 11:34 am
Hi. Greetings from UA. Houston, Houston! I have a problem. How can I show links of my uploaded sources on client-side pages? The List of links has to create dinamicaly. Do you have ideas? Many thanks…
Comment by Alex — May 25, 2007 @ 8:32 pm
Hi,
Organizer is a great tool! thnx for all the work done on it!
Is it possible to change the path where organizer uploads and manages stuff to and from, somewhere outside wordpress? for example http://data.site.com/ for wp-blog on http://site.com ?
Thnx in advance
Raf Goetschalckx
Comment by Raf — June 4, 2007 @ 4:36 pm
[...] Organizer - This plugin allows you to create and upload files from the web browser without having to fire up your FTP program. It’s especially helpful on blogs with multiple users who aren’t tech savvy. The only downside is if they don’t know the “rules†things can get messy and disorgainzed very quickly. [...]
Pingback by The best tips and tips on net » Essential Wordpress Plugins — June 5, 2007 @ 1:50 am
[...] Organizer - This plugin allows you to create and upload files from the web browser without having to fire up your FTP program. It’s especially helpful on blogs with multiple users who aren’t tech savvy. The only downside is if they don’t know the “rules†things can get messy and disorgainzed very quickly. [...]
Pingback by 我爱wordpress » Blog å˜æ¡£ » Wordpress的一些seoæ’ä»¶(english) — June 15, 2007 @ 9:15 am
This rocks. You rock. Thank you for sharing and helping people out. I send you a virtual beer
Comment by Martino — July 13, 2007 @ 12:11 pm
Tons of thanks to you. Great plug-in. I was looking for a good file management plug-in for wordpress but never found one. this serves all my needs, great stuff!
Comment by Nipon — July 16, 2007 @ 12:14 pm
[...] Organizer Organisiert im Adminbereich die Bilder. Erleichter die Verwaltung doch um einiges. So kann ich gleich auf die einzelenen Ordner zugreifen. [...]
Pingback by Angie » Einige Plugins — August 5, 2007 @ 11:05 am
[...] Organizer modified (baseado no Organizer) [...]
Pingback by Pensamento web :: blog de Cau Guanabara — August 6, 2007 @ 4:07 am
Hi, great plug-in! I use WP 2.1.3 and I got Organizer 1.1.1 but it do not work good. In the Post-editor no user-folder are showen, only the normal upload-folder. The organizer let me create subfolders and let me upload files but it does only show files they are not in subfolders.
I saw here the version 1.2.1 and on dev.wp-plugins.org (for?) 2.0 but no link to download.
Where can i get the newest version or the right version for my WP?
Thanks a lot
Damaris
Comment by Damaris — September 21, 2007 @ 4:23 pm
[...] Wordpress Organizer (tags: wordpress plugin) [...]
Pingback by Skylog » Blog Archive » links for 2007-09-22 — September 22, 2007 @ 10:17 am
Love the program.
I am having a strange problem. My upload files exist. I can see them with organizer. However, except for a 2007/01 directory nothign appears on my file directory. I tried to create a fodler called 02A and it appears on the file list but not on organizer. I was hoping to mover the 02 folder there. Any ideas?
Comment by Richard — October 8, 2007 @ 2:50 am
[...] WPå®˜æ–¹ä¸‹è½½é¡µé¢ | æ’ä»¶ä½œè€…ä¸‹è½½é¡µé¢ [...]
Pingback by WPæ’ä»¶:Organizer | 帕兰的å£è¢‹ — October 9, 2007 @ 10:38 am
I would love to be able to insert file links into posts…can this be done from the edit post page? That would be great if it can. This is the only thing missing, otherwise its an incredible tool!
Comment by Peter — October 10, 2007 @ 10:46 pm
[...] Imthiaz Blog » Wordpress Organizer “Organizer is a Wordrpress plugin. This plugin help the wordpress users to manage the files uploaded to their blog.” Nice and simple, nicely done. (tags: wordpress upload plugin) [...]
Pingback by Infovore » links for 2007-10-14 — October 15, 2007 @ 3:19 am
If you have open_basedir restrictions on your server, you will need to change the following lines in plugin_hook.php:
Lines 50 - 52 from :
include_once(”plugin_functions.php”);
include_once(”class_filereader.php”);
include_once(”image.php”);
to
include_once(ABSPATH . ‘/wp-content/plugins/organizer/plugin_functions.php’);
include_once(ABSPATH . ‘/wp-content/plugins/organizer/class_filereader.php’);
include_once(ABSPATH . ‘/wp-content/plugins/organizer/image.php’);
It would be useful if this could be included in the next version release. Thanks.
Comment by Reggie — October 23, 2007 @ 3:34 am
[...] Wordpress Organizer - This plugin help the wordpress users to manage the files uploaded to their blog. These are some the feature of this plugin: [...]
Pingback by Exploring & Tuning The WordPress Backend (Admin Panel) at WordPress Themes, Plugins, Blog Tips, Make Money Online >> WPthemesplugin.com — October 24, 2007 @ 3:15 pm
[...] Organizer + I love this one so much. It helps me view and organize the images i uploaded and used for my posts and pages. It also has its own upload tool and it allows me to get html code of my images which is very helpful when i want to link to any of my files. [...]
Pingback by My Favorite WordPress Plugins at -PusangKalye- — October 28, 2007 @ 10:02 pm
thank you for your plugin! i was searching a lot for this solution and hopefully a found it!
Comment by manele — November 13, 2007 @ 2:09 pm
I absolutely want to support eriks post:
Comment by Lu — November 27, 2007 @ 10:45 pm
I have the same Problem that aveesh describes: I want to use user specific upload folders. They are auomatically created, but files are still uploaded to the default /uplaods/ folder.
Can anyone help? Thanks!
(you can also contact me via email)
Comment by Lu — November 28, 2007 @ 12:08 am
Thank you for this truly helpful plugin! I didn’t really know what to expect when I installed it but I love it. It’ll make managing my files so much easier.
Comment by Jeri — November 29, 2007 @ 4:28 pm
i had to edit the names of the capabilities in
function organizer_capabilities($caps) to not have spaces in - and the same in function organizer_check_organizer_rename() and the other funcs below that one. these are in plugin_functions.php.
this was to get it to work with role-manager by Thomas Schneider. ( http://www.im-web-gefunden.de/ ) otherwise it wouldn’t recognise the capabilities properly. hope this helps someone.
Comment by simon — December 10, 2007 @ 7:23 pm
Hi simon.
I was experiencing the same problem.
Thank you for share your solution to Organizer’s conflict with Role-Manager.
Comment by ricardom — December 14, 2007 @ 5:15 am
thanks for this great and very easy to use plugin!!
Comment by houserocker — December 15, 2007 @ 1:13 pm
I use this plugin (v1.2.1) with WP2.3.1
The upload process and user management in junction with the Role Manager plugin works fine.
I have problems with the file listings. I guess that the administrator role should get all files listed including the ones in user specific (sub)folders. The only files I can see as an admin are the ones uploaded to the root folder (wp-content/uploads) or to my (user specific) admin folder. There is also a problem with the drop-down selection of folders: this simply changes nothing.
The idea behind this plugin is so far one of the most advanced when it comes to file management in WP but it needs some fixes I think.
btw: authors last comment was on June 13, 2006 ?
Comment by karimun — December 22, 2007 @ 5:58 pm
[...] Organizer - This plugin allows you to create and upload files from the web browser without having to fire up your FTP program. It’s especially helpful on blogs with multiple users who aren’t tech savvy. The only downside is if they don’t know the “rules†things can get messy and disorgainzed very quickly. [...]
Pingback by Essential Wordpress Plugins — December 24, 2007 @ 7:26 am
In plugin_functions.php
61c61
$organizer_path = str_replace(realpath($_SERVER['DOCUMENT_ROOT']),”",$organizer_path);
That would solve the problem of images, css and js when used symlinks.
Comment by RNT — December 27, 2007 @ 10:21 pm
this is a good tool for wp.. keep up..I hope you will produce more mod. cheers!!
Comment by alibata — January 2, 2008 @ 10:23 am
Thx for this organizer
Comment by evden eve — January 8, 2008 @ 2:40 am
Great tool man, thanks!
Comment by Manele gratis — January 9, 2008 @ 9:11 pm
[...] Wordpress Organizer - This plugin helps you or your client to manage the files uploaded to the site. [...]
Pingback by So You Want To Use WordPress To Build Your Client’s Site… at WordPress Themes, WordPress Plugins, Blog Tips, WordPress Optimizations >> WPthemesplugin.com — January 16, 2008 @ 12:21 am
[...] Plugin Homepage [...]
Pingback by Organizer_Wordpress plugin — January 23, 2008 @ 7:55 am
thanks for this great and very easy to use plugin!!
Comment by Cnc Kesim — January 26, 2008 @ 2:17 am
Thanks for the nice tool.
There is one issue though: Organizer 1.2.1 is not compatible with the Gengo 0.9 multi-language plugin.
The problem is that the call to ‘load_plugin_textdomain(…)’ in plugin_hook.php must be moved to a function that runs on the ‘init’ hook. Cf. the compatibility FAQ of Gengo. I moved that call into the organizer_initialize() function (which I hope is part of the init hook - I am not sure though) and this works for me so far. You might wanna get this fix into the next version too. Thanks!
Comment by Uwe — January 28, 2008 @ 3:04 pm
this is a great plugin!
a question — how can i use this plugin to rename/create backups for file in /plugins or /themes/* folders? i use theme editor to edit some of the files, but there is no backup — this plugin can be used for that.
thanks
Comment by af3 — January 28, 2008 @ 6:37 pm
Ths a lot for this organizer…you make a good job with this website
Comment by Muzica Noua — January 31, 2008 @ 7:57 pm
Great tool!!! THX !!! http://www.manelele-noi.com
Comment by Manele Noi — February 1, 2008 @ 6:34 pm
OK I found it !
Just have to install “Role Manager†plugin
Comment by Star GagicuL — February 4, 2008 @ 12:40 am
Thx alot
Comment by evden eve nakliyat — February 16, 2008 @ 2:01 am
great plugin
But can it make thumbs?
Comment by MLux — February 20, 2008 @ 3:10 am
Hi, The current roles given by Wordpress does not provide for an “Author” to create and edit Pages, only Posts. Will this plugin give Authors ability to create and edit both Pages and Posts?
Thanks
Comment by Allie Narayan — March 4, 2008 @ 9:49 pm
I installed this on the latest version of WP. It sees directories but is not showing files in the directories. Any ideas?
Comment by b1ackjax — March 8, 2008 @ 12:23 am
[...] Organizer 1.2.1: Improves significantly on WordPress’s handling of images. I use it to resize pics mostly, and to track down where I put an existing pic so I can use it in another post. [...]
Pingback by America’s North Shore Journal | Blogging Changes — March 17, 2008 @ 9:25 pm
[...] Organizer - This plugin allows you to create and upload files from the web browser without having to fire up your FTP program. It’s especially helpful on blogs with multiple users who aren’t tech savvy. The only downside is if they don’t know the “rules†things can get messy and disorgainzed very quickly. [...]
Pingback by Incredible WordPress Plugins Get Optimized | SNAP 3.0 — March 23, 2008 @ 2:57 am