williamhamby
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: One Full Post, Rest Excerpts…techgnome’s solution works perfectly. thank you
Forum: Fixing WordPress
In reply to: permalink issue between two identical serversthanks for the suggestions. i finally did manage to get MAMP working.
Forum: Fixing WordPress
In reply to: permalink issue between two identical servers“identical .htaccess and httpd.conf files with same permissions”
Forum: Your WordPress
In reply to: Bash my blog!failed validation, 62 errors
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.mattsapundit.com%2F
Forum: Fixing WordPress
In reply to: How to lock while editingNot sure about a plugin for it, but when someone wants to edit anything without interference, they can simply password protect it while they edit.
Forum: Fixing WordPress
In reply to: How to change permissions for an AuthorForum: Fixing WordPress
In reply to: IE vs. Fire Fox, one doesen’t work!!!!!!!!!!!What sucks is that browser developers can’t seem to build a browser that simply follows the W3C standards. I personally feel Firefox does the best job, but perfection seems far off.
Then again, I see nothing wrong with a completely unstyled web.
Forum: Fixing WordPress
In reply to: IE vs. Fire Fox, one doesen’t work!!!!!!!!!!!Yep, all browsers are different.
Forum: Fixing WordPress
In reply to: Firefox not showing sidebarK3200, I appreciate your desire to learn and accepting my criticism (which was intended to be constructive). The validator I use is that of the W3C itself:
as included in the Web Developer extension for Firefox:
which hilariously shows this very page as failing validation. 🙂 The validator will, to a degree, explain what may be the problem and suggest solutions. Let me know if you need further help.
Forum: Fixing WordPress
In reply to: Firefox not showing sidebarFirefox isn’t the problem – your code structure is. Between the erroneous inline javascript attempts and all the side-by-side double quotations, it’s a wonder anything shows up. Attack each error one at a time – all 90 of them.
Forum: Plugins
In reply to: get_sidebar() questionmaybe you could share the problem?
Forum: Fixing WordPress
In reply to: sidebar not equal to container lengthgo to #insideWrapper
and change
background: url(“images/content_bg.gif”) top left repeat-y;
to
background: #fff url(“images/content_bg.gif”) top left repeat-y;
?
Forum: Plugins
In reply to: Is there a forum plugin ?It has been asked about a million times, but… I don’t believe there is an actual ‘forum plugin.’ However, the WordPress developers also offer bbPress.
Forum: Fixing WordPress
In reply to: WordPress 2.0 htaccess FileThis should work…
<Limit GET POST>
order allow,deny
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>Options FollowSymLinks
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule>
# END WordPressForum: Fixing WordPress
In reply to: Custom fields in comments?Bump
I personally would like to allow commenters to title their comments like A List Apart offers in their Discussions.