calmatt
Forum Replies Created
-
Forum: Installing WordPress
In reply to: PHP in a text widgetAny possibility of reposing that widget, I’m having the same problem :'(
Forum: Plugins
In reply to: WordPress Email Notification Plugin v2.3.1Figured it out!!! The email notification database has to be the same as the wordpress database! I created a new wordpress blog for my aunt and decided just for kicks to install the notification system with it too. It all worked without even a single hiccup. The only difference was I setup her system manually, and had complete access to the database. My blog I didn’t have database access to, but after a few exports, and imports I do now!
Forum: Plugins
In reply to: WordPress Email Notification Plugin v2.3.1K, I figured out a few things. At the bottom of the email_notification_2.3.1.php file, there’s these lines:
//********************************************//
// Actions
//********************************************//// Notify box in advanced mode
add_action('edit_form_advanced', 'email_notification_form');// Notify box in simple mode
add_action('simple_edit_form', 'email_notification_form');// Notify box in page mode
add_action('edit_page_form', 'email_notification_form');// Admin menu
add_action('admin_menu', 'email_notification_admin');//Send the notification
add_action('publish_post', 'email_notification_send', 5);// Send the notification of future dated posts
add_action('publish_post', 'email_notification_future_send');The top two or three add_action statements seem to be the culprits behind makind the menu system all funky. The bottom few seem to be causing the error I listed above. Any ideas?
Forum: Plugins
In reply to: WordPress Email Notification Plugin v2.3.1My problem seems to be different than mosts… after installing the plugin, a good majority of my management pane dissapears. The preview and upload portions to be exact.
If I click on save and continue, or save, I get the following error message:
Table 'user_454503.wp_email_list_config' doesn't existWarning: Cannot modify header information - headers already sent by (output started at /home/content/C/a/l/Calmatt/html/wordpress/wp-content/plugins/wp-email-notification/email_notification_2.3.1.php:81) in /home/content/C/a/l/Calmatt/html/wordpress/wp-includes/pluggable-functions.php on line 272
I was getting some of the other errors earlier, like the errors on lines 369 & 372… thanks jafaruddin for the info on the fix! Hopefully this one will be as easy.
matt