monpelaud
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Upload Widget] Feature requestI tried to implement a progress bar with the SWFUpload library but it does not work fine in multi-widget environnement.
Forum: Plugins
In reply to: [Upload Widget] [Plugin: Upload Widget] Lose the "Allowed Files"Sorry but I don’t really understand what you want to do.
Upload Widget is multi-widget, you have to create so much of widget that of roles authorized to upload.
Set the correct “Authorized WP Role” for each widget. Each role will only see his widget.
The admin role is the only one to see all the widgets.
Visitors only see widgets with “Authorized WP Role” set to “Visitor”.Forum: Plugins
In reply to: [Plugin: Upload Widget] Can’t view widgetHi,
I think you don’t have write permission in destination folder.
Best regards
Forum: Plugins
In reply to: [Plugin: Upload Widget] Can’t view widgetHi,
Upload-widget is a widget.
You must use it like a widget in the sidebar.Menu: Site Admin/Appearance/Widgets
Best regards
Forum: Plugins
In reply to: 2.8 File/image upload widgetIf you always search an upload widget try this one:
http://wordpress.org/extend/plugins/upload-widget/Forum: Plugins
In reply to: [Plugin: Upload Widget] Can’t view widgetBammercode,
In lignes 142 and 146 replace ‘Visitor’ by ‘visitor’.
In Widget admin set :
“Authorized WP Role:” to ‘Visitor’.I will publish, as soon as possible, a new version that fixe this bug.
Please, tell if it works fine.Best Regards
Forum: Plugins
In reply to: [Plugin: Upload Widget] Can’t view widgetLinusf,
1-For the folder, apparently the behavior is not the same according to the version of php.
As soon as possible I will publish a new version (1.3) that correct definitively this bug.
2-With the field “Authorized WP Role” you choose which role is allowed to upload files.
Only this role and admin see this widget to upload files.
Upload Widget is multi-widget, you have to create so much of widget that of roles authorized to download and set the correct “Authorized WP Role”.
Every role will see only his widget.
The admin will be the only one to see all the widgets.Li-An,
Pas de problème pour l’anglais, car je suis français et mon anglais n’est pas terrible!
D’après mes tests je pense que avez un espace quelque part dans la liste des extensions autorisées.
La liste des extensions autorisées ne doit comporter aucun espace, que ce soit au début de liste, à l’intérieur de la liste ou la fin de la liste.
Je vais corriger ce problème dans une nouvelle version.Merci pour votre aide.
Forum: Plugins
In reply to: [Plugin: Upload Widget] Can’t view widgetLi-An, there was a bug with WordPress 2.9.
Please test the latest version 1.2 and give me your feedback.
In the field “Upload Path:” you must put the target directory from “/wp-content/”. If blank the file is upload in “/wp-content/”.
For example if you put “videos” in this field the file is uploaded in ‘/wp-content/videos/’.
If ‘/wp-content/videos/’ doesn’t exist you get an error message when you save the widget.Forum: Fixing WordPress
In reply to: Widgets not savingThis issue is generate by the plugin “List category posts”.
Thanks for your help
Forum: Plugins
In reply to: [Plugin: Upload Widget] Can’t view widgetSorry, “BLOGUPLOADDIR” is set in “wp-settings.php”.
Forum: Plugins
In reply to: [Plugin: Upload Widget] Can’t view widget“BLOGUPLOADDIR” is only set for WPMU in file “wp-includes/wpmu-functions.php”.
Of course Upload Widget works with WordPress and WordPress Mu.
What version of WordPress are you using ?Forum: Plugins
In reply to: [Plugin: Upload Widget] Can’t view widgetOk, Thanks for your feedback.
Forum: Plugins
In reply to: [Plugin: Unfiltered MU] Fatal error with unfiltered-MU plugin on WPMU 2.8.2With phpMyAdmin can you verify the value of “wp_1_capability” in the table “wp-usermeta” for “user_id = 1”.
Is it really set to “a:1:{s:13:”administrator”;b:1;}” ?Forum: Plugins
In reply to: [Plugin: Unfiltered MU] Fatal error with unfiltered-MU plugin on WPMU 2.8.2I’ve edit “Site Admin/Options” and only “Update Options”.
All works fine with no modification in “wpmu-functions.php” until I “Log Out”. If I log out and log in again the issue is always active.
If I disable wpmuldap plugin all works fine.
Do you use wpmuldap plugin ?Forum: Plugins
In reply to: [Plugin: Unfiltered MU] Fatal error with unfiltered-MU plugin on WPMU 2.8.2This issue is knowed at:
To fixe it 2 solutions in “/include/wpmu-functions.ph” at line 1930:1- Replace:
function promote_if_site_admin(&$user) { if ( !is_site_admin( $user->user_login ) ) return false;by
function promote_if_site_admin(&$user) { return false; /* add this line */ if ( !is_site_admin( $user->user_login ) ) return false;OR
2- In this function replace:
if ( is_array( $user->{$cap_key} ) ) { $user->{$cap_key} = array_merge( array( 'administrator' => '1' ), $user->{$cap_key} ); } else { $user->{$cap_key} = array( 'administrator' => '1' ); }by
if ( is_array( $user->{$cap_key} ) ) { $user->{$cap_key} = array_merge( array( 'Administrator' => '1' ), $user->{$cap_key} ); } else { $user->{$cap_key} = array( 'Administrator' => '1' ); }In other words, a capital A in administrator.
I don’t know what is the best solution and why this issue known in wpmu 2.7 is not fixed in wpmu 2.8.2.