noahwesley
Forum Replies Created
-
It looks like your hosting provider has ‘allow_url_fopen’ set to false in the PHP setup (http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen). I will see if this is a dependency that we can replace for our next update of the plug-in.
What version of WordPress are you running?
Forum: Plugins
In reply to: [Plugin: FormSpring.me Question Widget] formspringme widget pluginCarl,
This feature is now part of the latest version of the plugin. Let me know what you think!
~Noah
Forum: Plugins
In reply to: [Plugin: FormSpring.me Question Widget] formspringme widget pluginCarl,
They are beta testing an API right now and I plan on adding this functionality as soon as the API goes live.
Thanks!
Forum: Fixing WordPress
In reply to: Lose formatting calling author description.I have found a work-around. However, I think it may leave the author description box wide open in terms of validating user input–use with care.
line 71 of wp-includes/registration-functions.php:
$description = apply_filters(‘pre_user_description’, $description);
Just comment this line out, like so:
//$description = apply_filters(‘pre_user_description’, $description);
and it will skip the filters on the description field when you update it from the User’s page (i.e. add in html and it won’t strip it out).
A better solution would probably be to make a copy of the apply_filters function that leaves in the HTML codes you want and apply it specifically to the $description.
Forum: Installing WordPress
In reply to: Cannot modify header information – headers already sent byI came across this same problem. In my case, I had accidentally uploaded all the WordPress files as BINARY, instead of ANSI/ASCII. This just messes everything up. I switched my FTP program to “AUTO” (which will use ASCII for text-based files, like php, and use BINARY for images).
After I did this, the errors went away and I lived happily ever after.
Viva WordPress!