Embedded Blog Question

  • Unknown's avatar

    I am hoping someone can help me. I have an application that has security using ricocheting’s SQL Wrapper and Login Singleton for PHP. I am installed a blog in the root directory of my application which requires user credentials to access. I am trying to wrap the main blog index.php page with my login singleton but I get an error. The code and the error are as follows:


    <?php
    /**
    * The main template file.
    *
    * This is the most generic template file in a WordPress theme
    * and one of the two required files for a theme (the other being style.css).
    * It is used to display a page when nothing more specific matches a query.
    * E.g., it puts together the home page when no home.php file exists.
    * Learn more: http://codex.wordpress.org/Template_Hierarchy
    *
    * @package WordPress
    * @subpackage Twenty_Eleven
    */
    include_once(ABSPATH . 'includes/config.php');
    include_once(ABSPATH . 'includes/Database.singleton.php');
    include_once(ABSPATH . 'includes/Login.singleton.php');

    $db = Database::obtain(DB_SERVER, DB_USER, DB_PASS, DB_DATABASE);
    $db->connect();

    //$login = Login::obtain(); // object login

    // make user login (requires admin status)
    //$login->hard(1);

    get_header(); ?>

    <div id="primary">
    <div id="content" role="main">

    <?php if ( have_posts() ) : ?>

    <?php twentyeleven_content_nav( 'nav-above' ); ?>

    <?php /* Start the Loop */ ?>
    <?php while ( have_posts() ) : the_post(); ?>

    <?php get_template_part( 'content', get_post_format() ); ?>

    <?php endwhile; ?>

    <?php twentyeleven_content_nav( 'nav-below' ); ?>

    <?php else : ?>

    <article id="post-0" class="post no-results not-found">
    <header class="entry-header">
    <h1 class="entry-title"><?php _e( 'Nothing Found', 'twentyeleven' ); ?></h1>
    </header><!-- .entry-header -->

    <div class="entry-content">
    <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyeleven' ); ?></p>
    <?php get_search_form(); ?>
    </div><!-- .entry-content -->

    <?php endif; ?>

    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    My code is on lines 14-24.

    The error I get is:

    Database Error
    Message: WARNING: No link_id found. Likely not be connected to database.
    Could not connect to server: [server name].
    Date: Monday, October 24, 2011 at 3:53:13 AM
    Script: /fitzwad/marsecdev/
    Database Error
    Message: WARNING: No link_id found. Likely not be connected to database.
    Could not open database: [database name]
    Date: Monday, October 24, 2011 at 3:53:13 AM
    Script: /fitzwad/marsecdev/

    Clearly it isn’t connecting to the database but I am not sure why. It connects on every other non-wp file in that directory but not the wp files. Is there some type of wp configuration blocking other databases from being ran?

    Any help would be greatly appreciated.

    Thanks in advance – Brent

  • Unknown's avatar

    You are working with code – that can only mean one thing:

    The site you are asking about does not seem to be hosted on WordPress.COM so you need to make friends over at WordPress.ORG the keepers of the software you are using.

    https://en.forums.wordpress.com/topic/7-things-to-know-before-posting-in-wordpresscom-forums?replies=1

    This site is for support of sites hosted on WordPress.COM. You should address your questions to WordPress.ORG the keepers of the software you are using: http://wordpress.org/support/

    For more on the difference: http://support.wordpress.com/com-vs-org/

  • The topic ‘Embedded Blog Question’ is closed to new replies.