Title: 's Replies | WordPress.org

---

# option8

  [  ](https://wordpress.org/support/users/option8/)

 *   [Profile](https://wordpress.org/support/users/option8/)
 *   [Topics Started](https://wordpress.org/support/users/option8/topics/)
 *   [Replies Created](https://wordpress.org/support/users/option8/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/option8/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/option8/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/option8/engagements/)
 *   [Favorites](https://wordpress.org/support/users/option8/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Store Exporter – Export WooCommerce Products, Orders, Subscriptions, Customers] Error message – Filename Cannot Be Empty](https://wordpress.org/support/topic/error-message-filename-cannot-be-empty/)
 *  [option8](https://wordpress.org/support/users/option8/)
 * (@option8)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/error-message-filename-cannot-be-empty/#post-4309418)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Visual Editor Biography] [Plugin: Visual Editor Biography] missing P tags](https://wordpress.org/support/topic/plugin-visual-editor-biography-missing-p-tags/)
 *  Thread Starter [option8](https://wordpress.org/support/users/option8/)
 * (@option8)
 * [14 years ago](https://wordpress.org/support/topic/plugin-visual-editor-biography-missing-p-tags/#post-2721823)
 * ah. 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [WP-Minify, where did you go?](https://wordpress.org/support/topic/wp-minify-where-did-you-go/)
 *  [option8](https://wordpress.org/support/users/option8/)
 * (@option8)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/wp-minify-where-did-you-go/#post-2581540)
 * you can still get it via SVN here:
 * [http://plugins.svn.wordpress.org/wp-minify/](http://plugins.svn.wordpress.org/wp-minify/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Getting user id for user-edit.php](https://wordpress.org/support/topic/getting-user-id-for-user-editphp/)
 *  [option8](https://wordpress.org/support/users/option8/)
 * (@option8)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/getting-user-id-for-user-editphp/#post-1080903)
 * were 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Adding new meta key to wp_usermeta table in database?](https://wordpress.org/support/topic/adding-new-meta-key-to-wp_usermeta-table-in-database/)
 *  [option8](https://wordpress.org/support/users/option8/)
 * (@option8)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/adding-new-meta-key-to-wp_usermeta-table-in-database/#post-984615)
 * 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Clicking ‘Update Page’ results in a 404](https://wordpress.org/support/topic/clicking-update-page-results-in-a-404/)
 *  [option8](https://wordpress.org/support/users/option8/)
 * (@option8)
 * [17 years ago](https://wordpress.org/support/topic/clicking-update-page-results-in-a-404/#post-1060908)
 * based 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WordPress Bug? Unable to update or add new page/post to site](https://wordpress.org/support/topic/wordpress-bug-unable-to-update-or-add-new-pagepost-to-site/)
 *  [option8](https://wordpress.org/support/users/option8/)
 * (@option8)
 * [17 years ago](https://wordpress.org/support/topic/wordpress-bug-unable-to-update-or-add-new-pagepost-to-site/#post-1068603)
 * based 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Clicking ‘Update Page’ results in a 404](https://wordpress.org/support/topic/clicking-update-page-results-in-a-404/)
 *  [option8](https://wordpress.org/support/users/option8/)
 * (@option8)
 * [17 years ago](https://wordpress.org/support/topic/clicking-update-page-results-in-a-404/#post-1060907)
 * [@stackers](https://wordpress.org/support/users/stackers/) – any explanation 
   as to what that’s doing/not doing that “fixed” the problem?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WordPress Bug? Unable to update or add new page/post to site](https://wordpress.org/support/topic/wordpress-bug-unable-to-update-or-add-new-pagepost-to-site/)
 *  [option8](https://wordpress.org/support/users/option8/)
 * (@option8)
 * [17 years ago](https://wordpress.org/support/topic/wordpress-bug-unable-to-update-or-add-new-pagepost-to-site/#post-1068602)
 * odd… 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WordPress Bug? Unable to update or add new page/post to site](https://wordpress.org/support/topic/wordpress-bug-unable-to-update-or-add-new-pagepost-to-site/)
 *  [option8](https://wordpress.org/support/users/option8/)
 * (@option8)
 * [17 years ago](https://wordpress.org/support/topic/wordpress-bug-unable-to-update-or-add-new-pagepost-to-site/#post-1068601)
 * i 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.

Viewing 10 replies - 1 through 10 (of 10 total)