Ryan Duff
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Event Calander3How about you upload that image here (for free) and paste that link here. I’m sure not too many are fond of downloading a word document to look at a picture.
Forum: Fixing WordPress
In reply to: Custom quicktag button conflict debugging help pleasekaat, out of curiosity, did you try to make b work like a also? B seems a bit sloppy. A is the way Owen’s Edit Button template is made… here’s part…
function edit_insert_button($caption, $js_onclick, $title = '')
{
?>
if(toolbar)
{
var theButton = document.createElement('input');
theButton.type = 'button';
theButton.value = '<?php echo $caption; ?>';
theButton.onclick = <?php echo $js_onclick; ?>;
theButton.className = 'ed_button';
theButton.title = "<?php echo $title; ?>";
theButton.id = "<?php echo "ed_{$caption}"; ?>";
toolbar.appendChild(theButton);
}
<?php
}Forum: Plugins
In reply to: Request to plugin developersNo, but Ecto is. It costs 17.99
Forum: Plugins
In reply to: Request to plugin developersAre you giving us free copies to test with? Why should I have to buy your program to test my plugins and make sure it doesn’t break anything? If you’re giving free copies to test with, I’ll test mine.
Forum: Plugins
In reply to: Spam Possible from Contact Form Plugin?????????Zenpop: Sorry, I get alot of mail. There is no way to farm an email address from the form. The form just sends the data back to a script and is no way printed in the source of the page for a bot to harvest.
Forum: Plugins
In reply to: Plogger Gallery: beta 2 is out / more developers neededJust curious, are you an innocent promoter or are you actually affiliated with plogger?
Forum: Your WordPress
In reply to: Personal WordPress repository syncedForum: Everything else WordPress
In reply to: CONGRATULATIONS WORDPRESS!!!Matt noted this on his blog this morning…
Forum: Fixing WordPress
In reply to: How to disable permalink definitively ?ges: if its still giving you permalinks on your homepage, and the permalink structure is empty, try refreshing the page. Sounds like you’re looking at a cached page.
Forum: Plugins
In reply to: Contact Form plugin and SPAMtechwench: good to hear. that means that the first phase is working. The exploitability is gone. I’m working on stopping them from being able to submit the form without having to read the page and grab the unique key for each site.
Forum: Plugins
In reply to: Contact Form plugin and SPAMnjg97r: are you using 1.3. There should be no Bcc: line created. Can you forward that email to me?
ryan at ryanduff dot net
Forum: Plugins
In reply to: Contact Form plugin and SPAMVersion 1.3 of WordPress Contact Form has been released. You can get it from here
Offical post is here: http://ryanduff.net/archives/2005/09/13/wordpress-contact-form-13/
Forum: Requests and Feedback
In reply to: Please help me integrate ploggerGuys, the current problem is that Plogger doesn’t work outside of its directory. I’ve been working on the absolute path issue so that it will work when called from any directory. When you create a “page” in WordPress, you’d be trying to load it from a directory other than the plogger directory. / instead of /plogger (Where your WordPress install is the root of your site and Plogger is intstalled into the /plogger folder).
The alternative is to right click on your home page of your site and view source. Save the source code as index.php. You’d then have to strip out the posts, etc and place in the 3 Plogger tags and place that index.php into your plogger folder. This would use a static replica of your site’s template and not be integrated with wordpress at all.
Once we fix the absolute path issue, I will test it against my plugin to confirm that it works and maybe do some more integration work. Beta2 is due out soon (pending absolute path completion) then hopefully Release Canidate 1 and 2 for some minor bug fixes and a stable version.
Forum: Plugins
In reply to: Task ManagementNo, it is a web application that Alex King came up with. He is/was a contributing developer for wordpress.
I myself use it and I’m sure there are quite a few other wordpress users/devs that do. I love it and would never use anything else.
Forum: Plugins
In reply to: Contact Form plugin on outside of “blog” directory?Yes, it was designed to be called within a page or post’s content so that you could add it to a page like mine, with text before and after. There is no functionality to use it outside of a post, although a template tag is a cool twist. I’ll have to look into that maybe.