• When I go into manage>>email notification and then examine who signed up, I get:

    Could not successfully run query (SELECT * FROM wp_email_list) from DB: No Database Selected

    Anyone? Thanks! (sorry for the double post. I misposted before)

Viewing 15 replies - 1 through 15 (of 17 total)
  • Looks like some kind of plugin for this…which one?

    Thread Starter khackett

    (@khackett)

    I’m so sorry, I forgot to mention: it’s the Watershed Studio Email Notify…thingy.

    This thread is devoted to that plugin:
    http://wordpress.org/support/topic/46747

    Also in a 11/14/2005 comment Brian Groce answer a question similar to yours:
    See 11/14/05 comment from Brian

    Thread Starter khackett

    (@khackett)

    I saw those, but none of them helped. How do you “update the config”? my database IS my wordpress database…

    Does your wp-config.php file you have
    $table_prefix = 'wp_';

    Thread Starter khackett

    (@khackett)

    Yes: <?php
    /** WordPress’s config file **/
    /** http://wordpress.org/ **/
    // ** MySQL settings ** //
    define(‘DB_NAME’, ‘katehack_wordpress’); // The name of the database
    define(‘DB_USER’, ‘katehack_wordpre’); // Your MySQL username
    define(‘DB_PASSWORD’, ‘FK’); // …and password
    define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value
    // Change the prefix if you want to have multiple blogs in a single database.
    $table_prefix = ‘wp_’; // example: ‘wp_’ or ‘b2’ or ‘mylogin_’
    // Change this to localize WordPress. A corresponding MO file for the
    // chosen language must be installed to wp-includes/languages.
    // For example, install de.mo to wp-includes/languages and set WPLANG to ‘de’
    // to enable German language support.
    define (‘WPLANG’, ”);
    /* Stop editing */
    $server = DB_HOST;
    $loginsql = DB_USER;
    $passsql = DB_PASSWORD;
    $base = DB_NAME;
    define(‘ABSPATH’, dirname(__FILE__).’/’);
    // Get everything else
    require_once(ABSPATH.’wp-settings.php’);
    ?>

    What about the maillist folder mentioned in the install.txt from that plugin–is it properly configured?

    Thread Starter khackett

    (@khackett)

    I beleive so..everything else works fine.

    One more question before I give up…

    You should have a katehackett.com/maillist folder and if not the plugin author says to change line 19 in:
    wp-content/plugins/wp-email-notification/index.php

    What you put in line 19 depends where that folder resides.

    Thread Starter khackett

    (@khackett)

    I THINK I changed line 19 as per instructions:

    <?php import_request_variables(gp, “”); ?>

    <div class=”wrap”>

    <h2>WordPress Email Notification Plugin v2.3 Admin Area</h2>

    <?php

    //********************************************************//
    // Secure the admin area
    //********************************************************//
    get_currentuserinfo();

    if ($user_level < 8) {
    die (“Sorry, you must be logged in and at least a level 8 user to access admin setup options.”);
    }

    /* If maillist isn’t located at your web root this will need to be changed */
    // include (ABSPATH.”/maillist/wpemn_config.php”);

    /* If your maillist directory is located in your wordpress directory, you can use this instead of line 19 */
    // include (ABSPATH.”/maillist/wpemn_config.php”);
    ?>

    Where is the maillist folder?

    Thread Starter khackett

    (@khackett)

    It’s in katehackett.com/wordpress/maillist

    So line 19 should say:
    include (ABSPATH."/maillist/wpemn_config.php");

    NOT

    include ("$DOCUMENT_ROOT/maillist/wpemn_config.php");

    Thread Starter khackett

    (@khackett)

    I think I changed it… I don’t see $DOCU… anywhere in there.

    Yes, but the // in front of that line makes it a non-executing line.

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘email notification (sorry; double post… it was in the wrong place!)’ is closed to new replies.