Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)
  • Thread Starter wp_BOB

    (@wp_bob)

    Ah ha…
    I am posting the answer since I figured it out myself…!!! =)

    It seems what I missed was putting the mysql_query inside the function:::

    == THIS DOESN’T WORK ======================

    $text = array_shift(mysql_fetch_row(mysql_query("SELECT text FROM wp_text WHERE text_id = '123'")));
    function add_after_content($content) {
    return str_replace("XX5XR7ER4", "".$text."", $content);
    }
    add_filter('the_content', add_after_content);

    == THIS WORKS ======================

    function add_after_content($content) {
    $text = array_shift(mysql_fetch_row(mysql_query("SELECT text FROM wp_text WHERE text_id = '123'")));
    return str_replace("XX5XR7ER4", "".$text."", $content);
    }
    add_filter('the_content', add_after_content);

    So now you know the rest of the story…. Paul Harvey (9/4/1918 – 2/28/2009)

    Thread Starter wp_BOB

    (@wp_bob)

    I guess my next question should be… “Where do I go to get technical support for WP…?”

    Thread Starter wp_BOB

    (@wp_bob)

    When I click on “Link Categories” the page loads and it says that I have 9 links in the “BlogRoll” Category…. when I look in my PHP MyAdmin at the database there are only TWO LINKS… I have deleted all the links and added two… so there is something not “hooked” up right to the correct database… why would it say I have 9 links listed when there are only two to choose from in the MySQL Database…??

    Thread Starter wp_BOB

    (@wp_bob)

    Well I guess I just have to resign myself to not having a fully working version of WP…

    My server settings don’t have anything to do with the files not working… They just don’t work.

    I have changed all PHP.ini settings and it does nothing…

    Any Suggestions…???????????????????????????????????

    Thread Starter wp_BOB

    (@wp_bob)

    I am going through my PHP.ini file and changing every entry to try and find out why these two pages of my WP installation do not work. I have downloaded the new version twice and replaced the versions on my server… nothing seems to help get my Links and Comments Managers to work… They just stop half way through loading the page…

    Thread Starter wp_BOB

    (@wp_bob)

    I think I just need to dump some plugins.. the ones that update once a week for no reason. I seriously think it is just to bring more attention to their plugin… or they just don’t know what they are doing.

    Thanks….

    Thread Starter wp_BOB

    (@wp_bob)

    Well that sucks… every time I open my Admin there is a plugin that “NEEDS” to be updated… I spend a lot of time “UPDATING PLUGINS” BUT if you DON’T UPDATE them… they still work.. and everything is as secure as it was before. These plugin updates are super annoying… and I seriously doubt that they really NEED to be updated. It is “WP Plugin Update SPAM” is what it is…

    I can see when a new version of WP comes out.. everyone has to make sure their plugin is compatible… but there is no reason that a plugin should need to be updated several times in one month when there has not been a new version of WP released.

    At the very least WP should put a meter on each Plugin Page that says how many average updates per month each plugin usually “requires” so that people know that the plugin they are about to use will need constant attention.

    Thanks….
    Now I’m off to delete some plugins that are more trouble than they are worth…

    Thread Starter wp_BOB

    (@wp_bob)

    I increased the memory limit to 128m… and it didn’t work. It seems the link-manager file only loads half way… when I look at the source.. the file is not complete so there is something stopping the page from loading all the way. It does the same thing on my edit-comments.php file… it won’t load 100%.

    This is happening on 4 different blogs that I administer and I can’t for the life of me figure out what server setting WP is having a problem with…

    Thread Starter wp_BOB

    (@wp_bob)

    It is a fresh install of the database so I can’t see where the problem would be… when I first install it the links manager is unavailable. No other editing problems at all… I can’t see it being a server issue because there is nothing in the links manager that isn’t in the file to submit/edit the posts…

    I have downloaded a fresh version and it is the same thing… no links manager..

    Thread Starter wp_BOB

    (@wp_bob)

    Yes…. still not working…

    Thread Starter wp_BOB

    (@wp_bob)

    Tried that… didn’t work… The links page is still a blank page.. I see everything accept the form to change the links…

    It is pretty frustrating since this has been going on for the last 3-4 WP updates… before that it all worked fine. I thought it would be fixed in the next update so I didn’t worry about it.. but it has been going on waaaay too long now…

    Thread Starter wp_BOB

    (@wp_bob)

    I just tried all of that… and nothing worked. There are no options on the “Links” page… I can ADD a link… and I can ADD a LINK CATEGORY… but I can’t edit the links at all.

    I am using the TwentyTen Theme and the “Plugins Folder is empty”

    I am the Admin on three different blogs and they are ALL doing the same thing… no LINK administration..

    I can’t believe that no one has reported this before… I just downloaded and installed a fresh copy of the WP 3.0.4 and right out of the box the links don’t work.. and I have downloaded a fresh copy several times…

    Any Help would be appreciated… Thank You.

    Thread Starter wp_BOB

    (@wp_bob)

    Also you could have an “IGNORE THIS WARNING” button that we could click if we don’t care to update or we don not want to see that particular warning message again… it’s annoying not to be able to get rid of it.

    THANKS!!!!!

Viewing 13 replies - 1 through 13 (of 13 total)