User wizard - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T10:23:56Z http://stackoverflow.com/feeds/user/339 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1552583/what-are-some-physical-mailing-services-with-apis-pdf-to-delivered-letter 1 What are some Physical Mailing Services with APIs? (pdf to delivered letter) wizard 2009-10-12T03:38:35Z 2009-10-27T18:59:45Z <p>I'm writing a bill generation service for a client, and I would like to program my self out of the most time consuming part of the process. It goes something like this. </p> <blockquote> <p>print X number of pdfs and envelopes, stuff envelops, stamp, and bring to post office </p> </blockquote> <p>It would only be a few hundred bills monthly to start but it could grow. I'm sure some sort of service exists that provides an api to deliver a printed pdf to an address but I can't find one. I think part of my problem is discovering the terminology to google with.</p> <p>Have you ever used any services like this?</p> <p><strong>UPDATE</strong><br /> I've found some helpful search terms, but no good results yet.</p> <blockquote> <p>Mail Processing Services<br /> Document Processing Services</p> </blockquote> <p>I should also add that I'm located in nyc and am looking for a US based solution.</p> http://stackoverflow.com/questions/1590886/jquery-photo-comparison 0 Jquery photo comparison wizard 2009-10-19T20:20:13Z 2009-10-19T22:23:59Z <p>There's a jQuery plugin out there that puts a dragable bar that lets you pull it to the left or right to show one image or another. You can keep it in the middle to see half of each photo. It's not a "slider". It's great for showing how something has been altered or photoshoped. Is anyone aware of this plugin and know where I can find it?</p> <p><strong>Update</strong></p> <p>"Sliders" are the common term for a rotating image carousel. <a href="http://vandelaydesign.com/blog/web-development/jquery-image-galleries/" rel="nofollow">Here are some examples</a>, there ae about a thousand lists of sliders.</p> <p>What I'm trying to talk about is a bar not unlike the one on the bottom of the post edit screen here on StackOverflow. It allows you to drag a bar towards the left and right to cover/uncover the images in place.</p> http://stackoverflow.com/questions/1003751/how-do-i-use-microsoft-ad-and-php-single-sign-on-web-app 2 How do I use Microsoft AD and php single sign on web app? wizard 2009-06-16T20:21:44Z 2009-10-16T19:05:59Z <p>I'm vaguely aware that on a computer joined to a domain IE can be asked to send some extra headers that I could use to automatically sign on to an application. I've got apache running on a windows server with mod php. I'd like to be able to avoid the user having to log in if necessary. I've found some links talking about kebros and apache modules.</p> <p><a href="http://www.onlamp.com/pub/a/onlamp/2003/09/11/kerberos.html?page=last" rel="nofollow">http://www.onlamp.com/pub/a/onlamp/2003/09/11/kerberos.html?page=last</a> <a href="http://search.cpan.org/~speeves/Apache2-AuthenNTLM-0.02/AuthenNTLM.pm" rel="nofollow">http://search.cpan.org/~speeves/Apache2-AuthenNTLM-0.02/AuthenNTLM.pm</a></p> <p>Since I'm running on windows Its proven to be non trivial to get perl or apache modules installed. But doesn't php have access to the headers?</p> <p>I found this but it doesn't do any authentication, it just shows that php can read the ntlm headers. <a href="http://siphon9.net/loune/2007/10/simple-lightweight-ntlm-in-php/" rel="nofollow">http://siphon9.net/loune/2007/10/simple-lightweight-ntlm-in-php/</a></p> <p>I'd like to be able to have my users just point to the application and have them automatically authenticated. Has anyone had any experience with this or gotten it to work at all?</p> <p><strong>UPDATE</strong> Since originally posting this question, we've changed setups to nginx and php-fcgi still running on windows. Apache2 and php-cgi on windows is probably one of the slowest setups you could configure on windows. It's looking like apache might still be needed (it works with php-fcgi) but I would prefer a nginx solution. </p> <p>I also still don't understand (and would love to be educated) why http server plugins are necessary and we can't have a php, web server agnostic solution.</p> http://stackoverflow.com/questions/1552583/what-are-some-physical-mailing-services-with-apis-pdf-to-delivered-letter/1568748#1568748 0 Answer by wizard for What are some Physical Mailing Services with APIs? (pdf to delivered letter) wizard 2009-10-14T20:23:02Z 2009-10-14T20:23:02Z <p>I found a local shipping center who will receive pdf's via email and send them out and bill me for a negotiated nominal fee. A service with an api doesn't seem to exist.</p> http://stackoverflow.com/questions/1562258/whats-the-difference-between-the-cost-of-asp-net-and-php-hosting/1562295#1562295 1 Answer by wizard for What's the difference between the cost of ASP.NET and PHP hosting? wizard 2009-10-13T19:06:12Z 2009-10-13T19:06:12Z <p>Usually the cost of asp.net hosting is higher due to microsoft licencing fees vs linux's lack of fees. It's usually 5-10 dollars a month more depending on what you're getting. You do get what you pay for, so be wary when looking at bargain hosts. Any hosting that only costs a few dollars a month (under $10) isn't going to provide the same level of service or support that one that costs more will.</p> <p>I've had good experience for linux hosting with Bluehost. Dreamhost is another, they are more flexible but I have had performance issues.</p> <p>For windows hosting, I know the rackspace cloud sites does both linux and windows environments rather well. I've had issues with them in the past (provisioning) but they seem to have cleaned up a lot in the past year.</p> <p>Good luck finding someplace to host your code! </p> http://stackoverflow.com/questions/66606/what-package-includes-ab-the-apache-server-benchmarking-tool-in-ubuntu 0 What package includes AB the Apache Server Benchmarking Tool in Ubuntu wizard 2008-09-15T20:27:54Z 2009-08-02T17:41:37Z <p>I'm trying to find <a href="http://httpd.apache.org/docs/2.0/programs/ab.html" rel="nofollow">ab - Apache HTTP server benchmarking tool</a> for Ubuntu, I'm hoping there's a package I can install for it. I decided I need to do some simple load testing on my applications.</p> http://stackoverflow.com/questions/1049238/regex-and-get/1049309#1049309 1 Answer by wizard for regex and $_GET wizard 2009-06-26T13:59:16Z 2009-06-26T13:59:16Z <p>I really don't like reg editing out strings in paths, you never know what quirks of browsers and filesystems can be exploited. What you really should do is not actually use their input but use it to check against valid filenames.</p> <p>Use <a href="http://us3.php.net/manual/en/function.glob.php" rel="nofollow">glob</a> or <a href="http://us3.php.net/manual/en/function.scandir.php" rel="nofollow">scandir</a> to get a list of the files in the pages directory and then use in_array to see if the requested string is a file. If you try to strip out path elements, you leave yourself open to making a mistake.</p> http://stackoverflow.com/questions/813294/in-cakephp-how-can-i-do-a-find-with-conditions-on-a-realted-field 0 In cakephp how can I do a find with conditions on a realted field? wizard 2009-05-01T21:08:51Z 2009-06-24T13:52:50Z <p>I've got a model (Listings) that has and belongs to a few different models, I'd like to find all of this model where it's related model (Openhouses) have a condition. The 'has and belongs to' are setup in the model files. Listings hasmany Openhouses and Openhouses belong to Listings. (And listings has many and blongs to a few other models where I want the data.)</p> <p>I've been trying.</p> <pre><code>$this-&gt;Listing-&gt;find('all', array('conditions' =&gt; array('Openhouse.date &gt;' =&gt; $openhouse_start-&gt;format('Y-m-d H:i:s'), 'Openhouse.date &lt;' =&gt; $openhouse_end-&gt;format('Y-m-d H:i:s')) )); </code></pre> <p>but to no avail. </p> <pre><code>Error: 1054: Unknown column 'Openhouse.date' in 'where clause </code></pre> <p>I know I can search on the Openhouse model and get related Listings but then the data is returned in a different format and I need to turn recursion way up to get data from my other models. (And I end up with duplicate openhouse data!). I can post some more code examples if needed. </p> <p>My question is basically do I need to just query the openhouse model and live with it or is my syntax for putting conditions on related models incorrect?</p> http://stackoverflow.com/questions/1036454/what-are-the-diffrences-between-utf8generalci-and-utf8unicodeci 2 What are the diffrences between utf8_general_ci and utf8_unicode_ci? wizard 2009-06-24T04:49:31Z 2009-06-24T04:55:51Z <p>I've got two options for unicode that look promising for a mysql database.</p> <pre><code>utf8_general_ci unicode (multilingual), case-insensitive utf8_unicode_ci unicode (multilingual), case-insensitive </code></pre> <p>Can you please explain what is the difference between utf8_general_ci and utf8_unicode_ci? What are the effects of choosing one over the other when designing a database?</p> http://stackoverflow.com/questions/839172/accessing-user-credentials-with-php-on-iis-7/1003630#1003630 0 Answer by wizard for Accessing user credentials with PHP on IIS 7 wizard 2009-06-16T19:58:46Z 2009-06-16T19:58:46Z <p>You want to use ldap. The hardest part for me was figuring out the OU my users were in and the format we needed to have our usernames (USERNAME@DOMAIN.COM instead of domain\username). We have them all in the default Users OU. This is taken from a cakephp app I wrote and it grabs some additional information, but it should set you along the right track. Your php of course needs to have an ldap extension compiled.</p> <pre><code>protected function findLdapUser($username, $password, $otheruser = false){ $config = Configure::read('ldap'); if(!$username &amp;&amp; !$password &amp;&amp; $otheruser){ $username = $config['username']; $password = $config['password']; } if($password == ""){return false;} //prevent anonmyous bind if(!$otheruser){ $otheruser = $username; } $connection = ldap_connect($config['host'], $config['port']); if($connection === false){ //does not detect properly depending on enviroment! debug("cannot connect to ldap server"); return 0; //cannot connect! } ldap_set_option($connection, LDAP_OPT_PROTOCOL_VERSION, $config['version']); if (!@ldap_bind($connection, $username . $config['userpostfix'], $password)){ return false; } //search for user data $fields = array('mail', 'name', 'telephoneNumber', 'physicalDeliveryOfficeName'); //$filter = "sAMAccountName=" . $username; $filter = "userPrincipalName=" . $otheruser . $config['userpostfix']; $results = ldap_search($connection, "CN=USERS,".$config['basedn'], $filter, $fields); $info = ldap_get_entries($connection, $results); if($info['count'] == 0){return false;} @ldap_unbind($connection); $return['LdapUser']['email'] = $info[0]['mail'][0]; $return['LdapUser']['fullname'] = $info[0]['name'][0]; //supress warnings @$return['LdapUser']['office'] = $info[0]['physicaldeliveryofficename'][0]; @$return['LdapUser']['phone'] = $info[0]['telephonenumber'][0]; return $return; } </code></pre> http://stackoverflow.com/questions/659455/what-are-some-good-distributed-queue-managers-in-php 7 What are some good distributed queue managers in php? wizard 2009-03-18T18:05:53Z 2009-04-09T10:06:30Z <p>I'm working an image processing website, instead of having lengthy jobs hold up the users browser I want all commands to return fast with a job id and have a background task do the actual work. The id could then be used to check for status and results (ie a url of the processed image). I've found a lot of distributed queue managers for ruby, java and python but I don't know nearly enough of any of those languages to be able to use them. </p> <p>My own tests have been with shared mysql database to queue jobs, lock them to a worker, and mark them as completed (saving the return data in the db). It was just a messy prototype, and the entire time I felt as if I was reinventing the wheel (and not very elegantly). Does something exist in php (or that I can talk to RESTfully?) that I could use?</p> <p>Reading around a bit more, I've found that what I'm looking for is a queuing system that has a php api, it doesn't have to be written in php. I've only found classes for use with Amazon's SQS, but not only is that not free, it's also quite latent sometimes (over a minute for a message to show up).</p> http://stackoverflow.com/questions/87490/why-does-my-global-address-book-take-up-to-a-day-to-update-when-adding-or-removin 0 Why does my global address book take up to a day to update when adding or removing users? [closed] wizard 2008-09-17T20:46:04Z 2009-03-10T03:34:58Z <p>I'm currently an admin at a company and am part of a windows domain with two Primary Domain Controllers in different locations connected via a vpn, There is at least one backup domain controller in each location and we have less then 100 users. The servers are mostly windows 2003. I also have Exchange 2003 servers in both locations for redundancy and to serve the users in both locations.</p> <p>When I make a change to a user in active directory, either a name change or I add or remove a user. It takes our global address book a few hours, sometimes up to a day to update in everybody's outlook.</p> <p>Why is this and how would I go about speeding it up?</p> <p><em>Also please forgive this being not directly related to programming, I hope it's not too out there, as some of us have to wear many hats.</em></p> http://stackoverflow.com/questions/508752/whats-a-simple-way-to-convert-between-an-am-pm-time-to-24-hour-time-in-javascrip 1 What's a simple way to convert between an am/pm time to 24 hour time in javascript. wizard 2009-02-03T20:18:22Z 2009-02-04T16:15:34Z <p>I've been playing with jquery and I've run myself into a time problem. I've got 3 time input select boxes, one for hours, one for minutes, and one for the Meridian. I need to convert this time into a 24 hour string format and then stick it into a hidden input.</p> <pre><code>var time = ""; time += $("#EventCloseTimeHour option:selected").text(); time += ":" + $("#EventCloseTimeMin option:selected").text() + ":00"; time += " " + $("#EventCloseTimeMeridian option:selected").text(); $("#ConditionValue").val(time); </code></pre> <p>This gives me "1:30:00 pm" where I need "13:30:00". Any quick javascript time tips?</p> http://stackoverflow.com/questions/508752/whats-a-simple-way-to-convert-between-an-am-pm-time-to-24-hour-time-in-javascrip/508917#508917 0 Answer by wizard for What's a simple way to convert between an am/pm time to 24 hour time in javascript. wizard 2009-02-03T21:13:31Z 2009-02-03T21:13:31Z <p>I got it with a few people's answers.</p> <pre><code>var time = ""; var hour = Number($("#EventCloseTimeHour option:selected").text()); if($("#EventCloseTimeMeridian option:selected").text() == 'PM'){ hour = String((hour%12) + 12); } hour = hour &lt; 10 ? "0" + hour : hour; time +=hour+":"+ $("#EventCloseTimeMin option:selected").text() + ":00"; </code></pre> http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/270330#270330 0 Answer by wizard for Showing too much 'skin' detection in software wizard 2008-11-06T21:21:34Z 2008-11-06T21:21:34Z <p><a href="http://crowdsifter.com" rel="nofollow">CrowdSifter</a> by <a href="http://doloreslabs.com" rel="nofollow">Dolores Labs</a> might do the trick for you. I read their blog all the time as they seem to love statistics and crowdsourcing and like to talk about it. They use amazon's mechanical turk for a lot of their processing and know how to process the results to get the right answers out of things. Check out their blog at the very least to see some cool statistical experiments.</p> http://stackoverflow.com/questions/158775/are-there-any-data-warehouse-frameworks 5 Are there any data warehouse frameworks? wizard 2008-10-01T17:34:17Z 2008-10-22T23:08:41Z <p>I've got a lot of mysql data that I need to generate reports from. It's mostly historic data so it won't be changing much, but it weighs in at 20-30 gigabytes easily and is expected to grow. I currently have a collection of php scripts that will do some complex queries and output csv and excel files. I also use phpMyAdmin with bookmarked queries. I manually edit them to change the parameters. The amount of data is growing and the number of people who need access to it is also growing, so I'm making the time to improve this situation.</p> <p>I started reading about data warehousing the other day and it seems that this an area that relates to what I need to do. I've read <a href="http://philip.greenspun.com/wtr/data-warehousing.html" rel="nofollow">some good</a> <a href="http://en.wikipedia.org/wiki/Data_warehouse" rel="nofollow">articles</a> and am even waiting on a book. I think I'm getting a handle on what these sorts of systems do and what's possible.</p> <p>Creating a reporting system for my data has always been on a todo list, but until recently I figured it would be a highly niche programing venture. Since I now know data warehousing is a common thing, I figure there must be some sort of reporting/warehousing frames available to ease in the development. I'd gladly skip writing interfaces and scripts to schedule and email reports and the like and stick to writing queries and setting up relations.</p> <p>I've mostly been a lamp guy, but I'm not above switching languages or platforms. I just need a more robust solution as my one off scripts don't scale well.</p> <p>So where's a good place to get started?</p> http://stackoverflow.com/questions/209592/what-is-the-best-way-to-teach-you-and-your-boss-c 2 What is the best way to teach you and your boss C#? wizard 2008-10-16T17:51:26Z 2008-10-16T18:04:25Z <p>My boss wants to "get back into programming" by making an internal web application. I've got lots of experience with php and mvc frameworks, but he's doesn't want to learn php, he wants to learn c# as it probably will be more useful to him down the road (I can't disagree.) I think I'll be ok with tutorials and code snippets I find online, but he's not the kind of guy who would read Jeff's blog and I think I need to find him some more resources... besides StackOverflow.</p> http://stackoverflow.com/questions/158756/what-is-the-best-image-manipulation-library/159027#159027 6 Answer by wizard for What is the best image manipulation library? wizard 2008-10-01T18:32:30Z 2008-10-01T18:32:30Z <p>While I love imageMagick it's been usurped by a fork called <a href="http://www.graphicsmagick.org/" rel="nofollow">GraphicsMagic</a> which is a multi threaded and signaficantly faster. It's not as popular but IIRC it's currently in use in production for livejournal or one of the other large blogging sites. </p> <p>I also know ubuntu has a compatibility package that offers a drop in command line replacement of imagemagic with graphicsmagick.</p> http://stackoverflow.com/questions/60724/paypal-versus-amazon-honor-system/133624#133624 2 Answer by wizard for PayPal versus Amazon Honor System wizard 2008-09-25T14:20:27Z 2008-09-25T14:20:27Z <p>I've used both, paypal is much easier. Amazon seems to require amazon accounts which should be unnecessary. Payal also offers for a fee the ability to use their api for credit card transactions so you can hide the fact it's paypal completely. At that point you should also consider Authorize.net and their competitors. </p> <p>I use an invoicing system called freshbooks which hooks up with a lot of these different payment systems. They have a good <a href="http://www.freshbooks.com/blog/2007/10/23/accepting-online-payments-a-how-to-guide/" rel="nofollow">overview on their blog</a>. </p> http://stackoverflow.com/questions/133458/best-dns-with-api-access 0 Best DNS with API access. wizard 2008-09-25T13:49:33Z 2008-09-25T14:17:47Z <p>I saw this over on slashdot and realized if I could program in dns control into some of my apps it would make life a lot easier. <a href="http://ask.slashdot.org/comments.pl?sid=975011&amp;cid=25146235" rel="nofollow">Someone over there</a> recommended <a href="http://dynect.com/features/api.html" rel="nofollow">dynect</a> which apparently had a wonderful api. Unfortunately not a lot else was recomended. I don't know anything about managing dns servers I mostly work with the lamp stack, so on linux I understand bind is the way to go but other then a basic setup I'd be lost. I'd rather outsource the details. </p> <p>What dns services that you have used, have API's and are easy to use without breaking the bank?</p> http://stackoverflow.com/questions/2648/what-php-framework-would-you-choose-for-a-new-application-and-why/28087#28087 5 Answer by wizard for What PHP framework would you choose for a new application and why? wizard 2008-08-26T13:53:39Z 2008-08-26T13:53:39Z <p><a href="http://www.cakephp.org" rel="nofollow">CakePHP</a> as well as being a wonderful MVC framework has a wonderful console. You can write scripts for cron to run or even interactive scripts for users to run in the command line that can use any model or controller you app can. You don't have to do any kludging of having a cron.php tied to a scheduled wget, or shafting the first person to visit your site after midnight with a long background process.</p> <p>I've used it to generate thumbnails on large images, clean up the db, archive old items, and expire things that need expiring. It's simple and fits with the mvc cleanly. Though I might call this feature model/console/controller.</p> http://stackoverflow.com/questions/1687445/find-gmail-url-ids-via-imap/1688011#1688011 Comment by wizard on Find Gmail url-IDs via IMAP wizard 2009-11-06T15:23:56Z 2009-11-06T15:23:56Z You would think that maybe all the mail items might have the same thread id. http://stackoverflow.com/questions/1552583/what-are-some-physical-mailing-services-with-apis-pdf-to-delivered-letter/1632958#1632958 Comment by wizard on What are some Physical Mailing Services with APIs? (pdf to delivered letter) wizard 2009-10-30T14:35:22Z 2009-10-30T14:35:22Z This is what I was looking for exactly! thanks! http://stackoverflow.com/questions/678525/what-payment-processing-frameworks-like-activemerchant-are-available-for-other Comment by wizard on What payment processing frameworks, like ActiveMerchant, are available for other languages? wizard 2009-10-30T14:27:20Z 2009-10-30T14:27:20Z Any hits for php? http://stackoverflow.com/questions/1590886/jquery-photo-comparison/1591469#1591469 Comment by wizard on Jquery photo comparison wizard 2009-10-20T14:25:44Z 2009-10-20T14:25:44Z This is it exactly! What's a better way to ask for it? I want to make the question clearer. http://stackoverflow.com/questions/1003751/how-do-i-use-microsoft-ad-and-php-single-sign-on-web-app/1570154#1570154 Comment by wizard on How do I use Microsoft AD and php single sign on web app? wizard 2009-10-16T20:43:25Z 2009-10-16T20:43:25Z This works, you get the bounty and I get stuck with apache. Some of the others might work too, but still nothing that doesn't require apache or iis. I hope to revisit this problem one day. http://stackoverflow.com/questions/1003751/how-do-i-use-microsoft-ad-and-php-single-sign-on-web-app/1579837#1579837 Comment by wizard on How do I use Microsoft AD and php single sign on web app? wizard 2009-10-16T20:36:17Z 2009-10-16T20:36:17Z Does this work for non iis servers? http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182139#182139 Comment by wizard on What are some funny loading statements to keep users amused? wizard 2009-10-13T19:10:15Z 2009-10-13T19:10:15Z The nice part of this one is that Mozy actually does reticulate splines when it does its change set calculations but nobody believes it. http://stackoverflow.com/questions/1003751/how-do-i-use-microsoft-ad-and-php-single-sign-on-web-app Comment by wizard on How do I use Microsoft AD and php single sign on web app? wizard 2009-10-13T19:00:03Z 2009-10-13T19:00:03Z Is there anything else I can add to improve this question? http://stackoverflow.com/questions/1552583/what-are-some-physical-mailing-services-with-apis-pdf-to-delivered-letter/1552681#1552681 Comment by wizard on What are some Physical Mailing Services with APIs? (pdf to delivered letter) wizard 2009-10-12T14:04:59Z 2009-10-12T14:04:59Z They're a little behind the times - judging by their expert &quot;ebilling&quot; solution, I may need to look elsewhere. <a href="http://www.billingpros.com/ViewEBill.htm" rel="nofollow">billingpros.com/ViewEBill.htm</a> http://stackoverflow.com/questions/1003751/how-do-i-use-microsoft-ad-and-php-single-sign-on-web-app/1552656#1552656 Comment by wizard on How do I use Microsoft AD and php single sign on web app? wizard 2009-10-12T13:56:25Z 2009-10-12T13:56:25Z There is some good info about redirecting to an iis server for authentication with a token, but it mainly pushes apache modules on linux. http://stackoverflow.com/questions/1003751/how-do-i-use-microsoft-ad-and-php-single-sign-on-web-app/1552656#1552656 Comment by wizard on How do I use Microsoft AD and php single sign on web app? wizard 2009-10-12T13:25:31Z 2009-10-12T13:25:31Z The link in question for the documentation is <a href="http://adldap.sourceforge.net/wiki/doku.php?id=seamless_authentication" rel="nofollow">adldap.sourceforge.net/wiki/&hellip;</a> I'll take a look http://stackoverflow.com/questions/1003751/how-do-i-use-microsoft-ad-and-php-single-sign-on-web-app Comment by wizard on How do I use Microsoft AD and php single sign on web app? wizard 2009-10-12T03:39:15Z 2009-10-12T03:39:15Z Yes it is internal http://stackoverflow.com/questions/1036454/what-are-the-diffrences-between-utf8generalci-and-utf8unicodeci/1036459#1036459 Comment by wizard on What are the diffrences between utf8_general_ci and utf8_unicode_ci? wizard 2009-06-24T05:15:33Z 2009-06-24T05:15:33Z Props for the list of languages http://stackoverflow.com/questions/813294/in-cakephp-how-can-i-do-a-find-with-conditions-on-a-realted-field/814686#814686 Comment by wizard on In cakephp how can I do a find with conditions on a realted field? wizard 2009-05-06T19:48:06Z 2009-05-06T19:48:06Z Works like a charm thanks! (sorry for the delay I got sick this weekend - but I'm finally back to work) http://stackoverflow.com/questions/659455/what-are-some-good-distributed-queue-managers-in-php/659608#659608 Comment by wizard on What are some good distributed queue managers in php? wizard 2009-03-18T20:05:02Z 2009-03-18T20:05:02Z I like the inittab approach - php tends to leak memory over time so having it die once a minute might not be a bad idea