• It seems that I can write new posts and have the content show up in my admin panel but the content will not publish to the site!!!

    I recently upgraded to 2.5.1 and the blog went to hell.

    The only way It seems I can post new entries is if I overwrite the old ones.

    my new entries come as /press/?post=32 etc etc

    when in fact i have a custom permalink setting of /press/%postname%/

    Why on earth are my new post being published like this and not the way I have them set up in the permalink panel. I’m desperate and would love some help on this matter as I’ve been trying to figure it out for over a week now.

    the website is https://www.oshawajazzandbluesfestival.com

    Thanks for any help

Viewing 6 replies - 1 through 6 (of 6 total)
  • Lots of troubleshooting tips at Using_Permalinks.

    Try going to Settings -> Permalinks and setting them back to default.
    Save.
    Test.
    Everything work as expected?

    If so, go back to Settings -> Permalinks and change from Default.
    Any messages at the bottom of the screen about manually updating .htaccess?
    If not, save and check to see if .htaccess in the blog root directory was created/updated.
    If yes, follow those directions.

    Did that help?

    Thread Starter capples3

    (@capples3)

    btw I should point out that the actual problem url is https://www.oshawajazzandbluesfestival.com/media

    Thread Starter capples3

    (@capples3)

    This actually did not change anything. When I switched to default the media page dissappered all together.
    When I went back and changed it the page came back and the post still did not published but was still saving it in the db as ?=32 instead of the custom permalink

    I did not see any changes in .htaccess at all

    Thread Starter capples3

    (@capples3)

    handy,

    I’m still trying to figure why it would write to the db as ?p=32 as opposed to the way I have my permalink structure set up as /press/%postname%/

    is this really a permalink issue or a db writing issue

    Thread Starter capples3

    (@capples3)

    Sorry to ramble on here everyone.

    I have even went into the db itself and changed the url of the post and it still does not even show up in the media section.

    totally confused as to what is happening

    Thread Starter capples3

    (@capples3)

    here is the code if this helps

    <?php /*
    Template Name: Media
    */ ?>
    
    <?php get_header(); ?>
    
    <?php get_sidebar(); ?>
    
    	<!-- CONTENT -->
    	<div id="content_col" class="fl">
    
    		<?php if (have_posts()) : ?>
    
    		<?php while (have_posts()) : the_post(); ?>
    
    		<h2><?php the_title(); ?></h2>		
    
    			<?php		c2c_get_recent_posts (
    				$num_posts = 10,
    				$format = "
    				<h3>%post_URL%</h3>
    				<p>%post_date%</p>
    				",
    				$categories = '2, 3',
    				$orderby = 'date',
    				$order = 'DESC',
    				$offset = '0',
    				$date_format = 'l, F j, Y',
    				$authors = '',
    				$include_passworded_posts = 'false');
    			?>
    
    		<?php endwhile; ?>
    
    		<?php else : ?>
    
    		<h2 class="center">Not Found</h2>
    		<p class="center">Sorry, but you are looking for something that isn't here.</p>
    
    		<?php endif; ?>	
    
    	</div>
    	<div class="clr"></div>
    	<!-- /CONTENT -->
    
    <?php get_footer(); ?>
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Fustrating Permalink issues’ is closed to new replies.