Ryan Duff
Forum Replies Created
-
Forum: Installing WordPress
In reply to: NEED A DEVELOPERIs the blog site going to use WordPress? If not this is the wrong forum to post in. Oh, and I think your CAPS LOCK key is stuck.
THANKS!
Forum: Plugins
In reply to: WP-ContactForm and SMTP Maildoh, dumb ajax allowed me to double post!
Forum: Plugins
In reply to: WP-ContactForm and SMTP MailI will have to build in a similar function as a fall back when mail() doesn’t work. Thanks for making me aware of this.
Forum: Fixing WordPress
In reply to: Delete wordpress folder on server, install again don’t workdid you drop all the tables in the database? You’re getting that message because its looking at the database and seeing the tables there so it won’t install.
Forum: Fixing WordPress
In reply to: php inside a post?I think moshu was refering to wp-exec by Navid Azimi
Forum: Plugins
In reply to: PHPGiggle?You might want to take a look at this thread… http://wordpress.org/support/topic/7457
Perticularly this post… http://wordpress.org/support/topic/7457/page/2#post-249485
Here’s the link to the new (replacement) plugin… http://www.rockschtar.de/wp-plugin-sh-autolink/
Next time try google
Forum: Everything else WordPress
In reply to: Is there any reason to use other blog systems?I would consider another if you do not like WordPress, but then again, whats not to like 😉
why not just run it off your html server and in your wp-config file change the db server from localhost to whatever the other server’s name is.
Then of course, make sure that the permissions are right in mysql to allow you to connect to the db from your other box.
Forum: Plugins
In reply to: WP-Contactform and encoding errorThis was fixed in changeset 3599. You can wait for 1.4 or change around line 148 in wp-contactform.php
change
$headers .= "Content-Type: text/plain; $encodingn"; // sets the mime typeto
$headers .= "Content-Type: text/plain; charset=\"" . get_settings('blog_charset') . "\"n";which will correctly set the MIME headers so it will recognize it as UTF-8 or whatever you’re using.
Forum: Fixing WordPress
In reply to: Upgraded my contact form plugin – Now it’s not workingI changed this in 1.3 and changed it back in changeset 3460.
In english…
Open your wp-contactform.php file
Delete line 141…$from = get_option('admin_email');
Change line 156 from …mail($recipient, $subject, $fullmsg, $headers, "-f $from");tomail($recipient, $subject, $fullmsg, $headers);That should fix your problem
Forum: Fixing WordPress
In reply to: CSS issue with IELike I’ve been saying… IE is, and always will be, a lost cause.
I wish more people would start using a better browser. Luckilly, only 31% of my visitors use IE and 57% use Firefox. The other 12% are scattered amongst other browsers and RSS readers.
Good luck with trying to get it to render perfectly in both!
Forum: Fixing WordPress
In reply to: Change ALL fonts to Verdana 10yes, edit your theme’s style.css file and change all font references to verdana and all size references to 10pt. Upload your edited file to the server and do a hard refresh with your browser to refresh the cached stylesheet.
Forum: Installing WordPress
In reply to: HELP!!!!Amazingly, the first result for “sending referrers” on google is the codex page regarding it.
Forum: Installing WordPress
In reply to: HELP!!!!How about you find a web host that meets the requirements
It doesn’t appear that they support PHP/MySQL