Forum Replies Created

Viewing 12 replies - 31 through 42 (of 42 total)
  • Thread Starter Stef Verbeeck

    (@twizted)

    Changed the setting, problem stays the same. Only the category feed works for me.

    Feed validator says it’s still broken too: https://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fwww.twizted.be%2Ffeed

    Thread Starter Stef Verbeeck

    (@twizted)

    /%postname%

    Thread Starter Stef Verbeeck

    (@twizted)

    I tried that, it resulted in my site no longer working as it should, all pages (including the feed) returned a 404 error.

    I have used lesfreeman’s fix on two different sites now, works like a charm. I had noticed this behaviour by accident, and it seems he found the exact same fix for it. ??

    Thread Starter Stef Verbeeck

    (@twizted)

    Meanwhile, I discovered the comments feed DOES work (?!?), but the regular one, or those for comments/authors DONT.

    Does anyone have an idea on how to fix this? Is using feedburner a good alternative?

    Thanks in advance.

    Thread Starter Stef Verbeeck

    (@twizted)

    No change.

    I have this code on two different pages.

    One is the homepage, which you see upon entering the site. This is a page setup to be the static homepage in wp-admin; and has only the click-able titles of the 3 latest posts visible:

    <?php query_posts('showposts=3&cat=-626'); ?>
            <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    			<div class="headline">
    			<div class="headline_date"><?php the_time('d M Y') ?></div>
    			<div class="headline_title"><a href='<?php the_permalink() ?>' class="headline_title"><?php the_title(); ?></a></div>
    			</div>
            <?php endwhile; endif;?><?php wp_reset_query(); ?>

    The second one is the actual blog page, a page setup to show ALL posts except those from category 626. I another code here:

    <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=-626&paged=$paged"); ?>
            <?php while (have_posts()) : the_post(); ?>
    
    	<div id="post-<?php the_ID(); ?>">
    	<h1><?php the_title(); ?></h1>
    	<p>door <strong><?php the_author() ?></strong> <img src="https://fileserv.twizted.be/vX/gui/icon_date.png" border="0" class="posticons" /> <?php the_time('d F Y') ?> <img src="https://fileserv.twizted.be/vX/gui/icon_comments.png" border="0" class="posticons" /> <?php comments_number('0 reacties','1 reactie','% reacties'); ?></p>
    	<?php the_content(); ?>
    	</div>
        <hr size="1" color="#dadfe3" /><p>&nbsp;</p>
    	<?php endwhile; ?><?php wp_reset_query(); ?>
    
    	<div id="pagination">
    	<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
    	</div>

    Could it have something to with this? Also, I deleted a plugin that generated events as posts (in category 626), which made sure these posts would not show up on any other page. Could it be that this setting is still in my database or something?

    Thread Starter Stef Verbeeck

    (@twizted)

    Use this to reset the effect.
    wp_reset_query();

    Looks great, never knew that existed. Still no change though, only one category showing up in feed.

    Thread Starter Stef Verbeeck

    (@twizted)

    There should be 85 posts in that feed to be precise (limited in settings to 10 posts). It should not be a theme thing, as I said: I tried switching to default Kubrick theme, with no result… ??

    Thread Starter Stef Verbeeck

    (@twizted)

    The query you’re using only excludes that category from your web pages – not your RSS feed.

    That’s what I figured, but it seemed so coincidental that exactly THAT category is the only one that DOES show up in my feed. Where’s the rest? I just don’t get it.

    I have the same issue. I’ve created a website and want the homepage to be a static page using adminpanel -> settings -> reading. This page uses a special template file called home.php that is only used for this specific page.

    I changed the “posts page” to a page called “blog”, which should use the normal template I’ve created for my pages. However, this blog page now uses the same template as the homepage, which is not what I intended. Can this be changed somehow? Modifying index.php does not seem to do the trick…

    Does this have anything to do with my template for HOME actually being called home.php and WP prefers this one over index.php?

    Thread Starter Stef Verbeeck

    (@twizted)

    Fixed it by reinstalling the whole thing.

    Might have had something to do with the warning I got the last time, stating that there wasn’t enough memory (editted this in php.ini).

    Same problem here, my blog/db are installed too, but page two isn’t loaded.

    I tried to reset my admin password, and I receive an email with a link but they page always replies “invalid key” when I click it to confirm the password change…

    Can’t I find the pasword in the mySQL somewhere?

Viewing 12 replies - 31 through 42 (of 42 total)