acetatsujin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error Establishing a Database ConnectionOk I got it working but now a new problem…. this one is not good. I lost all of my posts that I had 🙁 I don’t understand … everything I did I uploaded. Why did they disappear? Don’t tell me my posts are located somewhere else?
And I uploaded stuff in Media but it is not showing at all. -sighs- …..
Forum: Fixing WordPress
In reply to: Error Establishing a Database ConnectionYes. I basically downloaded everything from the old host before they took it down, literally everything. Then I uploaded it to the new host. My old blog was located at http://www.otakixus.com/blog and the new one moved to http://www.otakixus.net/blog so the problem isn’t being resolved. I’m working on both blog and blog2 right now and I’m not sure how to fix them. I’m googling as I’m editing around to see what I can do with it. So I got an e-mail from my new host telling me to edit the wp-config.php which I did and it turns out to be a blank white page on blog2. I’m thinking there is an extra step I need to take to fix it. God, this is too damn complicated.
Forum: Fixing WordPress
In reply to: Error Establishing a Database ConnectionThank you for your email inquiry.
Regretfully, while we make an effort to assist our clients with their web services, troubleshooting third party code as well as determining display or design
related fixes is well beyond the scope of support we can offer at this time; however, your “WordPress” question is best directed to WordPress support team or forum (http://wordpress.org/support/)That’s what they sent to me.
Forum: Fixing WordPress
In reply to: Error Establishing a Database ConnectionI did. They want me to renew the plans with them when I already moved with another host.
Forum: Plugins
In reply to: Show all Posts / No more “read here” or “read more”I got it working. Thanks. I just gotta fix one small thing.
Forum: Plugins
In reply to: Show all Posts / No more “read here” or “read more”Yes! It works! With a new problem. Gah, should I just take this to the right thread?
The problem now is its linking the entire content without the title to go to the comment page (Any link from above except HOME). On the main page (HOME) you have to click on the subject/title to go in and see the comments. Looks weird and odd. I want it to be the same as HOME.
Forum: Plugins
In reply to: Show all Posts / No more “read here” or “read more”Didn’t work, I searched for “excerpt” and changed it to “content” … nothing worked, so I changed it back. The code in archieve.php is here:-
<?php get_header(); ?> <?php $options = get_option('mc_options'); ?> <div id="contents" class="clearfix"> <div id="left_col"> <div class="content_noside"> <?php if (have_posts()) : ?> <div id="headline"> <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?> <?php if (is_category()) { ?> <p><?php printf(__('Archive for the ‘ %s ’ Category', 'monochrome'), single_cat_title('', false)); ?></p> <?php } elseif( is_tag() ) { ?> <p><?php printf(__('Posts Tagged ‘ %s ’', 'monochrome'), single_tag_title('', false) ); ?></p> <?php } elseif (is_day()) { ?> <p><?php printf(__('Archive for %s', 'monochrome'), get_the_time(__('F jS, Y', 'monochrome'))); ?></p> <?php } elseif (is_month()) { ?> <p><?php printf(__('Archive for %s', 'monochrome'), get_the_time(__('F, Y', 'monochrome'))); ?></p> <?php } elseif (is_year()) { ?> <p><?php printf(__('Archive for %s', 'monochrome'), get_the_time(__('Y', 'monochrome'))); ?></p> <?php } elseif (is_author()) { ?> <p><?php _e('Author Archive', 'monochrome'); ?></p> <?php } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> <p><?php _e('Blog Archives', 'monochrome'); ?></p> <?php } ?> </div> <?php while ( have_posts() ) : the_post(); ?> <div class="archive_contents"> <h2><?php the_title(); ?></h2> <ul class="archive_meta"> <li><?php the_time(__('F jS, Y', 'monochrome')) ?></li> <li><?php _e('Posted in ','monochrome'); ?><?php the_category(' . '); ?></li> <?php if ($options['author']) : ?><li><?php _e('By ','monochrome'); ?><?php the_author_posts_link(); ?></li><?php endif; ?> <?php edit_post_link(__('[ EDIT ]', 'monochrome'), '<li class="post-edit">', '</li>' ); ?> </ul> <p><a href="<?php the_permalink() ?>"><?php the_excerpt_rss(); ?><span class="read-more"><?php _e('[ READ MORE ]', 'monochrome'); ?></span></a></p> </div> <?php endwhile; else: ?> <div class="archive_contents"> <p><?php _e("Sorry, but you are looking for something that isn't here.","monochrome"); ?></p> </div> <?php endif; ?> <?php include('navigation.php'); ?> </div><!-- #content_noside end --> </div><!-- #left_col end --> <?php get_sidebar(); ?> </div><!-- #contents end --> <div id="footer"> <?php get_footer(); ?>