rwanito
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Create Post from Word Press front endThank you RVoodoo !
@ alick: you should have a look here :
http://ww.wp.xz.cn/support/topic/304606?replies=4#post-1343967Forum: Plugins
In reply to: Easy frontend publishingThere is also http://ww.wp.xz.cn/extend/plugins/post-from-site/
Really good : upload image, limit size, forbid categories …Forum: Plugins
In reply to: [Plugin: WP-Print] New french translation for WP-print v2.50merci crabiet !
Forum: Plugins
In reply to: Post to category restriction?Hi all,
I’m still searching, but i’m not alone ..
I’am testing your solution, thank you RibbontreeDo you know “user-access-manager” ?
http://ww.wp.xz.cn/extend/plugins/user-access-manager/Forum: Plugins
In reply to: Warning: scalar expected in /front-end-editor/fields/base.php on line 45I’m trying this plugin, its really great, thank you scribu.
Forum: Plugins
In reply to: [Plugin: User-Cats Manager] ‘FileReader’ not foundHi HerrB,
thank you for your solution, it partially works :
I can access to the admin options, set settings and save, but unfortunattely, those settings are not saved.
(when I re-edit, nothing is checked, and nothing changed in author mode).I tried to deactivate every other plugins, I’m on wordpress 2.9.1
Any idea ?
Thanks for sharing !Forum: Fixing WordPress
In reply to: WordPress Script IssueI have the same problem, with the beginning of a solution, see here :
http://ww.wp.xz.cn/support/topic/355578It works, but :
I had to replace “
=&” by “=” in the lines listed in the error message.
In my case, I had to modify the core , wp-settings.php , so I’m still searching a better solution, without affecting the core files.Note : there is another error message with quick-post and wp 2.9.1 :
http://ww.wp.xz.cn/support/topic/356286?replies=1I’m still investigating, please help if you can, and stay tuned if you want to use quick post with the recent version of wp. we gonna beat all those bugs !
See you
Thank you Larro,
I will have a look and report here
Forum: Plugins
In reply to: Post to category restriction?Hi Ribbontree,
can you detail the way you bind users ?
I tried the plugin “bind user to category”, but it doesn’t work with wp 2.9.1 (even if I change this, the page appear in the admin panel, but the binding isn’t applied)I think I will have a look to limit categories plugin
Thank you !
Forum: Plugins
In reply to: remove /category/ in urli confirm, i doesnt work on 2.9.1
Forum: Plugins
In reply to: [Plugin: Quick Press Widget] “Dewidgetize” it – for anonymous posting pageIt works !
So, this is the lines you need to copy in functions.php :
function AnonPost($args) { if( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == 'post' && $_POST['captcha'] == 2010 ) { check_admin_referer( 'new-post' ); $user_id = $current_user->user_id; // définir ici l'ID de l'auteur attribué automatiquement if (!$user_id) {$user_id = 2;} $post_content = $_POST['posttext']; $tags = $_POST['tags']; $char_limit = 40; $post_title = $_POST['title']; $post_name = $_POST['name']; $post_id = wp_insert_post( array( 'post_author' => $user_id, 'post_title' => $post_title, 'post_content' => $post_content, 'tags_input' => $tags, 'post_status' => 'publish' ) ); } } add_action('wp_head', 'AnonPost');With this, you can deactvate the plugin and the widget.
See up for the form page
Thank you dreamcolorForum: Fixing WordPress
In reply to: php5.3 and fastcgi on IIS with wordpressI found that : http://wpcal-archive.firetree.net/2009-November.txt
In eventcalendar3.php change all of the “filter” function definitions to not declare “pass by reference”. Make them look like the lines with “+” in front of them.
-function ec3_filter_getarchives_where(&$where)
+function ec3_filter_getarchives_where($where)-function ec3_filter_getarchives_join(&$join)
+function ec3_filter_getarchives_join($join)-function ec3_filter_get_archives_link(&$link_html)
+function ec3_filter_get_archives_link($link_html)-function ec3_filter_posts_where(&$where)
+function ec3_filter_posts_where($where)-function ec3_filter_posts_join(&$join)
+function ec3_filter_posts_join($join)-function ec3_filter_posts_orderby(&$orderby)
+function ec3_filter_posts_orderby($orderby)-function ec3_filter_posts_groupby(&$groupby)
+function ec3_filter_posts_groupby($groupby)-function ec3_filter_posts_fields(&$fields)
+function ec3_filter_posts_fields($fields)-function ec3_filter_post_limits(&$limits)
+function ec3_filter_post_limits($limits)-function ec3_filter_the_content(&$post_content)
+function ec3_filter_the_content($post_content)-function ec3_filter_the_content_bigcal(&$post_content)
+function ec3_filter_the_content_bigcal($post_content)Worked for me,
wordpress 2.9.1
ec3 calendar Version 3.2.beta2Forum: Plugins
In reply to: Easy frontend publishingHi,
have a look to :
http://ww.wp.xz.cn/extend/plugins/tdo-mini-forms/
(many requests and hard to understand)
http://ww.wp.xz.cn/extend/plugins/posthaste/screenshots/
http://ww.wp.xz.cn/extend/plugins/front-end-editor/
http://ww.wp.xz.cn/extend/plugins/quick-press-widget/
i’m testing them (for an open-publishing site) so give me back your experience !ciao
Forum: Fixing WordPress
In reply to: [Plugin: Adminimize] Author permissions for pages not ‘working’I’m not sure to understand, but I use this plugin
http://code.mincus.com/41/manage-your-posts-only-in-wordpress/
to show only own posts in edit page.hope that helps