dalebert77
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: Installed update but now wordress wont loadI had a similar sounding issue, but for me it was permissions with the htaccess file. before I run the “update database” my htaccess file has 644 permissions – after they were 600. It took me a while to figure it out, but in the end that’s what solved it for me.
Forum: Fixing WordPress
In reply to: Sidebar color changeEdit your CSS – look for either “a” for the link style or sidebar, then “a” for the link style.
Forum: Fixing WordPress
In reply to: Internal Server Error after server upgradecan you show your .htaccess file? I don’t see anything in my htaccess file that has a php_value. My default wordpress .htaccess looks like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wplab/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wplab/index.php [L]
</IfModule># END WordPress
Forum: Fixing WordPress
In reply to: Mass Edit: Changing CategoriesOk – I took sometime to think about it – this will update all posts only in the uncategorized category and move them to category #5 (you can get the cat number from admin/manage/categories – look at the cat id):
UPDATE
wp_term_relationships
SETwp_term_relationships.term_taxonomy_id= ‘5’
WHEREwp_term_relationships.term_taxonomy_id= 1
AND EXISTS
(SELECT *
FROMwp_postsAS A1
WHERE A1.ID =wp_term_relationships.object_id
AND A1.post_type= “post”);Forum: Fixing WordPress
In reply to: GenesisOk – I assumed martsmit was suggesting that they could not log in b/c something in the theme broke their ability to log in — I wasn’t paying attention to the second post – no META in theme – :o)
Next time – I’ll slow down and READ the question…
Forum: Fixing WordPress
In reply to: GenesisFTP to your server and delete the theme – WordPress will default to the default theme.
Forum: Fixing WordPress
In reply to: Bulk rename categoryyou could rename the category – admin/manage/categories.
Forum: Fixing WordPress
In reply to: Mass Edit: Changing CategoriesThis is do the trick, but it will also move all of your pages to the new category as well – I’m sure there is a SQL guru out there that can change this to use a join statement that would filter out pages:
UPDATE
wp_term_relationshipsSETterm_taxonomy_id= ‘THE_NEW_NUMBER_OF_YOUR_CATEGORY’ WHEREterm_taxonomy_id= 1;BTW – the term_taxonomy_id = 1 is the uncategorized category.
Forum: Fixing WordPress
In reply to: I´m loading the page from my local servercan you get to the non-wordpress site at http://kingdomcrawlers.com from inside your network? I assume that domain name points to the same server you have the wp blog on. Do you manage DNS inside your network, or is that all handled through your ISP?
It could be as simple as a host file entry on your laptop/desktop that points kindomcrawlers.com to the internal 192.x.x.x address. Assuming you are running windows, your host file is at:
c:\windows\system32\drivers\etc\hosts
There is no file extention like .txt on the host file, so it will ask you to pick a program to open it with – use notepad and put a line like this in the host file:
192.168.1.36 kingdomcrawlers.com
Save it – update wp to point to the proper domain name (not localhost or 192.x.x.x) and try it.
Forum: Fixing WordPress
In reply to: I´m loading the page from my local serverWhat do you have on the Admin/Options/General page under WordPress address?
Forum: Fixing WordPress
In reply to: Custom 404 page working with IIS?(Moderator or other WP guru’s feel free to correct me if I’m wrong here) WordPress handles the 404 redirection using .htaccess files which IIS does not use. I would think you need to modify IIS settings to get the 404 page from the theme to work.
You might try this:
http://www.keyboardface.com/archives/2007/09/07/update-for-wordpress-permalinks-on-iis/Forum: Fixing WordPress
In reply to: I´m loading the page from my local serverThis isn’t a wordpress question – its a networking question and the answer could be complicated – your ISP would have to allow port 80 to your house, you would need a router that can handle nat’ing, you would need to setup your .36 address as either the box in the DMZ or just forward port 80 traffic to it. — If you don’t know what DMZ, NAT, or port 80 means, then this might be a bigger job than you want to tackle without an IT friend.
It’s not a lot of work – but there is a lot of know-how required.
It’s possible – and you should be able to accomplish it with a theme so that it would be easy to implement once you have written the code.
I’m not a coder – but I would think you need four div sections and a modified loop – maybe even a loop for each div that filters on category.
It sounds like you are looking to use WordPress as a CMS – google that for what others are doing — (moderator, slap me if what I’m about to say isn’t allowed) you might want to look at joomla over wordpress to accomplish what you are looking for.
Forum: Fixing WordPress
In reply to: WYSIWYG – plugins?Forum: Fixing WordPress
In reply to: Can’t make my first post!First I’d suggest that you write your post in Word or Notepad, then copy it to WordPress… :o) That way, no more issues with having to retype the post…
Could you provide the URL of your blog page?