Forum Replies Created

Viewing 6 replies - 31 through 36 (of 36 total)
  • Thread Starter Bradley Jacobs

    (@crazyjaco)

    Apparently, not only are my non-blog pages working now but my RSS isn’t working either. I didn’t even know until a friend told me.

    Thread Starter Bradley Jacobs

    (@crazyjaco)

    bump

    YES!

    I did this on my blog. You have to do it through phpMyAdmin, but it works with no problem. It is definitely more secure. As a system administrator it is good practice to demote well known user accounts and promote custom ones. Passwords need to be secure, but any brute force attack will figure it out eventually.

    Thread Starter Bradley Jacobs

    (@crazyjaco)

    Removed that defined themes line. No difference.

    If I change anything about the third line I get an error saying it can’t find the function bloginfo() so that means the path and file is right, I think. But for whatever reason the blog-header is finding something and submitting a 404 error to the browser.

    Forum: Plugins
    In reply to: Amazon Media Manager 1.1

    I am having an awful time getting this to work properly.

    I just upgraded to WP1.5. I was running AMM without a problem before hand. I have it working now on the sidebar. But I also have a stand alone page for books and dvds, but it gives me a 404 error.
    here is the code:

    <?php
    define(‘WP_USE_THEMES’, true);
    require(‘./wp-blog-header.php’);
    ?>

    <?php get_header(); ?>

    <div id=”content”>

      <li id=”Amazon”><?php _e(‘These are the most recent books I have read.’); ?>
      <?php get_media(1,10); ?>

    </div>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

    Forum: Plugins
    In reply to: Amazon Media Manager 1.1

    This isn’t really a bug, but its a quirk at least.
    I was entering in the last 4 books I read, putting the earlier ones first so the most recent book i read would be first in the list generated on my page.

    When I opened the page, the earliest book was first. I figured it must just be retrieving backwards so I changed the SQL from DESC to ASC. No change. It turns out the dateadded is only the date added and not the time as well. Since I inputed all the books on the same day it must have sorted next by the ID field, which is in the reverse order.

    To fix I’m just adding the ID field to the order by section of the SQL statement and make it DESC.

Viewing 6 replies - 31 through 36 (of 36 total)