ithyn
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Help with DB_Host, please!DB_HOST refers to where the MySQL server resides. For most hosting companies, you can put “localhost” (without quotes) into the DB_HOST field.
If localhost doesn’t work for you, contact your hosting support and they should be able to quickly tell you.
Forum: Installing WordPress
In reply to: Broken Blog — Can’t Upgrade!You can do a manual upgrade. Download the WordPress files and upload them to your server via FTP. No need to go in through the WordPress control panel.
Forum: Fixing WordPress
In reply to: Any way to alphabetize my Categories list on right-hand side?You’ve got to place that code (plus more code for printing the categories) in the functions.php file of your theme. Basically, create a widget, then place that widget on your sidebar via WordPress.
Forum: Fixing WordPress
In reply to: Suddenly only blank screensIt depends on your server setup. Check this link for more info.
Your php.ini file is also a good place to check. That may show you where the server is set up to push errors to.
Forum: Fixing WordPress
In reply to: Suddenly only blank screensCheck your PHP error logs. Typically, blank screens are a symptom of PHP running into errors somewhere.
Forum: Fixing WordPress
In reply to: WordPress API KeyYou need to go to wordpress.com, not your personal blog.
Forum: Fixing WordPress
In reply to: Any way to alphabetize my Categories list on right-hand side?Use the get_categories function (see here for more info):
$categories = get_categories('order_by=name');
Forum: Fixing WordPress
In reply to: WordPress API KeyEdit your profile on wordpress.com (this requires going to wordpress.com and creating an account).
When you edit your profile, you should see a printed line right at the top of the screen that contains your API key.
Forum: Fixing WordPress
In reply to: Finding page IDsAll at once? Easiest way is to get access to the MySQL database using PHPMyAdmin or a similar application.
In WordPress, you can see IDs by looking in your address bar when you have a post/page open in the editor.
Forum: Fixing WordPress
In reply to: My byline under main title header cannot be seen. .Also, you may look at the theme you are using. If the theme has not included the byline, then it won’t show up.
Forum: Fixing WordPress
In reply to: Error adding new usersWhat Web site are you using? Did you create an account on wordpress.com or elsewhere?