Forum Replies Created

Viewing 15 replies - 1 through 15 (of 29 total)
  • Perhaps this plugin will help…

    worth2read.org/2010/02/21/wordpress-plugin-send-notification-by-email-when-a-post-is-published/

    Thread Starter tazatek

    (@tazatek)

    Indeed, I’d tried all those things (except to export XML and restart from scratch)

    I’m really wanting to identify WHERE the problem is… DB/Files have all been sorted through, and I’m not identifying any iframe/base64/etc anywhere.

    I only know that when I activate a plugin (any of them) the malicious code shows up.

    I’ll be exporting and restarting from scratch, but I’d still like to know where I could be looking for suspect code.

    Thanks

    Matt

    Forum: Plugins
    In reply to: the_editor

    I too have had this problem

    It seems that if you have 2 editors on a page, the buttons get confused.

    Anyone know how to implement 2 the_editor() editing fields on a page?

    Matt

    Benlag had mentioned that if a different id is used, that some javascript code would be needed… specifically:

    Note: if the id is different than ‘content’ it doesn’t automatically load the visual mode for some reason. That can be fixed with a call to switchEditors.go(‘theid’, ‘tinymce’); after the document is ready (jQuery.ready(…));

    Where do I put this? a new js file? or an existing one?

    I’m trying to get 2 editors on the same screen, and the id’s are conflicting… I’m hoping that this will solve my problem.

    Thoughts?

    Thanks

    Matt

    Forum: Plugins
    In reply to: setINI() definition?
    Thread Starter tazatek

    (@tazatek)

    nevermind… I found it. Its CFormsII specific…

    Thread Starter tazatek

    (@tazatek)

    OK – I just paid a guy to fix it, and he couldn’t find it… we’re both inclined to think that it is a server config issue.

    What configurations should I be looking at?

    I’ve got
    PHP 5.0.4
    MySQL 4.1.20 and
    Apache 2.0

    Fairly standard… what settings could I be looking for?

    I’ve got debug on apache and logging in PHP –

    No errors are coming through the logs… I’m stumped.

    HTACCESS?? HTTPD.CONF?

    HELP!?!?!

    Matt

    Thread Starter tazatek

    (@tazatek)

    I set it to 2… and only 2 posts are showing up.

    But still no navigation!!

    Uggghhhh… I always find the doozies.

    Matt

    Thread Starter tazatek

    (@tazatek)

    yes I do have it –

    this is from the default (unmodified) kubrik theme (1.6) that ships with wp 2.8.1

    Here’s a copy/paste from my index.php

    <div class="navigation">
    <div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
    <div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
    </div>

    Because the default theme isn’t working (which I was pretty sure had navigation) I want to fix it there first… knowing that the rest of it will just fall into place..

    Matt

    ps. I still have the default theme up if you want to see it yourself.

    Thread Starter tazatek

    (@tazatek)

    I’m not using the default theme currently (since it’s a live site) and was only testing it out…

    but it uses the same/similar code to the default.

    https://www.kettlewell.net

    I’ll switch the theme for an hour or so you can take a look at it.

    There are about 100 posts on the blog, so there is more than enough….

    Thanks

    Matt
    https://www.kettlewell.net

    I second the motion to have this fixed with custom permalinks in 2.8.x

    Anyone have a hack that would work for this?

    Matt

    Thread Starter tazatek

    (@tazatek)

    I don’t follow –

    what you sent me is for post to post navigation, not category pages navigation… notice the plural in the function

    Is this where you were hoping to send me?
    https://codex.www.ads-software.com/Template_Tags/next_posts_link

    I’ve now found that it’s not working in the default theme either –
    which has this…

    `
    <div class=”navigation”>
    <div class=”alignleft”>
    <?php next_posts_link(‘« Older Entries’) ?>
    </div>
    <div class=”alignright”>
    <?php previous_posts_link(‘Newer Entries »’) ?>
    </div>
    </div>
    `

    So I think that there is more than meets the eye here ??

    If my default theme can’t show navigation on the homepage, then something might be configured wrong on my end?

    Or new bug in 2.8.1?

    or… ????

    Help!!

    Thanks

    Matt

    Thread Starter tazatek

    (@tazatek)

    Sure … This is just a snippet around it… The theme is supposed to support it (either with or w/o wp_pagenavi)

    <?php endwhile; ?>
    <div style="clear: both;"></div>
    
    <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
     else { ?>
    <p class="pagination">
        <?php next_posts_link('&laquo; Previous Entries') ?>
        <?php previous_posts_link('Next Entries &raquo;') ?>
    </p>
    <?php } ?>
    <?php else : ?>

    UPDATE: I was advised to “reinstall” wordpress… I did to humor the author, but it did nothing to help my situation…

    I’m on wp 2.8.1 PHP 5.0.3 mysql 4.1.20 and apache 2.x

    My php is set for error logging, and shows nothing. Apache is set to Debug level, and shows nothing in error.

    I’m stumped. The code looks right to me (and the author took a peek at my admin panel and found nothing wrong)

    Do I have a silly config error somewhere?

    Thanks

    Matt

    Thread Starter tazatek

    (@tazatek)

    I’ve added query_posts($query_string.”&showposts=200″); to at least get all the content to my users…

    But I still can’t get the navigation to work.

    If anyone needs to see the page in it’s “broken” state, let me know and I’ll put it back with the broken nav-links.

    Otherwise, I’m not going to worry about it until I get 200 articles in that category ??

    Matt

    Thread Starter tazatek

    (@tazatek)

    Is it a problem that category pages can’t display navigation links?

    Or am I using the wrong navigation functions?

    Is there something in my theme that could be causing the problem?

    If so, what should I be looking for that would provide this interference?

    Here’s the link to the category page I’m trying to get nav links on:
    https://www.kettlewell.net/category/tdmp-members/

    Thanks

    Matt

    Thread Starter tazatek

    (@tazatek)

    As an update, I’ve done 2 things (Still Unresolved)

    1) I did a mass deactivate of all my plugins. – Nothing Changed.

    2) Changed

    previous_posts_link(‘Next’);
    next_posts_link(‘ Prev’);

    to

    previous_posts_link(‘Next’, 100);
    next_posts_link(‘ Prev’, 100);

    This at least got my Next/Prev links to show up –

    But they are not paginating correctly.

    I added

    query_posts(($query_string.”&showposts=2″);

    to allow only 2 posts / page, but when directed to the 3rd page, I get a 404 ??

    The fact that I can hand in a value of 100 to the next/prev functions for a maxpages value tells me that something else is wrong … likely in my ??theme??

    I’m really not sure that a upgrade from 2.6 to 2.7 is going to change anything.

    Does anyone have any pointers on what things to look for in my theme that could be causing this problem?

    Just as a reminder, this is an ID specific category page that I’m working with (category-165.php), if that matters…

    Thanks

    Matt

Viewing 15 replies - 1 through 15 (of 29 total)