Forum Replies Created

Viewing 15 replies - 1 through 15 (of 71 total)
  • Thread Starter madsen

    (@madsen)

    Hi again…Would really be grateful if some kind soul out there could help out… ??

    Thread Starter madsen

    (@madsen)

    Forgot to post a link to an entry with comments….maybe someone can look at the sourcecode and figure out what to remove from the css:

    Linky

    Thread Starter madsen

    (@madsen)

    OK then…can someone a least point me to a forum where I can get some help? Sorry…

    Thread Starter madsen

    (@madsen)

    Bump :-/

    Thread Starter madsen

    (@madsen)

    Hope it’s OK I bump this one…

    Thread Starter madsen

    (@madsen)

    Problem fixed…kinda…Kim Bach kindly (!!!!!) spent the whole morning looking into the problem and managed to fix it:

    Running your own server software like WordPress usually works like a charm, but you didn’t stand a chance in this case, because the MySQL options table HAD been updated, and since WordPress kept regenerating INVALID rewrite rules when you entered the configuration setting, it was IMPOSSIBLE to fix using the WordPress Dashboard. That actually took me a while to figure out, and luckily most Internet providers with MySQL support have PhpMyAdmin installed, so I could easily fix the problem manually, and that’s really nice.

    I actually learned something, I just couldn’t locate the permalink_structure in the options table – I figured this out quite quickly (well actually by looking at the PHP code – thank God for open source and scripting) – that something wrong had been persisted in the MySQL database. It turned out that PhpMyAdmin by default only displays the 30 first settings, and the permalink_structure option wasn’t listed on the first page.

    There’s also an issue with my host doing some redirecting, which might to some part, explain why updating the permalink structure went haywire, but I haven’t yet figured out what exactly is going on.

    Anyway…A big THANK YOU to Kim!!!!

    Thread Starter madsen

    (@madsen)

    Hi chradil

    Here are the specs (sorry)…

    https://www.needhost.dk/producttable/

    …Looks like Frontpage server extensions are installed.

    I checked out the codex permalinks section, but I’m not tech savy to say the least, and I’m not quite sure how to (or if it necsessary) create a .htacess-file or what it should say…or where to place it exactly…or wether my host has mod_rewrite. Actually…now I can’t even access my blog…I get the following message:

    Server error!

    The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script.

    If you think this is a server error, please contact the webmaster.

    —-

    If someone (trustworthy) want’s to snoop around I could give you my username/password…Sorry, but as said, I’m really not very tech savy..:-/

    Thread Starter madsen

    (@madsen)

    Thanks a lot doodlebee…as far as I can tell it solved the problem. Now that I’ve cemmented them out…Are there any “sideeffects”?

    Again..thx for helping out…appreciated!

    Thread Starter madsen

    (@madsen)

    No one?

    Thread Starter madsen

    (@madsen)

    ok…I’ll try that…thx…appreciated!

    Thread Starter madsen

    (@madsen)

    Anybody?

    Thread Starter madsen

    (@madsen)

    ok…thx. clarke…appreciated!

    Thread Starter madsen

    (@madsen)

    Excellent…thx….I’ll give ’em a shot.

    Thread Starter madsen

    (@madsen)

    Thank you so much for helping IanD…it worked!!!….appreciated!!!!

    Thread Starter madsen

    (@madsen)

    Hi Ian

    Thx. for your reply…I’m not very experienced with this so please bear with me. I’ve looked at the Archive Template but can’t locate neither _excerpt nor the _content, -unless it’s the one in line 2 you’re referring to?! You write that: “You could change that or track down the excerpt reloaded plugin which allows images.”….Sorry, this might be a daft quest., but should I just install a pluin named “excerpt reloaded”?!

    This is what my “Archive template” looks like….I’m running WP 1.5.2 and use the Kubrick template by the way…

    <?php get_header(); ?>

    <div id="content" class="narrowcolumn">

    <?php if (have_posts()) : ?>

    <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
    <?php /* If this is a category archive */ if (is_category()) { ?>
    <h2 class="pagetitle">Archive for the '<?php echo single_cat_title(); ?>' Category</h2>

    <?php /* If this is a daily archive */ } elseif (is_day()) { ?>
    <h2 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h2>

    <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
    <h2 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h2>

    <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
    <h2 class="pagetitle">Archive for <?php the_time('Y'); ?></h2>

    <?php /* If this is a search */ } elseif (is_search()) { ?>
    <h2 class="pagetitle">Search Results</h2>

    <?php /* If this is an author archive */ } elseif (is_author()) { ?>
    <h2 class="pagetitle">Author Archive</h2>

    <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
    <h2 class="pagetitle">Blog Archives</h2>

    <?php } ?>

    <div class="navigation">
    <div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
    <div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
    </div>

    <?php while (have_posts()) : the_post(); ?>
    <div class="post">
    <h3 id="post-<?php the_ID(); ?>">" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h3>
    <small><?php the_time('l, F jS, Y') ?></small>

    <div class="entry">
    <?php the_excerpt() ?>
    </div>

    <p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit','','|'); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>

    </div>

    <?php endwhile; ?>

    <div class="navigation">
    <div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
    <div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
    </div>

    <?php else : ?>

    <h2 class="center">Not Found</h2>
    <?php include (TEMPLATEPATH . '/searchform.php'); ?>

    <?php endif; ?>

    </div>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

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