desertwebdesigns
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My url no longer points to my WordPress blogChanging the string in wordpress will not create/rename any new folders on your hosting account, it only updates database settings. If you changed the string name from blog to wordpress, then change the name of your blog folder to wordpress and that should resolve it.
Forum: Fixing WordPress
In reply to: HTML in pages?It depends if you want to create a whole new home page, or edit add to what is already there.
Forum: Fixing WordPress
In reply to: HTML in pages?You will need to edit the index.php file in your theme’s home directory to change the layout of the home page. It will be located in [blog_installation_directory]/wp-content/themes/[theme name]/index.php
Forum: Fixing WordPress
In reply to: Turn a Page into a Post ??SQL is a pretty simple language to understand. The above statement basically means
UPDATE <table_name> SET <what_to_change> WHERE <change_criteria>So we’re updating the wp_posts table. We’re setting the value of post_type in that table to ‘post’ (it is currently ‘page’). And we’re making that change for the post record identified with an ID of 170 (or whatever your post ID is).
Each record in that table is equivalent to a post of some type in your website, be it a post, page, revision, attachment, etc. We want to change from page to post. All records are identified by an incrementing ID number. That’s how we specify which record to update (you can update multiple records at a time). We found the ID from the URLs.
That’s how we come up with our UPDATE statement. Pretty simple once you know how.
FYI: If you left off the WHERE statement at the end, you are no longer filtering for certain records, and you would update EVERY record in that table. This is not good. It would mean that all the revisions in there (auto-saves) just became live posts 🙂 Type carefully. Little mistakes can cause big problems
Forum: Fixing WordPress
In reply to: Post Article Excessive Views Monthly?Analytics software would be the best to see where the hits are coming from (ie search engines or referral links). I doubt this is all direct traffic. Plus those would not be unique visits. Also, check google for “link:<insertyourdomainnamehere.com>” to see what sites are linking to you. The traffic could be coming from there.
Don’t argue it though, install ads and reap the benefits of the traffic 🙂
Forum: Fixing WordPress
In reply to: My url no longer points to my WordPress blogIt doesn’t work because when the database tells the script the files are in the root directory, that’s where it looks, but the files aren’t there. You should just be able to move all the files from the directory you installed your blog to up to the root.
Example:
If you installed your blog into the /blog directory,
Move all files and folders from /blog/ to / within your FTP software.You may need to download and reupload as your FTP software may not allow you to move directly.
Forum: Fixing WordPress
In reply to: Turn a Page into a Post ??OK, so bold text doesn’t work inside of code, lol.
UPDATE wp_posts SET post_type='post' WHERE ID=170You get the point. Insert that ID from the link into the code.
Forum: Fixing WordPress
In reply to: Turn a Page into a Post ??Needs to be done through the database. Go to the Edit Pages screen and hover over/click on the page you want to change. You should have a link that looks like this:
http://www.domain.com/wp-admin/page.php?action=edit&post=170
You need that number
Log into your phpMyAdmin or MySQL interface, and execute this command:
UPDATE wp_posts SET post_type='post' WHERE ID=<strong>170</strong>This is assuming that your WordPress database prefix is wp. If it isn’t, change wp_posts in the above code to whatever your posts table is named: (eg. my_posts, db_posts, really_long_prefix_posts, etc)
Now go to your Edit Posts page and you will see your page there. Change other post settings as necessary, but that will switch it over.
Forum: Installing WordPress
In reply to: Installing another WP in a pre-existing WP-installed databaseGoof idea to back it all up first, you’re ahead of most 😉
No, this should not cause any problems as it will just create new tables in the database with the different prefix.
Make sure you perform regular maintenance/cleanups on the database to prevent it from getting to big, especially with 2 installations.Forum: Installing WordPress
In reply to: WP Write Permissions?I have the same issue. Made the proper folders writable and it still didn’t work. I havn’t looked into it too much because I got it to work still. Enter your FTP information and it should work.
Hostname: localhost
FTP Username
FTP PasswordThat works for me on a virtual dedicated server
Forum: Installing WordPress
In reply to: Just installed WP but I can’t see anything!Sounds like PHP errors to me. If PHP display_errors is off, you will get a blank white page if there are errors. Turn on display_errors in your php.ini file and reload the page. I bet you’ll have some lovely error messages.
Forum: Installing WordPress
In reply to: GoDaddy and HUGE Restore ProblemThat link works for me. Site is working fine. All the links on your home page look like they’re setup properly with the category year/month/date added. Don’t forget to check your permalink structure “Settings > Permalinks”
Forum: Installing WordPress
In reply to: HELP!!! i had it running….and now a 500 error500 internal server is usually caused by scripting errors (error message is misleading). Check .htaccess as mentioned by stvwlf. If that doesn’t fix it, delete all files, uninstall WP, delete database, and do a fresh install. If you still get errors, it’s the server…call godaddy.
Forum: Fixing WordPress
In reply to: How do IYou will need to install wordpress into the /dev folder and then change your general settings to have the URL be siabmedia.com/dev instead of siabmedia.
Forum: Fixing WordPress
In reply to: 500 internal server error after uploading themeIt shouldn’t matter how you FTP it up to your site. However, a 500 internal server error typically indicates a scripting issue. Check your php.ini file to make sure display_errors is on so you can see any php errors that are thrown. In the case of GoDaddy, they run php as a CGI extension. 500 errors are common in CGI scripts when there is a scripting error.
If you have removed the theme and are still getting the 500 error though, contact Go Daddy to see if there is a server issue as the problem is obviously not with your theme since you’re not using it.