enyx
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My blog is gone and WP wants me to reinstall…?On a different WP installation, I get errors such as:
WordPress database error: [Can’t read dir of ‘./undemat9_wrdp1/’ (errno: 13)]
SHOW TABLES;WordPress database error: [Can’t create table ‘wp_terms’ (errno: 13)]
CREATE TABLE wp_terms ( term_id bigint(20) NOT NULL auto_increment, name varchar(200) NOT NULL default ”, slug varchar(200) NOT NULL default ”, term_group bigint(10) NOT NULL default 0, PRIMARY KEY (term_id), UNIQUE KEY slug (slug), KEY name (name) ) DEFAULT CHARACTER SET utf8WordPress database error: [Can’t create table ‘wp_term_taxonomy’ (errno: 13)]
CREATE TABLE wp_term_taxonomy ( term_taxonomy_id bigint(20) NOT NULL auto_increment, term_id bigint(20) NOT NULL default 0, taxonomy varchar(32) NOT NULL default ”, description longtext NOT NULL, parent bigint(20) NOT NULL default 0, count bigint(20) NOT NULL default 0, PRIMARY KEY (term_taxonomy_id), UNIQUE KEY term_id_taxonomy (term_id,taxonomy) ) DEFAULT CHARACTER SET utf8Forum: Fixing WordPress
In reply to: My blog is gone and WP wants me to reinstall…?Anything new with this problem? It’d be nice to get my blog back up and running….
Forum: Fixing WordPress
In reply to: Comments eat extra line breaksThanks, I just realized this a few minutes ago.
Originally, in the style.css file, there was this line:
.comment-text {}I changed this to:
.comment-text p {margin-top: 10px;}
and now I get the “white” space between paragraphs.Thanks for the tip.
Forum: Fixing WordPress
In reply to: Comments eat extra line breaks*bump*
Forum: Fixing WordPress
In reply to: Comments eat extra line breaks*bump*
Forum: Fixing WordPress
In reply to: Comments eat extra line breaksInserting
<BR /><BR />between the lines doesn’t even work; it ignores those as well.Forum: Fixing WordPress
In reply to: WordPress Stats not showing anythingadd this code
<?php wp_footer(); ?>in your footer.php file, just above</body>Forum: Fixing WordPress
In reply to: Comments eat extra line breaksAnyone know?
I tried looking through the comments.php file, but I couldn’t make heads nor tails of it.
Forum: Fixing WordPress
In reply to: My blog is gone and WP wants me to reinstall…?This just recently happened to me, and I don’t know what’s going on. I haven’t been able to find anything on Google.
Hopefully someone has a solution!
Forum: Fixing WordPress
In reply to: On Single Post, Sidebars appear at the bottomAhh, the power of closing a tag.
Thanks for the help.