The MU forums have moved to WordPress.org

my post here got deleted - why? (13 posts)

  1. Ovidiu
    Member
    Posted 17 years ago #

    hello,

    I posted a pretty important question here, yesterday, inside the Miscellaneous category where it says: Almost everything else so I thought my question belonged in there as it was about theming, but not especially related to wpmu rather general wp theming question.

    If there was a problem with that, I'd expected my post to get closed, or at least some notification by mail why it got deleted. Is this frequent practice around here?
    Anyone care to explain?

  2. Farms
    Member
    Posted 17 years ago #

    If we had a moderator it'd help...

  3. Ovidiu
    Member
    Posted 17 years ago #

    ahhhrggg....

    If I had only copied that post. it was quite an urgent matter and it was a really long text.

    I'll try again and head over to wp-land, maybe it doesn't get deleted over there...

  4. Ovidiu
    Member
    Posted 17 years ago #

    I don't know whats wrong, I just wrote my post again in the wp support forum, clicked save, got to the page where I see my psot and it says I wrote my post 4 seconds ago, but when I try to reply it says: topic closed!?
    are they that quick now ;-) ?

    here it is again:

    I am at a loss here. I am playing around with a new site, which all of a sudden stopped using the different tempaltes like archive.php, category.php, searchresults.php, etc.
    
    what happens is that only the home.php seems to be used. if you click on a post you get the same view as if you click on a category and the same view as if you click on a page.
    
    check it out here: http://www.rondul.eu/
    If I switch back to the default template, everything is fine, so it is definitely a template problem.
    
    Here is the beginning of my index.php, looks all good to me:
    
    <?php get_header(); ?>
    
    <div id="content">
    
    <div id="contentmiddle">
    	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    
    <div class="contentdate">
    	<h3><?php the_time('M'); ?></h3>
    	<h4><?php the_time('j'); ?></h4>
    	</div>
    
    <div class="contenttitle">
    	<h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php if(function_exists('ImageHeadline_add_options_page')) the_title('-image-'); else the_title(); ?></a></h1>
    	<p><?php the_time('F j, Y'); ?> | <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?></p>
    	</div>
            <div class="post-content">
    	<?php the_content(__('Read more'));?>
            </div>
    
    I'd appreciate any hint or any help that you can give out there, I have no clue whats happening here...
  5. drmiketemp
    Member
    Posted 17 years ago #

    1) Might help the powers that be if you mentioned what teh post was about.

    2) You have checked your profile to see if maybe you're just missing it, right?

    3) May be because you're using a backtick instead of apostrophe. You may have noted that your posts look really weird.

  6. Ovidiu
    Member
    Posted 17 years ago #

    thx drmike,

    1) the post that got deleted was almost exactly the post I put above in backticks,
    2) I checked my profile, the last post I started lies back several month, so my post has gone missing
    3) you're right I put the post which I wanted to qoute inside backticks, sorry for that, anyway the intention was to separate it from the rest of the post (above)

    => conclusion: my post is still missing and the issue (see above in backticks) is still open :-)

  7. lunabyte
    Member
    Posted 17 years ago #

    It's the Government, man. Big Brother is watching... lol

    Seriously, it could have been one of those random things, since we still don't have a moderator. lol

  8. Ovidiu
    Member
    Posted 17 years ago #

    ok - topic closed, btu what about my post?
    shall I post it again, or can someone have a look at it (see above, text in backticks) and give me a hint why this blog is not acting accordingly to my templates?

  9. drmiketemp
    Member
    Posted 17 years ago #

    Probably since I can't see that up there in IE7 due to the backticks being used. It's all cut off.

  10. dsader
    Member
    Posted 17 years ago #

    You're opening if and while don't end. Comparing what you have to Classic theme add

    <?php endwhile; else: ?>
    <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
    <?php endif; ?>
  11. Ovidiu
    Member
    Posted 17 years ago #

    @drmiketemp

    I can see it just fine, there are scrollbars...

    @dsader

    thx for looking into this, but like I said above: Here is the beginning of my index.php, so here is the complete code:

    <?php get_header(); ?>

    <div id="content">

    <div id="contentmiddle">
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <div class="contentdate">
    <h3><?php the_time('M'); ?></h3>
    <h4><?php the_time('j'); ?></h4>
    </div>

    <div class="contenttitle">
    <h1>" rel="bookmark"><?php if(function_exists('ImageHeadline_add_options_page')) the_title('-image-'); else the_title(); ?></h1>
    <p><?php the_time('F j, Y'); ?> | <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?></p>
    </div>
    <div class="post-content">
    <?php the_content(__('Read more'));?>
    </div>
    <!--
    <?php trackback_rdf(); ?>
    -->

    <?php endwhile; else: ?>

    <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>

    <div id="posttools">
    <div class="left">Autor: <?php the_author_firstname(); ?> <?php the_author_lastname(); ?>
    <?php if(function_exists('wp_email')) { email_link(); } ?> <?php if(function_exists('wp_print')) { print_link(); } ?> <?php if(function_exists('the_ratings')) {
    $online = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->useronline");
    if(intval($online) < 100) the_ratings('span');} ?>
    </div>
    </div>
    <?php if(function_exists('similar_posts')) {echo('<h2>Alte articole asemanatoare:</h2>');similar_posts();} ?>
    <h1>Comments</h1>
    <?php comments_template(); // Get wp-comments.php template ?>
    </div>

    <?php include(TEMPLATEPATH."/r_sidebar.php");?>

    </div>

    <!-- The main column ends -->

    <?php get_footer(); ?>

    so this should work just fine.

  12. Ovidiu
    Member
    Posted 17 years ago #

    btw. here is my archive.php:

    <?php get_header(); ?>

    <div id="content">

    <div id="contentmiddle">
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <div class="contentdate">
    <h3><?php the_time('M'); ?></h3>
    <h4><?php the_time('j'); ?></h4>
    </div>

    <div class="contenttitle">
    <h1>" rel="bookmark"><?php the_title(); ?></h1>
    <p><?php the_time('F j, Y'); ?> | <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?> | <?php echo the_ratings_results(get_the_ID()); ?></p>
    </div>
    <div class="excerpt">
    <?php the_excerpt_reloaded(); ?>
    </div>

    <div class="postspace">
    </div>

    <!--
    <?php trackback_rdf(); ?>
    -->

    <?php endwhile; else: ?>
    <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>
    <?php posts_nav_link(' — ', __('« go back'), __('keep looking »')); ?>
    </div>

    <?php include(TEMPLATEPATH."/r_sidebar.php");?>

    </div>

    <!-- The main column ends -->

    <?php get_footer(); ?>

    I see no reason why wp doesn't pick up these two different templates, they worked unti la few days ago and I can't find the error.

  13. Ovidiu
    Member
    Posted 17 years ago #

    oh, and I just realized, actually its picking up my different templates, but always only shows these three posts, whatever view I chose, doesn't matter if I am trying to view a page, a single post, an archive, I will always see this three posts wrapped somehow into the coresponding template.

    HELP, please :-(

About this Topic