Title: alsmith's Replies | WordPress.org

---

# alsmith

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/users/alsmith/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/alsmith/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SMTP Cycle Email] looping through emails](https://wordpress.org/support/topic/looping-through-emails/)
 *  Thread Starter [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/looping-through-emails/#post-6712972)
 * I was thinking it should send all emails out that were in schedule once the cron
   ran by using a foreach or while loop marking all that were sent as sent.
    the
   way it is now it would only send one at a time so if the cron was set for hourly
   and you had 10 in schedule it would take 10 hours to send.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mailgun Subscriptions] Admin_Page error](https://wordpress.org/support/topic/admin_page-error/)
 *  Thread Starter [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/admin_page-error/#post-6383530)
 * Interesting I did not realize I had to have my Key from Mailgun in both the API
   Key and API Public Key.
 * Once I pasted it into the API Public Key the errors went away.
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [after registration](https://wordpress.org/support/topic/after-registration/)
 *  [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/after-registration/#post-2908583)
 * I would put all your attachments in a single zip file upload it to somewhere 
   like wp-cntent/uploads.
    then put this inside your functions.php file (make sure
   lines wrap and are not seperated.)
 *     ```
       function wp_new_user_notification($user_id, $plaintext_pass = '') {
               $attachments = array(WP_CONTENT_DIR . '/uploads/yourzipfile.zip');
               $user = new WP_User($user_id);
               $user_login = stripslashes($user->user_login);
               $user_email = stripslashes($user->user_email);
   
               // The blogname option is escaped with esc_html on the way into the databa
       se in sanitize_option
               // we want to reverse this for the plain text arena of emails.
               $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
   
               $message  = sprintf(__('New user registration on your site %s:'), $blognam
       e) . "\r\n\r\n";
               $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
               $message .= sprintf(__('E-mail: %s'), $user_email) . "\r\n";
   
               @wp_mail(get_option('admin_email'), sprintf(__('[%s] New User Registration
       '), $blogname), $message, $attachments);
   
               if ( empty($plaintext_pass) )
                       return;
   
               $message  = sprintf(__('Username: %s'), $user_login) . "\r\n";
               $message .= sprintf(__('Password: %s'), $plaintext_pass) . "\r\n";
               $message .= wp_login_url() . "\r\n";
   
               wp_mail($user_email, sprintf(__('[%s] Your username and password'), $blogn
       ame), $message);
   
       }
       ```
   
 * I added $attachments to the wp_mail function call and identified the $attachments
   first line inside the function
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[FAQ plugin] [Plugin: Adonide FAQ Plugin] Shortcode](https://wordpress.org/support/topic/plugin-adonide-faq-plugin-shortcode/)
 *  [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-adonide-faq-plugin-shortcode/#post-2903056)
 * the shortcode is wrong. they actually have faq_collect as the shortcode in the
   faq_framework.php script. you could change this if you want to use faq_html
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [wpmu_delete_blog not deleting blogs.dir folder](https://wordpress.org/support/topic/wpmu_delete_blog-not-deleting-blogsdir-folder/)
 *  Thread Starter [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/wpmu_delete_blog-not-deleting-blogsdir-folder/#post-2416721)
 * it is accsessable via URL /wp-contents/blogs.dir/BLOG_ID/files/filename.ext
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [wpmu_delete_blog not deleting blogs.dir folder](https://wordpress.org/support/topic/wpmu_delete_blog-not-deleting-blogsdir-folder/)
 *  Thread Starter [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/wpmu_delete_blog-not-deleting-blogsdir-folder/#post-2416675)
 * ok not trying to upset you, but when you create a new site it creates the blog_id
   folder and the folder named files. then when that site is used it stores their
   files and folders one of those two folders.
 * As I see it then when you do a delete it prompts you for “You are about to delete
   the site /BLOGNAME/.
    If you say yes it then deletes everything associated with
   that site (unlike suspend). That blog_id is not reused nor would it be because
   the blog_id’s incremented.
 * It just stands to reason then all the files along with all the info pertaining
   to that blog_id would then be removed.
 * It is no big deal though.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [wpmu_delete_blog not deleting blogs.dir folder](https://wordpress.org/support/topic/wpmu_delete_blog-not-deleting-blogsdir-folder/)
 *  Thread Starter [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/wpmu_delete_blog-not-deleting-blogsdir-folder/#post-2416667)
 * ok yes per the code it is working,
 * Just wondering why when you say delete a blog it wants to leave empty folders
   for that blog id around.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [wpmu_delete_blog not deleting blogs.dir folder](https://wordpress.org/support/topic/wpmu_delete_blog-not-deleting-blogsdir-folder/)
 *  Thread Starter [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/wpmu_delete_blog-not-deleting-blogsdir-folder/#post-2416655)
 * yeah, looking at the code the /files/ would need to be removed, it is just feleting
   the files and folders in the blog_id/files/ folder
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [wpmu_delete_blog not deleting blogs.dir folder](https://wordpress.org/support/topic/wpmu_delete_blog-not-deleting-blogsdir-folder/)
 *  Thread Starter [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/wpmu_delete_blog-not-deleting-blogsdir-folder/#post-2416596)
 * sorry forgot to mention I am choosing Delete from within the Admin in multisite
   to delete a blog.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Buy Online (basicpills.com](https://wordpress.org/support/topic/buy-online-basicpillscom/)
 *  Thread Starter [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/buy-online-basicpillscom/#post-1991919)
 * these are the same post links I have already implemented and still the issue 
   exists.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [mapping column empty in 3.1](https://wordpress.org/support/topic/mapping-column-empty-in-31/)
 *  Thread Starter [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/mapping-column-empty-in-31/#post-1935836)
 * I found the upgrade, Thanks!
    It is not at 0.5.4 [http://wordpress.org/extend/plugins/wordpress-mu-domain-mapping/](http://wordpress.org/extend/plugins/wordpress-mu-domain-mapping/)
   that corrected my issue.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [mapping column empty in 3.1](https://wordpress.org/support/topic/mapping-column-empty-in-31/)
 *  Thread Starter [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/mapping-column-empty-in-31/#post-1935835)
 * and when I look at the file domain_mapping.php in the mu-plugins folder it tells
   me I am at Version 0.4.3
    /* Plugin Name: WordPress MU Domain Mapping Plugin 
   URI: [http://ocaoimh.ie/wordpress-mu-domain-mapping/](http://ocaoimh.ie/wordpress-mu-domain-mapping/)
   Description: Map any blog on a WordPress MU website to another domain. Version:
   0.4.3 Author: Donncha O Caoimh Author URI: [http://ocaoimh.ie/](http://ocaoimh.ie/)*/
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [mapping column empty in 3.1](https://wordpress.org/support/topic/mapping-column-empty-in-31/)
 *  Thread Starter [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/mapping-column-empty-in-31/#post-1935834)
 * interesting it does not show up un plugins needing to be updated nor do I see
   it in the list of plugins now. but it is working on sites when I go there.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [deans FCK editor not updating content in IE](https://wordpress.org/support/topic/deans-fck-editor-not-updating-content-in-ie/)
 *  [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/deans-fck-editor-not-updating-content-in-ie/#post-1000536)
 * sorry to keep posting but here is another update.
    I went in as admin (the editor
   works fine) I then went to the Users profile, editor in my case and unchecked
   Use Visual editor. Now the editor still gets the Deans FckEditor and it works
   great. I notice there is no Visual || HTML bittons at the top but now when the
   editor changes anyting and hits Save it actually works.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [deans FCK editor not updating content in IE](https://wordpress.org/support/topic/deans-fck-editor-not-updating-content-in-ie/)
 *  [alsmith](https://wordpress.org/support/users/alsmith/)
 * (@alsmith)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/deans-fck-editor-not-updating-content-in-ie/#post-1000535)
 * wanted to post an update. I found something interesting.
    If I switch to Source
   then press Save it works fine.
 * So editing in the Deans FckEditor using IE the save is not functioning when I
   use the editor. If I press the Source button on the editor then press save it
   works fine.

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/users/alsmith/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/alsmith/replies/page/2/?output_format=md)