bleeber
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Home is emptyDid you create a blank home.php. If so, that would explain why out of no where you are seeing this issue. Drop us a link to the site so we can see what you are talking about.
Forum: Fixing WordPress
In reply to: Re-Addressing WP SiteAdd the following to your themes functions.php
update_option('siteurl','http://newdomain.com'); update_option('home','http://newdomain.com');Forum: Your WordPress
In reply to: New blog, feedback appreciated!Personally, the fonts are way too small and the mix of faux caps and regular is kinda jarring.
Forum: Fixing WordPress
In reply to: How to get rid of date in posts?For more information, check the codex.
Forum: Fixing WordPress
In reply to: How to get rid of date in posts?Just check your loop and remove it. It will look like this: the_date();
For your specific example you will remove code that looks similar to this:
on <?php the_date(); ?>Forum: Fixing WordPress
In reply to: WordPress Auto-update failingI hate to keep harping on your decisions and I am glad you were able to get it working but chmod’ing your entire wordpress installation 777 is still not a good idea. If there is ever a bug in either wp core or a plugin you use, your system is open for business.
This link should point you in the right direction.
http://codex.wordpress.org/Hardening_WordPress#File_permissions
Forum: Fixing WordPress
In reply to: 2 or more blogs on one siteYour theme is listing both pages and categories in your header. You will need to edit that part of your theme, most likely header.php, to not include categories.
Forum: Fixing WordPress
In reply to: 2 or more blogs on one siteNo problem. Glad I could help.
Forum: Fixing WordPress
In reply to: WordPress Auto-update failingSure thing.
/var holds a lot of important information on a unix/linux based system. In var, you will find things such as logs, mail, crons, lockfiles, pidfiles, etc, etc. Each one of these files has a specific owner/group and file permissions that are needed for the program to work.
What you did, made every file now be owned by root. That’s not a good thing. Then you made every folder inside /var writable by anyone, including malicious users. Not only did you leave a huge location on disk for malicious users to store their own goodies, since /var/log/ can now be written to by anyone, they can also alter the logs on their way out.
In my professional opinion, I would backup your data, and reinstall. It would be much faster than trying to analyze all of the files that you have modified.
Forum: Fixing WordPress
In reply to: 2 or more blogs on one siteYou can do this with categories. The instructions you found deal with installing multiple blogs using a single mysql database.
*waves hand*
These are not the instructions you are looking for.What you will want to do is create the page and leave it blank. Add a custom field like category-include and then in your loop only grab posts from that category. This way you can manage it all from the same dashboard.
Forum: Fixing WordPress
In reply to: WordPress Auto-update failingchown root -R /var/*
chmod 777 /var/*Unfortunately, you likely broke a lot more that you could have ever hoped to fix with those commands.
You should make a backup of your wordpress installation and your database and look to reinstalling you server soon.