Cypher
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments ErrorIf all of your changes are contained within the wp-content folders, then you’re probably OK.
To confirm, you could do the following..goto http://static.wordpress.org/archive/ and grab the archive for the WP version you have.
If you are on a Linux webhost, then uncompress the archive to a new directory called “wp-orig” and then run a diff against your current blog as:
diff -uBbNr wp-orig <current-blog-directory> > wp.diff
That way you can see where your changes are concentrated.
Regards
Forum: Plugins
In reply to: Blog Header ImageWhat site? What theme?
Have you tried look in /wp-content/<theme name>/images??
Regards
Forum: Fixing WordPress
In reply to: My blog is downSubmit a support ticket to your host.
Regards
Forum: Fixing WordPress
In reply to: Ridding the /blog from my web address.Do you have access to phpMyAdmin on your host? If so, use that to go into the wp_options table and look for the “siteurl” entry and change the value back to what it should be.
Regards
Forum: Fixing WordPress
In reply to: I don’t understand how to distribute my feedSome sites I pulled up in Google searches..
http://www.blogherald.com/2005/09/05/rss-ping-sites/
http://pingomatic.com/Regards
Forum: Fixing WordPress
In reply to: Comments ErrorIf all your modifications were within your theme, then you should be OK. But if you’ve modified core WP files as well you’ll have to merge the changes.
Regards
Forum: Fixing WordPress
In reply to: I don’t understand how to distribute my feedUnder Options->Writing. You will see the box for Update Services, here you’d put the PING URL for various places. So everytime you write an article, those sites get pinged.
‘http://rpc.ping-o-matic.com’ should already listed there by default. You can add new ones on new lines. So Technorati, for example, happens to be ‘http://rpc.technorati.com/rpc/ping’ and so on.
Know that having a LOT of places to ping will significantly slow down the posting process, so only ping places that you really want to.
RegardsForum: Fixing WordPress
In reply to: saving posts before updating WP/converting to multiuserThe following Codex link will tell you about backing up your current content:
http://codex.wordpress.org/Backing_Up_Your_DatabaseWP-MU is considered a seperate product as far as we go. So if you were to ‘upgrade’ to it, you would have to import your current WP post/comments into it. A direct injection would likely not work as the databases MIGHT or MIGHT NOT match up.
Regards
Forum: Fixing WordPress
In reply to: I don’t understand how to distribute my feedFeedburner itself doesn’t allow people to search for interesting feeds. They just manage your feed and give you useful information.
You should ping places like Technorati and other sites that will be able to showcase your content, then when visitors come to your site and find it interesting, they will subcribe to the feed posted on your blog.
Regards
Forum: Fixing WordPress
In reply to: Forgot to change URI before renaming — HELP!OK..here we go..;)
1) Look at the file wp-config.php to determine what your username (DB_USER), password (DB_PASSWD) and database (DB_NAME) name is. You will use the contents of DB_USER, DB_PASSWD, and DB_NAME wherever I call it out.
2) Login to mysql with: mysql -uDB_USER -p
Enter your DB_PASSWD when prompted3) Once inside mysql:
3.1) mysql> show databases;
3.2) mysql> use DB_NAME;
3.3) mysql> show tables;
3.4) mysql> select option_value from wp_options where option_name = ‘siteurl’;
– This will now show you what WP thinks your URL is. If it’s correct, leave it be. If not, update it:
3.4.1) mysql> update wp_options set option_value = ‘http://my.new.blog.com/’ where option_name = ‘siteurl’;
3.5) mysql> select option_value from wp_options where option_name = ‘home’;
– This will now show you what WP thinks your URL is. If it’s correct, leave it be. If not, update it:
3.5.1) mysql> update wp_options set option_value = ‘http://my.new.blog.com/’ where option_name = ‘home’;You can re-run 3.4 and 3.5 to confirm your changes.
Finally type “exit;” to get out of MySQL and see if the changes make your blog work again.
Regards
Forum: Fixing WordPress
In reply to: Get rid of top navigation on Comments pageThankfully these features are controlled by the specific theme files, so make a copy of your current files and modify to your hearts content.
AS you are not modifying core WP files, recovery is fairly simple.
Regards
Forum: Fixing WordPress
In reply to: How to customize the post’s ID?You’re welcome. You might want to enable Pretty Premalinks so that people would start linking to blog.com/archives/2006/03/16/post-title instead of a particular post ID.
That way, even if you blow away a post, you just need to create a new post with the same title to have things work again. Lot easier.:)
Regards
Forum: Fixing WordPress
In reply to: Comments ErrorAny chance you can upgrade to WP 2.0.2? Your particular error seems a little confusing. You’ve obviously modified the comments.php file to add the image authentication. So you might go through that file again?
Regards
Forum: Fixing WordPress
In reply to: Forgot to change URI before renaming — HELP!Does your webhost give you SSH/Telnet access? If so, you can indeed do it through the command line using MySQL directly, but you will have to use a few SQL commands.
Regards
Forum: Fixing WordPress
In reply to: what is this operatorThe “->” operator is a PHP construct to allow access to a particular Class’s methods/properties.
In the case you’re talking about, the wpdb class provides a method called get_results that accepts a SQL query string and will return it’s result.
If any or all of this makes no sense to you, and you are not very inclined to learn about PHP programming, you can safely ignore it. 🙂
Regards