... I *think* this is backwards. I believe that the "off" (disabled) state equates to a value of 0, or: $cfg->PluginSwitch('feeds/mt-feeds.pl=0', 1); While an...
The PluginSwitch config element is a hash type. So you set it like this: $cfg->PluginSwitch("Key=Value"); The third parameter is used to persist the value into...
... Thanks for explaining that. Seems like rather then wedging hash data into the existing interface some addition methods or better a separate object like...
I suppose this question is for Brad, but asked in the open so we all can benefit. In the dispatch script you posted on your personal weblog some time back you...
The Bootstrap module in wheeljack is provided for those that want to run individual FastCGI processes for each script. This makes it trivial to turn a MT CGI...
Oh - This is MT 3.31, so ContextHandlers.pm, line 1335 is: my $iter = MT::Entry->load_iter(\%terms, \%args); %terms contains: $terms{'status'} = 2; ...
Hi everybody :) I posted this on the ProNet list but <tim/> recommended I post it here as well. I am new to the plugin game and have started with something...
Posting some portion of your code would be helpful to making any type of assessment. I'm not sure what part though without knowing how you are implementing...
I'm just realizing that I never saw these messages. I guess my spam filter got them for some reason. Did you figure out what was wrong here? I've never seen...
... type ... Here is the code, it is ugly at the moment but works as mentioned. I am not overloading save_config as I had been trying to find out what I needed...
... Yes. You need to run your code through perltidy! ;) I don't see anything terribly wrong here. Perhaps there is something with the form in config.tmpl....
Though it at first turned out to look as if it was related to the custom plugin (disabling it made things work, so it seemed a logical conclusion at the time),...
Your plugin is in $plugin - so to get the config value, you can use $plugin->get_config_value - which I mention, since you are doing it. To set a config value...
What you say is all true Chad, but MT calls a save_config method when a user clicks the "save changes" button on a settings screen. MT::Plugin provides a...
hum. The only thing I get from looking into this is a reminder of why I dislike MT::Plugin so much and wrote my own system. I think you'll need to put in a...
... why ... Well the good news is that I haven't made a simple mistake :) I changed the template to use get rather than post for plugin updates so that I can...
I've been copying this from one plugin to another for a really (really) long time, and must admit to never having really looked into it much since it was ...
... why ... Hurray, Solved at last in one of those stare at the screen until you go cross eyed, never going to do that again moments. You were right, it was in...
My fault - I was wading through a ton of email and didn't make it to the fact that he was working in the settings screen. :) Back to square one in this...
Hi, I am a new member of this mailing list. I am not an MT or plugin developer. My interest is in internationalization and localization primarily. My blog has...
Just a quick note to let everyone here know that I've posted Feeds.App BETA 2 for download. http://code.appnel.com/feeds-app This version fixes most of the...
Hi All! I have 2 questions which I posted on the MT community forums and was informed I might have more luck posting here. 1. In a add_container_tag defined...