Forum Replies Created

Viewing 15 replies - 1 through 15 (of 44 total)
  • Yeah this sucks for me because I am hosted by Godaddy and only they can change it. I called them and asked if they could check it out but they said AllowOverride was active. However I am not sure thats the case.

    Would you mind posting what your new .htaccess file looks like? I am curious to see what it changed based on your old file above.

    Thanks finkyfeke

    Thread Starter jesseg5

    (@jesseg5)

    According to WP they have the fix taken care of when upgrading to 2.6.1. Seems like it’s not 100% worked out however. I was on 2.5+ before this. Let me know if it works when you downgrade- perhaps I’ll do the same.

    Thread Starter jesseg5

    (@jesseg5)

    Yes, right now I have all the posts showing on index page until I can get this problem fixed. (I’ll post 4 posts and leave the “Hello world! Under Construction” on the second page so we can see what’s exactly going on.

    What I would like to have is 3 posts per page which I can do by modifying code. And have the next-previous links sort through the pages.

    This is the code I have in my index file for the posts per page viewing.

    <?php get_header(); query_posts($query_string.'&posts_per_page=4'); ?>

    Tried deactivating the plug-ins no luck.

    I get this feeling it has to do with WordPress not automatically updating the permalink structure. When I look at the above .htaccess file I notice it has the word “blog” Even at that it also specifies “index.php.

    If WordPress was to update my .htaccess file shouldn’t it update the path above?

    Thread Starter jesseg5

    (@jesseg5)

    thanks, I figured that.

    Thread Starter jesseg5

    (@jesseg5)

    No Dice. This has to be one of the worst problems I have ever encountered using wordpress..and no matter how much I search there is never a clear difinitive answer….

    htaccess, mod-rewrites, apache, IIS, blablabla

    sighs…

    Thread Starter jesseg5

    (@jesseg5)

    Can anyone let me know if my htaccess file is correct based on the above information..

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /blog/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /blog/index.php [L]
    </IfModule>
    
    # END WordPress
    Thread Starter jesseg5

    (@jesseg5)

    Please see my article at click here

    Thread Starter jesseg5

    (@jesseg5)

    Answer: Create separate styles sheets which are browser specific and modify accordingly.

    For Instance:

    <!–[if gte IE 6]>
    <link rel=”stylesheet” type=”text/css” href=”https://url/wp-content/themes/default/iespecific.css&#8221; />
    <![endif]–>

    This code above tells the browser.. “If browser is greater than IE6 – Please use this stylesheet instead.

    Hope this helps..

    Thread Starter jesseg5

    (@jesseg5)

    Ok my problem has been solved above. However the “Next” and “Previous” links are not working again!! Instead, I am redirected to https://www.jessegunzel.com/blog/page/2/ which is blank.

    I did not make any changes to my code.

    https://www.jessegunzel.com/blog

    Though my problem seems similar to others, I’ve been looking around the forums but cannot find an answer because my “query_posts” code differs from everybody elses.

    Can anyone see what may have happened?

    <?php get_header(); query_posts($query_string.'&posts_per_page=3'); ?>
    
    <div id="content" class="narrowcolumn">
    
    <?php if (have_posts()) : ?>
    
    		<?php while (have_posts()) : the_post(); ?>
    
    			<div class="post" id="post-<?php the_ID(); ?>">
    				<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
    				<small>Published on <?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small><img class="size-full wp-image-29" style="vertical-align: top;" title="stroke_top" src="https://www.jessegunzel.com/blog/wp-content/uploads/2008/05/stroke_top.jpg" alt="" width="448" height="3" />
    <div class="entry">
    					<?php the_content('[More...] &raquo;'); ?></div>
    <p><img class="size-full wp-image-29" style="vertical-align: top;" title="stroke_top" src="https://www.jessegunzel.com/blog/wp-content/uploads/2008/05/stroke_top.jpg" alt="" width="448" height="3" /></p></div>
    <?php endwhile; ?>
    
    <div class="navigation">
    			<div class="alignleft"><?php next_posts_link('&laquo; Older Articles') ?></div>
    			<div class="alignright"><?php previous_posts_link('Newer Articles &raquo;') ?></div>
    		</div>

    I am not sure if I should be posting here considering this post is marked solved but I am having a similar problem.

    I cannot get my background image to appear on my single post pages. It’s just white.

    Single post page

    I want to use the background as I have on the homepage.

    Homepage

    I looked at the code above but don’t know exactly where to place it and what class I should be using in this case.

    Can someone suggest something? Thank you.

    Thread Starter jesseg5

    (@jesseg5)

    ahah! the reference to the file is found in the header.php file. Delete the first #page and one is able to modify the background image area accordingly.

    Thread Starter jesseg5

    (@jesseg5)

    Thanks, I tried the methods above but it would only show up on Mac browsers. Even in that case..it looked bad.

    Faux Colums would probably be the best bet for me here.

    However, when I tried the Faux Columns, the background image would not appear in IE.

    I may have to experiment without the “sidebar widget” and see what happens then.

    Grrrr, thanks for your input!

    P.S. I hear ya on the class vs id. i meant to put #

    You have 142 errors. All browsers interpret the code in their own way. IE is the most precious. If your code is all screwed up, your page will be also.

    Your site has mad errors. Try validating at https://validator.w3.org/

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