Title: nepf's Replies | WordPress.org

---

# nepf

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Authenticator] Internal server error after update to newest version](https://wordpress.org/support/topic/internal-server-error-after-update-to-newest-version/)
 *  [nepf](https://wordpress.org/support/users/nepf/)
 * (@nepf)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/internal-server-error-after-update-to-newest-version/#post-9398397)
 * thank you – great plugin, love it!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Authenticator] Internal server error after update to newest version](https://wordpress.org/support/topic/internal-server-error-after-update-to-newest-version/)
 *  [nepf](https://wordpress.org/support/users/nepf/)
 * (@nepf)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/internal-server-error-after-update-to-newest-version/#post-9398045)
 * Me too – same problem.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta Box] Validation rule with regex](https://wordpress.org/support/topic/validation-rule-with-regex/)
 *  Thread Starter [nepf](https://wordpress.org/support/users/nepf/)
 * (@nepf)
 * [9 years, 12 months ago](https://wordpress.org/support/topic/validation-rule-with-regex/#post-7582249)
 * Great! Cool! Thx!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta Box] Validation rule with regex](https://wordpress.org/support/topic/validation-rule-with-regex/)
 *  Thread Starter [nepf](https://wordpress.org/support/users/nepf/)
 * (@nepf)
 * [9 years, 12 months ago](https://wordpress.org/support/topic/validation-rule-with-regex/#post-7582195)
 * okey, so I tried
 *     ```
       array(
       			'name' => 'subtitle',
       			'id' => $prefix . 'subt',
       			'type' => 'text',
       			'pattern'   => '[1-9][a-d]',
       			),
       ```
   
 * the HTML-Source looks fine for me
 *     ```
       <div class="rwmb-input">
       <input id="px_subt" class="rwmb-text" type="text" name="px_subt" pattern="[1-9][a-d]" size="30">
       </div>
       ```
   
 * but i don’t get any error-message for wrong inputs.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta Box] Validation rule with regex](https://wordpress.org/support/topic/validation-rule-with-regex/)
 *  Thread Starter [nepf](https://wordpress.org/support/users/nepf/)
 * (@nepf)
 * [9 years, 12 months ago](https://wordpress.org/support/topic/validation-rule-with-regex/#post-7582184)
 * Thank you,
    but please help me again, i tried this
 *     ```
       array(
       			'name' => 'subtitle',
       			'id' => $prefix . 'subt',
       			'type' => 'text',
       			'required'  => true,
       			'regex'   => '[1-9][a-d]',
       			),
       ```
   
 * what’s wrong?
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Export Query to csv – fputcsv](https://wordpress.org/support/topic/export-query-to-csv-fputcsv/)
 *  Thread Starter [nepf](https://wordpress.org/support/users/nepf/)
 * (@nepf)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/export-query-to-csv-fputcsv/#post-5481484)
 * solved it by my own.
    Maybe it’s helpfull for someone
 *     ```
       <?php $fh = fopen( 'wp-content/uploads/export.csv', 'w'); ?>
       <?php $person = array(); ?>
   
       	<?php while ( have_posts() ) : the_post(); ?>
       		<?php
       			$name = get_post_meta($post->ID, 'nepf_name', true);
       			$adress = get_post_meta($post->ID, 'nepf_adress', true);
       			$hobby = get_post_meta($post->ID, 'nepf_hobby', true);
   
       			$person[] = array($name, $adress, $hobby);
       		?>
       	<?php endwhile; ?>
   
       <?php
       foreach($person AS $dataset) { fputcsv($fh, $dataset, ';'); }
       fclose($fh);
       ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Show only OWN pages in dropdown in page-attributes](https://wordpress.org/support/topic/show-only-own-pages-in-dropdown-in-page-attributes/)
 *  Thread Starter [nepf](https://wordpress.org/support/users/nepf/)
 * (@nepf)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/show-only-own-pages-in-dropdown-in-page-attributes/#post-3047294)
 * No Idea – no help for poor little **n**epf? 🙁
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cluetip](https://wordpress.org/support/topic/cluetip/)
 *  [nepf](https://wordpress.org/support/users/nepf/)
 * (@nepf)
 * [16 years ago](https://wordpress.org/support/topic/cluetip/#post-1481365)
 * today i tested the Cluetip with the WP-jquery 1.4.2 library.
    No problems. Cluetip
   works very well and has very nice features
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post Via Email, spam prevention](https://wordpress.org/support/topic/post-via-email-spam-prevention/)
 *  [nepf](https://wordpress.org/support/users/nepf/)
 * (@nepf)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/post-via-email-spam-prevention/#post-1346345)
 * no problem. WP will publish only posts from registered user with the right to
   publish. All other mail-posts will get the status draft, so you can publish them
   or delete them.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Sabre] Doesnt seem to work with Buddypress 1.0.2?](https://wordpress.org/support/topic/plugin-sabre-doesnt-seem-to-work-with-buddypress-102/)
 *  [nepf](https://wordpress.org/support/users/nepf/)
 * (@nepf)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/plugin-sabre-doesnt-seem-to-work-with-buddypress-102/#post-1134975)
 * it whould be very great to have the sabre-plugin working with Buddy-Press.
 * Do you have a solution?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Theme Deep Silent] Paged comments don’t work, no Author name in posts](https://wordpress.org/support/topic/nice-but-1/)
 *  [nepf](https://wordpress.org/support/users/nepf/)
 * (@nepf)
 * [17 years, 5 months ago](https://wordpress.org/support/topic/nice-but-1/#post-982111)
 * i like the look and design – very nice!
    but i dont like the code with tables
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Plugin to import excel -sheets to posts ???](https://wordpress.org/support/topic/plugin-to-import-excel-sheets-to-posts/)
 *  Thread Starter [nepf](https://wordpress.org/support/users/nepf/)
 * (@nepf)
 * [20 years, 3 months ago](https://wordpress.org/support/topic/plugin-to-import-excel-sheets-to-posts/#post-373504)
 * 1. It is not as simple, because the postings aren’t written in only one table
   
   wp_post2cats wp_postmeta wp_posts
 * 2. I want my users can use such possibility but I can’t give them access to my
   db
 * any other idea?

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