ringmaster
Forum Replies Created
-
Forum: Plugins
In reply to: Exhibit 1.1 Photo Gallery PluginForum: Plugins
In reply to: exhibit thumbs diplay in excerpt?What I want to do before 2.0 gets off of my desktop is put up a bug database. I’m kind of hesitant about using wp-plugins at this point because I can’t figure out how to get Tortoise SVN to checkout two projects to one working directory. Yeah, maybe I should just use two working directories, but I’ve already got WordPress installed so many times on this system it’s crazy…
Sorry if that’s all greek.
Anyhow, 2.0 is WP1.5-only. 1.1 will stay around for the 1.2.x’ers. There are too many good plugin hooks in 1.5 to have to back-port.
This post is also not a promise that the 2.0 code will ever see release. I’ve got a billion projects going on right now, some WordPress, some not. The OSA project (augmented spam filtering for WP1.5 with p2p spam wordlists) is pretty high on my priority list right now. I want people to test the GeoPlugin, which is a replacement for the Geo features that you lose when you upgrade from 1.2-1.5. I’m considering a small plugin for FFAF this month that limits user posting to certain categories based on their user level. I’ve got this other crazy project that’s like a micro web server that you run on your desktop to enable file-sharing. I just got a contract offer yesterday (for $$) to maintain a site that I might actually decline so that I can finish all of this crap and clear my mind of it. And every time I stop by the forums I end up reading/replying for hours instead of doing actual coding… Gah!
Busy busy.
But yeah, I’ll take on testers as soon as I get some of the technical bits (like, how to version control/distribute the plugin) taken care of.
Forum: Plugins
In reply to: wp-photos vs. exhibitForum: Plugins
In reply to: Exhibit 1.1 Photo Gallery PluginWhew.
Ok, my current Exhibit install is working under WP1.5. I probably don’t have the same code as what is available for download from my wp-hacks site.
If you’re stuck, try this:
http://asymptomatic.net/wp-hacks/asy_exhibit.zipThat is an archive of the code that I run on my own site which is a very recent CVS snapshot of WordPress 1.5.
Anyone want to recommend a good web-based bug tracker?
Forum: Plugins
In reply to: wp-photos vs. exhibitI wrote Exhibit to replace wp-photos. It didn’t do everything I wanted it to do.
Specifically, wp-photos didn’t let me add images from the post-editing page. If I remember correctly, it had some funky way of displaying the full-sized image. I don’t think it created thumbnails, either. It’s been a while, you can tell. 🙂
I’m sure there are plenty of thngs that Exhibit does now that wp-photos didn’t do. I’m not sure if Alex has kept up development on wp-photos or not.
Forum: Plugins
In reply to: exhibit thumbs diplay in excerpt?Exhibit doesn’t display anything in an excerpt. You might be able to get it to do so, but you’ll have to tinker a little with the Exhibit code.
Look in the exhibitimg/exhibit10p.php near the top. You’ll find this line:
add_filter('the_content', 'exhibit_content');Try adding a line right under that reading:
add_filter('the_excerpt', 'exhibit_content');That should do the same thing to the excerpts as what is done to the content. Note that I have not actually tried this, but it seems like the logical result.
My EzStatic plugin doesn’t work well with Kurbick on WP 1.2.x simply because the tags it uses to detect where you put your content don’t exist in the Kubrick template.
The latest EzStatic works with an out-of-the-box WP 1.5 beta on either the Default (Kubrick) or Classic templates.
Forum: Fixing WordPress
In reply to: suspicious spam/not-spamWhy this new breed of comments has no links:
http://www.asymptomatic.net/archives/2005/01/18/1225/got-new-spam-tactic-figured/The “miracle” of filtering spams that have no links (via many of the spam filter plugins available) is enabled through Realtime Blackhole Lists (RBLs), not by some mystic heuristic/bayesian algorithm.
Basically, the plugin takes the IP of the spammer and uses it when making a DNS request from someplace like sbl-xbl.spamhaus.org. (Note that this is not the same thing as an email RBL, which would be significantly less effective.) That site has a database of IPs that were used to send comment spam, usually via open HTTP proxies. If the IP is in the list, it reports that info to the plugin, and the plugin filters the comment.
Blacklisting IPs works, but you’re not benefitting from the work done by others who already have expansive lists of bad IPs. Install one of the spam filtering plugins and let it do the work for you. A good filter will cache the IP results so it doesn’t make duplicate requests to the RBL, and can still work if the RBL is inaccessible for some reason. A better filter could help report new bad IPs to the RBLs.
Forum: Plugins
In reply to: Exhibit 1.1d errors@cvc505:
You need JPEG extensions in GD/PHP in order to make thumbnails work.@mutantfrog:
Popups won’t have captions except in the title bar and the alt parameter of the img tag. This is as-designed.Forum: Plugins
In reply to: EzStatic PluginI don’t know what’s giving you the impression that you’re not serving UTF-8. Everything I see here says you are.
Yeah, if you work out how this is happening, I’d be glad to know. 🙂Forum: Plugins
In reply to: EzStatic PluginOk, a few things…
I don’t have that option in Firefox. It’s a firefox extension you can find here.
I installed the extension from that page, and I still don’t have your issue on your site or mine, no matter what encoding I set mine to.
The recommended encoding for WP is UTF-8, anyway. All of my pages are produced as UTF-8 and look fine. Changing the encoding to ISO-8859-1 did nothing to the display.
Still no idea what the issue is.Forum: Plugins
In reply to: EzStatic PluginWhere is this “Translate” option? In Firefox? I don’t have one of those.
Forum: Plugins
In reply to: EzStatic PluginI’m looking at omar’s page in Firefox and I see it just fine.
My Firefox version info: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0
What’s yours?
@kiwinessie:
I don’t think you’re using my archives.php. The reason I don’t think you are is because there are two headers on your archives page, which is one thing that happens when you use the original file.
Download my revised version from here and try that to be sure that’s not the problem.Forum: Plugins
In reply to: EzStatic PluginLooks like it’s working to me… Still having issues?
Forum: Plugins
In reply to: Exhibit 1.1 Photo Gallery Plugin@greatbananas:
It seems you don’t have jpeg image handling functions compiled into your PHP. Exhibit needs those to create thumbnails.
Not having this function wouldn’t break your site, though. So I wonder what you “fixed” to get your site back. Nothing that Exhibit caused, I’d think.