Search the web
Sign In
New User? Sign Up
mt-dev · Movable Type Developers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1214 - 1243 of 2069   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1214
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...
Chad Everett
jayseae
Offline Send Email
Apr 3, 2007
9:18 pm
1215
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...
Mark Carey
bsakamano
Offline Send Email
Apr 4, 2007
1:20 pm
1216
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...
Chad Everett
jayseae
Offline Send Email
Apr 4, 2007
1:30 pm
1217
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...
jesse newland
slhack3r
Offline Send Email
Apr 4, 2007
5:42 pm
1218
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...
Chad Everett
jayseae
Offline Send Email
Apr 4, 2007
6:53 pm
1219
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"...
David Jacobs
pdx_davidj
Offline Send Email
Apr 4, 2007
6:59 pm
1220
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...
jesse newland
slhack3r
Offline Send Email
Apr 4, 2007
7:50 pm
1221
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...
Kevin Shay
kevin_shay
Offline Send Email
Apr 5, 2007
9:07 pm
1222
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...
Timothy Appnel
tappnel
Offline Send Email
Apr 5, 2007
9:24 pm
1223
... 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...
Kevin Shay
kevin_shay
Offline Send Email
Apr 5, 2007
9:53 pm
1224
Wow - talk about a mind like a steel trap. I never would have thought to ask. ... -- djacobs@... (646) 244 9910 http://hello.typepad.com...
David Jacobs
pdx_davidj
Offline Send Email
Apr 5, 2007
10:41 pm
1225
... 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...
Kevin Shay
kevin_shay
Offline Send Email
Apr 5, 2007
10:49 pm
1226
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...
David Lents
dave_lents
Offline Send Email
Apr 11, 2007
11:53 pm
1227
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. ...
David Raynes
rayners1
Offline Send Email
Apr 12, 2007
1:48 am
1228
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...
chrisdrackett
Offline Send Email
Apr 17, 2007
12:00 am
1229
... 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"...
chrisdrackett
Offline Send Email
Apr 17, 2007
12:09 am
1230
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...
Brad Choate
bschoate
Offline Send Email
Apr 17, 2007
6:07 am
1231
You'll definitely want to read these two articles: http://www.sixapart.com/pronet/articles/dynamic_publish.html and ...
Jay Allen
fooljay
Offline Send Email
Apr 17, 2007
5:27 pm
1232
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. ...
Chad Everett
jayseae
Offline Send Email
Apr 17, 2007
6:00 pm
1233
... FYI, upgrading to 3.3 seems to have fixed the problem. Thanks for pointing my mind in the right direction. --Kevin...
Kevin Shay
kevin_shay
Offline Send Email
Apr 17, 2007
6:33 pm
1234
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...
chrisdrackett
Offline Send Email
Apr 18, 2007
4:07 am
1235
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...
chrisdrackett
Offline Send Email
Apr 20, 2007
5:10 am
1236
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...
Jay Allen
fooljay
Offline Send Email
Apr 20, 2007
3:46 pm
1237
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 ...
Mark Carey
bsakamano
Offline Send Email
May 15, 2007
5:37 pm
1238
... 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...
Kevin Shay
kevin_shay
Offline Send Email
May 15, 2007
6:29 pm
1239
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...
Brad Choate
bschoate
Offline Send Email
May 15, 2007
6:58 pm
1240
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};...
Mark Carey
bsakamano
Offline Send Email
May 15, 2007
7:12 pm
1241
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...
Kevin Shay
kevin_shay
Offline Send Email
May 17, 2007
9:19 pm
1242
And to followup: Brad, Byrne, which is "more" compatible with athena's coming modular-ization? ... -- djacobs@... (646) 244 9910 http://hello.typepad.com...
David Jacobs
pdx_davidj
Offline Send Email
May 17, 2007
9:23 pm
1243
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...
Timothy Appnel
tappnel
Offline Send Email
May 17, 2007
9:34 pm
Messages 1214 - 1243 of 2069   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help