byurick
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding new Administrator, deleting “Admin” as a userDeleting the admin via phpMyadmin is fine. The way the OP described is just easier.
Forum: Fixing WordPress
In reply to: WordPress Upgrade IssuesLast time I saw this happen it was because the css style sheets in the wp-admin area didn’t upload properly. FTP into your site and make sure all the files are in the wp-admin section.
Forum: Fixing WordPress
In reply to: Need help asap (trying to pull out one blog post)What I’m saying is the extra space in the bolded code may be screwing it up.
Forum: Fixing WordPress
In reply to: Need help asap (trying to pull out one blog post)</div>
<?php endwhile ;?>
<?php else : // we could not find ?>
<h2>We could not find what you are looking for.</h2>
<?php endif ;?>
<?php get_footer(); ?>
Shouldn’t those look like this?
<?php endwhile; ?>
<?php endif; ?>
Forum: Installing WordPress
In reply to: Migration to hostingWhat are your apache error logs saying?
Forum: Fixing WordPress
In reply to: New Domain – White page (urgent)Try adding this in your wp-config file, just changed the example.com to your actual URL:
define(‘WP_HOME’,’http://example.com’);
define(‘WP_SITEURL’,’http://example.com’);Forum: Fixing WordPress
In reply to: Updating from 2.7 to 2.8.4 without breaking designYou can try to set up a local version of wordpress 2.8 (on your machine) with a copy of your existing blog and try to fix the design issues before you actually make the changeover on the live server.
Forum: Installing WordPress
In reply to: Moving Install from localhost to webhostingAdd the lines below to your wp-admin, just change example.com your real URL
define(‘WP_HOME’,’http://example.com’);
define(‘WP_SITEURL’,’http://example.com’);Forum: Installing WordPress
In reply to: Browser does not display the blog main page properlySounds like you have directory browsing on. Open your httpd.conf file and look at your virtual host settings (usually near the bottom). Look for the “Options Indexes” line and change it to “Options -Indexes”
Forum: Installing WordPress
In reply to: Not a PHP Programmer – wp-config script not workingThe top of the wp-config file is usually just a commented area. I bet you accidentally added a character in there.
Forum: Installing WordPress
In reply to: Uploaded, ran install PHP and now a blank browser windowDo you have a way to access your database and check to see if WordPress has populated any data? If nothing comes up on the blog URL then I’m guessing the setup process never actually happened.
Forum: Fixing WordPress
In reply to: GoDaddy, IIS and Removing index.php in urlWhy are you running Windows?
Forum: Fixing WordPress
In reply to: Restoring from database via phpMyAdmin – Keep getting INSTALL SCREENDId you just try to restore the database or did you restore any site files as well? Be sure the wp-config file is in there.
Forum: Fixing WordPress
In reply to: redesign site without the whole world seeing itAnd if you’re really concerned you can password protect the root folder of the staging site so only you can access it.
Forum: Fixing WordPress
In reply to: redesign site without the whole world seeing itAnother way is to set up a staging URL for your site and make a copy of the live there (example: staging.actsnetwork.com). Then you can make changes to the staging and test it. When you’re ready you can copy over the theme changes to live (make backups of everything first before you do).