mikemayer66
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: After I moved my WP to a new subdirectory, everything is screwed up!Yep, exactly as it states…
Ok, so I figured out (thanks to wp-config) that I was in fact on the wrong database! I followed the step-by-step instructions and changed the all of the URLs in phpMyAdmin to rootdownfitness.com/workout_blog, and yet, still no blog!
I am getting:
“Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Apache/1.3.33 Server at rootdownfitness.com Port 80″
Is there any other ideas that can get my blog up again!?!
-Thanks
Just to be sure, I should move index.php, all of the wp-XXXXX files and folders, and xmlrpc.php ?
I only have one database to choose from…
Here is an article I found but have no idea how to change “root.root” to “mysql.mysql”, not that I would even know if that is the problem!
Would I mess anything up by moving everything back to the subdirectory I changed the URL to in the WordPress Admin to see if I am able to move the blog again???
Thanks Again!
I finally got to my phpMyAdmin through the GoDaddy control center, and when I clicked on my database it says “No tables found in database.” I am relatively new to this whole WordPress thing, especially this back-end database stuff, perhaps I am missing something…
Thanks!
Forum: Fixing WordPress
In reply to: Unintentional rearrangement of layout when trying to post a commentThanks to esmi also, you caught it right away!
Forum: Fixing WordPress
In reply to: Unintentional rearrangement of layout when trying to post a commentThanks doc4, it worked! I wish I would’ve realized that’s all it was. I appreciated it, thanks!
Forum: Fixing WordPress
In reply to: Unintentional rearrangement of layout when trying to post a commentThanks for getting back to me, I am still pretty new with this stuff, here is my code, I’m afraid I don’t know exactly where those tags need to be, any assistance would be awesome!
<?php get_header();?> <div id="content"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="date"> <?php the_time('d', '', ''); ?> <div> <?php the_time('M', '', ''); ?> </div> </div> <div class="title"> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1> by <?php the_author() ?> </div> <div class="clear"></div> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> <div class="postmetadata"> <?php the_tags('Tags: ', ', ', '<br />'); ?> <?php the_category(', ') ?> <?php edit_post_link(' | ', '', 'Edit'); ?> </div> </div> <?php comments_template(); // Get wp-comments.php template ?> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Previous') ?></div> <div class="alignright"><?php previous_posts_link('Next »') ?></div> </div> <?php else : ?> <h1 class="center">Not Found</h1> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?> </div> <?php get_sidebar();?> <?php get_footer ();?>Forum: Fixing WordPress
In reply to: Adding rollover buttons to links…doc4,
I am familiar with the style.css (kind of!) but I guess what I am struggling with is that I am looking for the code for each button so I can specify which image is going to be the rollover image…
I am looking for something similar to this example:
#home
{
display: block;
width: 107px;
height: 23px;
background: url(“homenormal.gif”) no-repeat 0 0;}
#home:hover
{
background: url(“homerollover.gif”) no-repeat 0 0;
}I am not seeing this in my style.css, I am pretty sure I am not missing it, am I just looking in the wrong place!?!
Forum: Fixing WordPress
In reply to: Removing Blogroll Header text above links…Pastebin link http://wordpress.pastebin.ca/1487486
Forum: Fixing WordPress
In reply to: Removing Blogroll Header text above links…I did use the widget for my links, and I did find the sidebar.php and tried to change it and you were right, no luck! I’ll put the sidebar.php in the pastebin just in case.
Is there a site or tutorial you would recommend for me to learn how to put the links in an editable format? I like the location of the links now, I just assumed I needed to put them in via WIDGET to place them there.
Thanks so much for your help!
Forum: Fixing WordPress
In reply to: Removing Blogroll Header text above links…I tried following the link “wp_list_bookmarks(),” to figure out where to put in “wp_list_bookmarks(‘title_li=’), but I don’t exactly understand what file to change or where to find it.
Any help!?! Thanks!
Forum: Fixing WordPress
In reply to: How do I remove the Blogroll header text?I am having the same issue as databell96, but I am still fairly new to WordPress and I’m having trouble finding the file to make the adjustment to the code.
Here is my site, as of now I have a ” . ” as the title because WP will not let you leave the title empty when going through Admin.
Thanks.