alile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Merge 2 WP blogs?Thank you! I think that worked. I haven’t had chance to look into it in too much detail yet, but the posts and comments all seem to have imported from one to the other. (I had to upgrade both blogs from 1.5 to 2.0.5 though)
Forum: Fixing WordPress
In reply to: Importing ProblemCan anyone help? ??
Forum: Fixing WordPress
In reply to: Importing ProblemI was just going with the suggestions made by “nearlythere” in this thread:
Forum: Fixing WordPress
In reply to: Drop down sub-categories… kinda?Does anyone know how to do this? :$
Forum: Installing WordPress
In reply to: Problem establishing a database connection after moveThank you for responding.
My husband managed to figure out the problem. We had to use the address of the host name and the port number instead of just using “localhost”. I had tried using the host name before, but it only worked when coupled with the port number (separated by a colon).
Forum: Installing WordPress
In reply to: Problem establishing a database connection after moveOk then.
Would I be able to get my blog back if I started from scratch? If I installed WP again from scratch and got it working, could I then just reupload my current blog files to the new WP folder and import the DB info in phpmyadmin and have it be my blog again?
Forum: Plugins
In reply to: Poll Plugin for WordPressI just tried to install this plugin and I got this message when I ran wp-admin/polls-install.php
WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ‘( aid int(10) unsigned NOT NULL auto_increment, qid int(10) NOT]
CREATE TABLE ( aid int(10) unsigned NOT NULL auto_increment, qid int(10) NOT NULL default ‘0’, answers varchar(200) NOT NULL default ”, votes int(10) NOT NULL default ‘0’, PRIMARY KEY (aid))WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ‘( id int(10) unsigned NOT NULL auto_increment, question varchar]
CREATE TABLE ( id int(10) unsigned NOT NULL auto_increment, question varchar(200) NOT NULL default ”, timestamp varchar(20) NOT NULL default ”, total_votes int(10) NOT NULL default ‘0’, PRIMARY KEY (id))WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ‘VALUES (1, ‘How Is My Site?’, ‘1112894265’, 0)’ at line 1]
INSERT INTO VALUES (1, ‘How Is My Site?’, ‘1112894265’, 0);WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ‘VALUES (1, 1, ‘Good’, 0)’ at line 1]
INSERT INTO VALUES (1, 1, ‘Good’, 0);WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ‘VALUES (2, 1, ‘Excellent’, 0)’ at line 1]
INSERT INTO VALUES (2, 1, ‘Excellent’, 0);WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ‘VALUES (3, 1, ‘Bad’, 0)’ at line 1]
INSERT INTO VALUES (3, 1, ‘Bad’, 0);WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ‘VALUES (4, 1, ‘Can Be Improved’, 0)’ at line 1]
INSERT INTO VALUES (4, 1, ‘Can Be Improved’, 0);WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ‘VALUES (5, 1, ‘No Comments’, 0)’ at line 1]
INSERT INTO VALUES (5, 1, ‘No Comments’, 0);Can some one please tell me what to do now? I don’t know what it means. ??
I asked my host if they had upgraded the Zend Optimizer when they upgraded PHP to version 4.3.10 and they just to me that it is at the latest version currently.I don’t know what to do. ??
Forum: Fixing WordPress
In reply to: Getting date to display in every post made on the same day?Nevermind. I managed to figure out a search term that came up with something. (didn’t know what to search for before).
Replaced:
<?php the_date(”,”,”); ?> at <?php the_time() ?>
With:
<?php the_time(‘F j, Y @ g:i a’); ?>
And now it displays the date and time on every post, regardless of whether they were posted on the same day. ??
Sorry for the bother.
Forum: Fixing WordPress
In reply to: How do I show posts only from selected category(ies)Thank you sooooooo much!