I've been contacted by an organization still running MT 3.2 (not MT 3.21) and they are experiencing core dumps on a regular basis. From what I can tell its...
Do they have a PHP accelerator installed? I recall issues, usually traceable to plugins, that caused core dumps when eAccelerator was installed on MT 3.2. I...
Thanks Kevin. I'll look in to that. They are running a lot of PHP apps on that box also so its a possibility. I also found that they still had spam lookup...
... I'm surprised at the number of people that contact me about "slow commenting" where this is the problem. Just last night I had another e-mail from someone...
Sorry if this ends up being a cross-post. I sent this to the sixapart supported list Friday afternoon and it never was posted there, so I'm assuming they don't...
I want to write an upgrade function for an MT4.1 plug-in that is triggered when the database schema is incremented. The task is simple: for each blog, the...
Hi, uh, Ole - You don't really need to get a list of blogs, assuming you're reading each one. Just loop over the entire blog table. Within that loop, just set...
Hi Chad, ... Thanks--that's what I was looking for; at least this appears to accomplish what I want. I had originally looked at load_iter for MT::PluginData...
I followed this guide: http://www.movabletype.org/documentation/developer/plugins/extending-existing-object-type.html and had an init_registry method that...
Does anyone know of a reference or sample that explains the various variables such as next_max, list_end, list_total, etc. that are used to control the...
Explains as in documentation? No, I've never seen any. But explains in terms of real-world examples? Absolutely... If you don't already have them, get a...
[Asking over here too since it's related... Originally from MTOS-dev list] Does anyone know a good way to have your plugin config panel automatically opened to...
Hi, For a client I've to integrate MT with a php-based cms. I've used php::interpreter(1) and php's perl extension (2) to somwhow integrate them. The problem...
I'm trying to write a plugin for ActionStream which adds support for Slashdot, but to do that I need more complex functionality than what scraper or xpath...
Hello all. I'm putting out an updated version of our MT plugin and am having some issues with the upgrade scripts b/c I need to up the schema version. For the...
Jesse, Its hard to be specific since you haven't posted any code but... I don't think the MT api will remove the column. It is pretty good add schema changes...
Thanks for the reply, Mark. Sorry for not posting code, but I had literally followed the example on the page I referenced to the tee. Anywho, here's my ...
... This is correct, it must match the object type you have defined. Each object passing the "condition" will get passed to the "code" function, so your first...
Turns out I wasn't paying attention to the ever so important placement of a closing brace, so my entire upgrade_functions section was not in the registry...