webtodd
Forum Replies Created
-
Forum: Plugins
In reply to: Is there a “mail this” plugin?awesome, thx
Forum: Fixing WordPress
In reply to: How to get rid of “»”awesome. exactly what i needed, thanks
Forum: Fixing WordPress
In reply to: How to make theme editor files writeable?ok, got it
i’ll probably take your advice and not edit online
Forum: Fixing WordPress
In reply to: Is this permalink structure okok, thanks
Forum: Fixing WordPress
In reply to: htaccess chmod 660 problemok, so 664 is not insecure? sorry for my ignorance, i’m new to this!
Forum: Fixing WordPress
In reply to: having problem changing permalinkscool thanks, i think my host sucks anyways, so i dont mind finding a new one.
Forum: Fixing WordPress
In reply to: having problem changing permalinksi just got off the phone with my host and they told me they don’t support AllowOverride?
so… i could use a recommondation for a hassle-free host that i could use to host my wordpress blog? any suggestions anyone?
Forum: Fixing WordPress
In reply to: having problem changing permalinkslet me double-check on those…thanks HandySolo!
Forum: Fixing WordPress
In reply to: having problem changing permalinkscurrently:
—
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Forum: Fixing WordPress
In reply to: having problem changing permalinksi did these two steps as listed at codex, and still having problems
—
1. Change File Permissions: You must chmod the .htaccess file to 666 to edit it with the WordPress template editor, but this is not recommended, since if you do that, any user of your blog, who can edit templates will be able to edit it. You can change the permissions to 660 to make it server-writable, which again will have the same limitation.2. Server Blockage: Your host might have blocked the SERVER_SOFTWARE variable and this will cause WordPress’ .htaccess generation to fail. If you are sure that your server is running Apache, you can force WordPress to believe that your server is running Apache by changing your wp-includes/vars.php file. Follow the steps below to implement these changes.
1. Open the wp-includes/vars.php file using the built in file editor in your WordPress Admin panel. To navigate to this panel, login to WordPress, click on “Manage”, then on “Files”, scroll to the bottom and type in wp-includes/vars.php into the text box under the “Other Files” title.
2. Look for $is_apache = strstr($_SERVER[‘SERVER_SOFTWARE’], ‘Apache’) ? 1 : 0;, once you find it replace it with // $is_apache = strstr($_SERVER[‘SERVER_SOFTWARE’], ‘Apache’) ? 1 : 0;
3. Add a new line under // $is_apache = strstr($_SERVER[‘SERVER_SOFTWARE’], ‘Apache’) ? 1 : 0; and type in $is_apache = 1;Forum: Fixing WordPress
In reply to: having problem changing permalinksthanks handysolo, i’ll check both of those options
Forum: Fixing WordPress
In reply to: having problem changing permalinksi don’t think my .htaccess file is getting updated correctly, and i’m struggling to figure out why?
is there someplace to grab the code within the wordpress admin so i can manually update the .htaccess file?
Forum: Fixing WordPress
In reply to: having problem changing permalinksr-hold, are you having this problem still? if you figure it out, let me know! i can’t start adding posts to my blog until i get this permalink problem straightened out. right now i’m stuck with the default structure.
Forum: Fixing WordPress
In reply to: having problem changing permalinksyes, host fully supports both.
Forum: Your WordPress
In reply to: Please review: WP blog with phpbb integrationi like the idea, but i’ve heard phpBB is a pain to deal with spam and other problems. has anyone done something like this with vbulletin or some other program? i would defintely love a solution like this that could seamlessly integrate with wordpress and be relatively hassle-free. does anyone have both comments and a forum for each post? that would be interesting to look at.