reneechung
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Cannot login to wp-admin after database upgradehi there, i’m having the same problem. Can you roughly explain what do you mean by renamed your plugin folders?
Forum: Installing WordPress
In reply to: define(‘DB_HOST’, ‘localhost’); How do I change this?I’m having some problems as well. My blog url is http://blog.domain.com. The control panel told me specifically to put mysql5int.yourdomain.com as the host. I’ve tried but I’m still getting the error database connection. I’ve tried putting mysql, localhost, ip address, nothing works. Anyone has any idea?
Thanks in advance.
Forum: Fixing WordPress
In reply to: Bullets Still showing even after i set all list-style-type: to noneOk i don’t know whether this help but are you sure all your li’s are inside ul’s?
Forum: Themes and Templates
In reply to: Search ResultsOh yes there are other codes before that. Sorry let me post it up properly.
<?php /* Template Name: Find */ ?> <?php get_header();?> <div id="content" class="w1260"> <?php get_sidebar();?> <div class="column"> <h1>SEARCH</h1> <?php include (TEMPLATEPATH . "/searchform.php"); ?> </div> <div class="column2 last"> <div id="scroller2"> <?php if (have_posts()) : ?> <ul class="line"> <?php while (have_posts()) : the_post(); ?> <li> <p class="post-title"> <a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a><br /> <span class="post-small"> <?php the_date();?><br /> FILED UNDER <?php the_category(', ') ?> </span> </p> </li> <?php endwhile; ?> </ul> <?php else : ?> <p>No posts found. Try a different search?</p> <?php endif; ?> </div> </div> </div> <?php get_footer();?>Forum: Fixing WordPress
In reply to: Bullets Still showing even after i set all list-style-type: to nonehow about just list-style:none ??
Forum: Themes and Templates
In reply to: Search Results<?php if (have_posts()) : ?> <ul class="line"> <?php while (have_posts()) : the_post(); ?> <li> <p class="post-title"> <a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a><br /> <span class="post-small"> <?php the_date();?><br /> FILED UNDER <?php the_category(', ') ?> </span> </p> </li> <?php endwhile; ?> </ul> <?php else : ?> <p>No posts found. Try a different search?</p> <?php endif; ?>Forum: Themes and Templates
In reply to: Search Resultsthis is how my code looks like
Forum: Themes and Templates
In reply to: Search Resultsa search.php for my theme.
Forum: Installing WordPress
In reply to: Just installed and I see no postingsOnce you have transfer all the files to your site, you should make changes to your wp-config file. After that you should go to the wp-install page (if i remember correctly) which will lead you a step by step process.