ajwalsh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Moving WP from Subdirectory to Whole SiteThanks. Have read through the instructions. At one point it says “make sure all index.php, .htaccess, and other files that might be copied over are backed up and/or moved.”
I just realized that I have two .htaccess files, one in the root folder and one in the blog folder. I don’t know anything about how they work, is this problematic? See http://pastebin.com/KqjY2u5u
Thanks again.
Forum: Themes and Templates
In reply to: Code Issues With My New Theme?Sorry, I wasn’t very clear there and didn’t mean “static”. Those other pages are actually dynamic in that I use PHP include function for the header and sidebar. And since I created the WP theme using the same basic template, they are very similar code-wise.
What I meant so say was that it isn’t a wordpress blog.
Forum: Themes and Templates
In reply to: Code Issues With My New Theme?Thanks 123milliseconds. I just can’t get to the bottom of this.
If it’s a problem with a plugin or WP itself, why is it only horribly slow some of the time?
If it’s a hosting problem, then why does the rest of my site (non-WP static pages) always load fine? (http://andrewjwalsh.com loads fine, http://andrewjwalsh.com/blog is often slow…)
I just checked on the iwebtool speed test and the blog loaded in 2.29 one time and 14.65 just a few seconds later…
My host has not been able to provide any help. I really would like to figure out where the issue lies, but do not know how to proceed.
Forum: Themes and Templates
In reply to: Code Issues With My New Theme?Sorry to keep posting so much but nope, it wasn’t such an easy fix. Just went to my blog again and it took over one minute to load even the homepage.
Forum: Themes and Templates
In reply to: Code Issues With My New Theme?Hmmmm, I may have solved it. I got rid of one plugin that I thought was a little less well-known than the others and it seems to be running fast again now.
I’ll make sure this isn’t just temporary, but if that was the only problem, I really apologize for making so much of a fuss in this thread!
Forum: Themes and Templates
In reply to: Code Issues With My New Theme?Thanks, 123milliseconds. That makes sense why this might be the case. It’s really frustrating because I already host two other blogs on a different hosting plan of the exact same type (Godaddy Shared) and they have never had any problems with loading.
One more thing that might be a factor: my site has a non-blog component as well, five static pages that I coded myself (http://andrewjwalsh.com). They load perfectly fast and are hosted the same. It’s only the files in the WP blog subdirectory that are slow.
Do you think it is just an issue with my host, then, or something else, a WP issue?
I really appreciate the help; I’ve been driving myself crazy trying to figure it out on my own!
Forum: Themes and Templates
In reply to: Code Issues With My New Theme?Greg, thanks for the help.
I temporarily switched to Twenty Ten and that did seem to make things run faster. And my whole problem is strange because it seems to be hit-or-miss: sometimes it loads pages fine and sometimes everything takes at least 5-10 seconds.
I turned WP_DEBUG on and got a bunch of errors. They seemed to be all related to very common plugins (All in One SEO, Share and Follow etc) and a few deprecated functions in functions.php (which looked relatively minor):
I am rather doubtful that the plugins are the problem if it ran smoother with Twenty Ten. I don’t have any cache plugins running currently, and I’m pretty confused about what to do next.
Thanks again for the help. My url is http://andrewjwalsh.com/blog
Finally, I’m not sure if this is a clue but when I log to my admin screen those options take forever to load and sometimes time out.
Forum: Themes and Templates
In reply to: Code Issues With My New Theme?Thanks, that’s a good idea! Today, actually my admin dashboard has been responding so slowly that I can’t even publish a new post! (Got an internal server error) I’d guess this is more than just a theme problem.
Forum: Themes and Templates
In reply to: Quick Question for Displaying PostsI have solved the issues myself. If anyone else is curious about how to do it, I consulted this tutorial:
http://www.wprecipes.com/datadial-asked-how-can-i-display-1-full-post-and-3-excerpts
Forum: Themes and Templates
In reply to: Quick Question for Displaying PostsAnd also, I just noticed that this is actually displaying the excerpt after the full post as well.
Any more help would be greatly appreciated!
Forum: Themes and Templates
In reply to: Quick Question for Displaying PostsActually, I do still have one issue. I’d like to include a link to “leave a comment” for the full post but “click to continue reading” for the excerpts.
<?php if ($count < 1) { the_content(); } $count = $count + 1; the_excerpt(); ?> <a href="<?php the_permalink() ?>">Click to Continue Reading</a>This code understandably shows the “click to continue” on both. What function can I use to enter html into the two different PHP lines?
Forum: Themes and Templates
In reply to: Quick Question for Displaying PostsIt works for me! Thanks.
Forum: Themes and Templates
In reply to: Magazine style themePersonally, when I think of magazine theme I usually picture one with images and a slideshow. What exactly do you mean with “magazine style” that would be separate from a regular theme?
Forum: Themes and Templates
In reply to: Designed my own theme, confused with comments.phpThanks, I’ve looked through the default comments, it’s some pretty complicated PHP. How exactly would I go about editing CSS to control the display of my comments?
Are there any plugins or anything that could help with this? I found something called “Sexy Comments” but it required editing the comments.php code in a theme folder, which I don’t currently have.
Thanks.
Forum: Themes and Templates
In reply to: need permanent text at top of each pageI’m probably over-thinking this… Sorry, I’m new to these forums.
Do you know how to create pages and how they are different from posts? That would be a good thing to search.
http://codex.wordpress.org/Pages
Here’s a good link in the codex.