forceagainstsomething
Forum Replies Created
-
Forum: Plugins
In reply to: 3 digits monthsGo to the options menu, and then down to “Default date format”, and change the value to ‘M j, Y’. Minus the quotes of course.
Forum: Plugins
In reply to: Sports scores pluginA sports score plugin would actually be pretty tricky, since sports scores generally are not free. There is a lot of licensing and other BS involved in all aspects of sports, and even the scores of the games are copyright, which means you need to have permission (i.e. pay money) to display sports scores on your website.
Forum: Plugins
In reply to: New Plugin: LiveIt does only work with WP 2.0+, however if you’re using 1.5, you should at least still see the the “Live” link in the admin area, right next to the “Import” link.
But yeah, it uses WP 2.0’s Ajax scripts, so it won’t work for you any way.
– Sean
Forum: Plugins
In reply to: New Auto Links pluginThe new version is finally up for download! I posted another message here:
http://wordpress.org/support/topic/73302?replies=1
– Sean
http://www.headzoo.comForum: Plugins
In reply to: New Flickr Plugin – Flickr SpinrWell v0.3 is ready! And this time it’s written in Flash, so it’s much fast, a much cooler looking. Plus, it now works with the Sidebar Widget plugin!
You can see an example of it @ http://www.480x.com, and download it @ http://www.headzoo.com– Sean
Forum: Plugins
In reply to: New Auto Links pluginHowdy all,
Version 1.0RC1 of aLinks (the name has been changed from Auto Links to aLinks) is being released very soon. Until then I’m looking for beta testers to give the plugin a good beating, and smoke out any bugs. I want to begin beta testing sometime this weekend.If anyone is interested in being a beta tester, and getting your hands on the next version before anyone else, just drop me a line here. Please include the version of WordPress and PHP you’re using. Beta testers will be listed in the documentation, along with their website URL.
Thanks!
– Sean
http://www.headzoo.comForum: Plugins
In reply to: New Flickr Plugin – Flickr SpinrOk, just released version 0.2. Yep, that fast. It now has a max photos limit in the options menu, and a get photos by tag options. Plus the code has been cleaned up a little.
– Sean
http://www.headzoo.comForum: Plugins
In reply to: New Plugin – Edit n PlaceI’d be especially interested in knowing if anyone comes across any UTF-8 related problems.
– Sean
Forum: Plugins
In reply to: New Plugin – Edit n PlaceOkay people,
The latest *beta* version of Edit n Place, version 0.4, is available for download from http://www.headzoo.com/downloadsThis version lets you edit the post content, the post title, and the categories the post is in.
This version fixes some bugs from the previous version, including the JavaScript in the RSS feed bug, and hopefully fixes any problems with UTF-8 support. I tested it with all the letters from this UTF-8 test page, http://www.slovo.info/testuni.htm, and it worked without problems.
This version should also be a bit faster than the previous version.
If you’re upgrading from a previous version, please read the documentation! This version *requires* that your theme wraps posts in a DIV tag that uses the post ID as the DIV ID, i.e. <div id=”post-100″>. The plugin absolutely will not work if that is not the case.
You can also do an anonymous SVN checkout using the URL http://www.480x.com/editnplace.
– Sean
http://www.headzoo.comForum: Plugins
In reply to: New Plugin – Edit n PlaceOuch, guess I should have checked in on this post. Didn’t realize so many messages had built up. I do have a support forum specific for my plugins @ http://www.headzoo.com/support
I’m putting the finishing touches on v0.4 tonight. No more scripts in the feeds, and you can edit the post title and categories inline.
I’ll consider some of the other suggestions for the next version.
– Sean
Forum: Fixing WordPress
In reply to: Image Upload Permissions ErrorMPM,
You need to make the /wp-content or /wp-content/uploads writable. Connect to your FTP server using your FTP client software, find the /wp-content directory, right-click it, and set the permissions to 0777. Or create the directory /uploads inside of it, and give it that permissions.– Sean
michyc1,
Check around for an RSS plugin. I know there are lots of them that do what you’re asking for.– Sean
Forum: Requests and Feedback
In reply to: Possible security flaw: plugin directory publicly availableSomething similar is used with Joomla. The index.php starts with something like:
define(‘__MOS__’, true);
And then every other script in the whole package starts with
if (!defined(‘__MOS__’)) die();
It’s a great idea… simple and secure.
– Sean
Forum: Requests and Feedback
In reply to: Possible security flaw: plugin directory publicly availableOh, and plugin developers could add extra security by putting this at the top of their scripts:
if (!defined(‘DB_NAME’)) die(‘NO ACCESS’);
The script with die with the message
NO ACCESSif it’s being accessed outside of WP.– Sean
Forum: Requests and Feedback
In reply to: Possible security flaw: plugin directory publicly availableIf you’re using Apache, just pop a .htaccess file into the /plugins directory with this inside:
<Files ~ “\.php$”>
Order allow,deny
Deny from all
</Files>Problem solved.
– Sean