jesseg5
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pretty Permalink troubleYeah 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
Forum: Fixing WordPress
In reply to: Permalink Problem Still Exists Upon 2.6.1 UpgradeAccording 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.
Forum: Fixing WordPress
In reply to: Permalink Problem Still Exists Upon 2.6.1 UpgradeYes, 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?
Forum: Fixing WordPress
In reply to: httpd.conf file, How can I modify?thanks, I figured that.
Forum: Fixing WordPress
In reply to: Next/Previous Links not workingNo 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…
Forum: Fixing WordPress
In reply to: Permalink Problem Still Exists Upon 2.6.1 UpgradeCan 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
Forum: Fixing WordPress
In reply to: text alignment in all browsersProblem Fixed. Refer to this article for answer.
Forum: Fixing WordPress
In reply to: Navigar Bar and IE helpPlease see my article at click here
Forum: Fixing WordPress
In reply to: Navigation Placement “IE” (Internet Explorer) How to?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” />
<![endif]–>This code above tells the browser.. “If browser is greater than IE6 – Please use this stylesheet instead.
Hope this helps..
Forum: Fixing WordPress
In reply to: Next/Previous Links not workingOk 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...] »'); ?></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('« Older Articles') ?></div> <div class="alignright"><?php previous_posts_link('Newer Articles »') ?></div> </div>
Forum: Themes and Templates
In reply to: Different background image for home vs. single postsI 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.
I want to use the background as I have on the 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.
Forum: Fixing WordPress
In reply to: Simple Kubrick Question? Difficult Answer?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.
Forum: Fixing WordPress
In reply to: Sidebar Background ColorThanks, 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 #
Forum: Fixing WordPress
In reply to: WORDPRESS site displayed half in IEYou 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.
Forum: Fixing WordPress
In reply to: WORDPRESS site displayed half in IEYour site has mad errors. Try validating at https://validator.w3.org/