option8
Forum Replies Created
-
I’m having the same problem. i’ve managed to get exports working via the above solution, but i would like to know what the underlying permission problem is. archiving those CSV exports is something i would like to have working.
Forum: Plugins
In reply to: [Visual Editor Biography] [Plugin: Visual Editor Biography] missing P tagsah. my mistake.
i was using
echo $curauth->description
in my template. i’ve switched it to<?php $authorID = $curauth->ID; the_author_meta( description, $authorID); ?>which returns the proper formatting.
Forum: Plugins
In reply to: WP-Minify, where did you go?you can still get it via SVN here:
Forum: Plugins
In reply to: Getting user id for user-edit.phpwere you able to successfully add in user metadata through the user-edit page?
i’m trying to do the same thing, and all the solutions i’ve found involve either kludgey plugins or things that add extra tables for their own data. meh.
i’ve can set and get the data in my templates like so:
update_usermeta($userId,'level',"1");
$UserLevel = get_usermeta($userId,'level');
but i’m stuck at being able to see/edit that field in the user edit page.
Forum: Plugins
In reply to: Adding new meta key to wp_usermeta table in database?did you ever find a reasonable solution to this? i’m in the same situation – trying to add additional data to a user’s profile. i can do it programatically, using
update_usermeta($userId,'metaFoo',"1");
$metaFoo = get_usermeta($userId,'metaFoo');
but there’s no good way to see and/or edit that metadata from within the dashboard, short of relying on some cumbersome and outdated plugins.
Forum: Fixing WordPress
In reply to: Clicking ‘Update Page’ results in a 404based on one of several other posts along these lines, i was able to fix the problem. it’s related to mod_security, and, at least on my server, the fix was to add this to a .htaccess file inside the wp-admin directory:
<IfModule mod_security.c>
SecFilterInheritance Off
</IfModule>Forum: Fixing WordPress
In reply to: WordPress Bug? Unable to update or add new page/post to sitebased on one of several other posts along these lines, i was able to fix the problem. it’s related to mod_security, and, at least on my server, the fix was to add this to a .htaccess file inside the wp-admin directory:
<IfModule mod_security.c>
SecFilterInheritance Off
</IfModule>Forum: Fixing WordPress
In reply to: Clicking ‘Update Page’ results in a 404@stackers – any explanation as to what that’s doing/not doing that “fixed” the problem?
Forum: Fixing WordPress
In reply to: WordPress Bug? Unable to update or add new page/post to siteodd… i thought the site was being hosted at Network Solutions, but doing a lookup on the domain, it’s coming back as a Micfo address as well.
maybe Micfo broke something on their end?
Forum: Fixing WordPress
In reply to: WordPress Bug? Unable to update or add new page/post to sitei started noticing this, too, using 2.6.3 – so i updated to 2.7.1, and it’s still doing it.
i thought maybe my host had changed something in .htaccess or PHP settings, but i can’t see any errors or warnings in the logs, and i even took out the .htaccess temporarily. still nothing.
i’ve also tried reapplying 755 permissions to everything, deactivating all my plugins, and removing and reinstalling 2.7.1 – still broken.