Has anyone seen entries that appear to have good placement records not being found? I've run a query that looks something like this: SELECT mt_entry.* FROM...
I think the key difference between your mySQL query and the MT lookup may be that MT takes a blog context into account (such as AND placement_blog_id = 1). I...
Good idea, but no such luck. SELECT mt_entry.* FROM mt_entry LEFT JOIN mt_placement ON entry_id = placement_entry_id WHERE placement_category_id = 20 AND...
First of all - thanks to Brad / Jay and anyone else that worked on RebuildQueue. What a fantastic plugin. It. Rocks. In my limited time playing with it, I've...
The template name patch is cool, but I think something along these lines that would be nice is the ability to override the queue on a per-template basis. Then...
I'm not sure how this would work if there were similarly named templates across blogs, though. For instance, what if you wanted to rebuild "Google Sitemaps"...
The patch was a quick and dirty way to save our workers a lot of cycles building 'Google Sitemap' Index Templates each time a comment was posted across all...
Hi all, I have a client who reported that earlier today, MT disappeared. All the files were there, but mt.cgi and mt-search.cgi returned a completely blank...
What version of MT is this? I seem to recall having this happen intermittently with MT 3.2 running under mod_perl whilst working for O'Reilly. I'm not exactly...
... Thanks--it is, in fact, running 3.2. I don't know much about their server setup (I didn't develop their whole site, just a custom search script), but I'll...
... And talk about a mind like a rusty sieve (mine, for not mentioning that it was 3.2 in the first place). It just didn't occur to me that it might be...
Is the /etc/localtime file correct for your timezone? Have the servers been updated for the new DST dates that changed this year? On linux, this requires an...
It turned out that it was a bug with MT, actually. The UTC handing for MTEntryDate was not adjusting correctly for DST. It looks to be fixed in MT 3.35. ...
I am trying to find a way to use a plugin's template tag within PHP in a dynamic template. I am trying to do this using some smarty, but so far have had no...
... template. I ... I've ... one more thing.. I also can't seem to figure out how to put something like: <$MTEntryTitle remove_html="1" encode_xml="1"...
Hi Chris, There are a number of ways to achieve this... one is to use the 'tag' method of the Smarty object (which is a MT subclass of Smarty). <?php $variable...
Turned out the server was out of disk space (on /tmp, at least) - so the query couldn't be executed. Not sure why it was working sometimes and not others. ...
Thanks Brad and Jay for the help, when I play around with this, the code Brad posted below works fine. However, when I actually put in the code I need (of...
I think the problem is in the " include($_SERVER['DOCUMENT_ROOT'].'/feeder/index.php'); " line. when I take that out the page renders fine. Is there something...
That My guess is either that you have some sort of server-wide security measures turned on which disables the include() function. First see if full path (with...
I am trying to accomplish something like: read (STDIN, $query, $ENV{'CONTENT_LENGTH'}); ...from with an MT (plugin) App. It doesn't seem to work. I think I ...
... Yes, when the query object is initialized in MT::App::init_request(), the CGI->new call sucks everything out of STDIN. One possibility would be for your...
If you can set the app member variable 'no_read_body' to 1 before the application's init_request routine is run, then it won't read STDIN. MT::AtomServer does...
Thanks, both. I think I have find another way to get what I need. Rather than try to access the raw STDIN, I tried doing the following: my $q = $app->{query};...
Hi all, A) Let's say I have a plugin called Finagler, which "finagles" objects in the MT system. I want other plugins to be able to define callbacks that...
And to followup: Brad, Byrne, which is "more" compatible with athena's coming modular-ization? ... -- djacobs@... (646) 244 9910 http://hello.typepad.com...
The naming of callback hooks has always been a sore point for me because they are use different naming styles and are hard to keep straight. So my answer to...