User Alister Bulman - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T02:38:38Z http://stackoverflow.com/feeds/user/6216 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1826798/master-slave-switch-in-the-zend-framework-application-layer/1828824#1828824 0 Answer by Alister Bulman for Master / Slave switch in the Zend Framework application layer Alister Bulman 2009-12-01T20:50:59Z 2009-12-01T20:50:59Z <p>How about something like a base class that you extend which performs the startup?</p> <pre><code>class My_Db_Table extends Zend_Db_Table { function init() { if (....) { // set the default adaptor to the write-DB-master } parent::init(); } } // all your models then extend My_Db_Table instead of Zend_Db_Table </code></pre> http://stackoverflow.com/questions/526487/queuing-systems-what-is-a-good-way-to-start-up-multiple-workers 0 Queuing systems - what is a good way to start up multiple workers? Alister Bulman 2009-02-08T21:51:50Z 2009-12-01T17:47:16Z <ul> <li>How have you set-up one or more worker scripts for queue-oriented systems?</li> <li>How do you arrange to startup - and restart if necessary - worker scripts as required? (I'm thinking about such tools as init.d/, Ruby-based 'god', DJB's Daemontools, etc, etc)</li> </ul> <p>I'm developing an asynchronous queue/worker system, in this case using PHP &amp; <a href="http://xph.us/software/beanstalkd/" rel="nofollow">BeanstalkdD</a> (though the actual language and daemon isn't important). The tasks themselves are not too hard - encoding an array with the commands and parameters into JSON for transport through the Beanstalkd daemon, picking them up in a worker script to action them as required.</p> <p>There are a number of other similar queue/worker setups out there, such as <a href="http://rubyforge.org/projects/starling/" rel="nofollow">Starling</a>, <a href="http://www.danga.com/gearman/" rel="nofollow">Gearman</a>, <a href="http://aws.amazon.com/sqs/" rel="nofollow">Amazon's SQS</a> and other more 'enterprise' oriented systems like IBM's MQ and RabbitMQ. If you run something like Gearman, or SQS - how do <em>you</em> start and control the worker pool? The questions is on the initial worker startup, and then being able to add additional extra workers, shutting them down at will (though I can send a message through the queue to shut them down - as long as some 'watcher' won't automatically restart them). This is not a PHP problem, it's about straight Unix processes of setting up one or more processes to run on startup, or adding more workers to the pool.</p> <p>A <a href="http://pastebin.ca/1331063" rel="nofollow">bash script to loop a script </a> is already in place - this calls the PHP script which then collects and runs tasks from the queue, occasionally exiting to be able to clean itself up (it can also pause a few seconds on failure, or via a planned event). This works fine, and building the worker processes on top of that won't be very hard at all.</p> <p>Getting a good worker controller system is about flexibility, starting one or two automatically on a machine start, and being able to add a couple more from the command line when the queue is busy, shutting down the extras when no longer required.</p> http://stackoverflow.com/questions/1803015/checking-the-status-of-my-php-beanstalkd-background-processes/1804643#1804643 0 Answer by Alister Bulman for Checking the status of my PHP beanstalkd background processes Alister Bulman 2009-11-26T16:30:50Z 2009-11-26T16:40:36Z <p>There probably is a plugin to Monit or Nagios to connect, run the stats and return if there are 'too many'. There isn't a 'protocol' written already for that, but t doesn't appear to be exceeding difficult to modify an existing text-based one (like nntp, or smtp) to do what you want. It does mean writing it in C though, by the looks of it.</p> <p>From a CLI-PHP script, I would go about it through one (or both) of two different methods.</p> <p>1/ drop a (low-ish) priority message into the queue, and make sure it comes back within a few seconds. Putting it into a dedicated queue and making sure there's nothing there before you put it in there would be a good addition as well. 2/ perform a 'stats' and see how many are waiting: 'current-jobs-ready'.</p> <p>To get the information back to a website (either way), you can write to a file, or into something like Memcached which gts read and acted upon.</p> http://stackoverflow.com/questions/1176726/connecting-thousands-of-clients-to-a-jabber-server-through-a-single-connection/1784418#1784418 0 Answer by Alister Bulman for Connecting thousands of clients to a Jabber server through a single connection Alister Bulman 2009-11-23T16:47:19Z 2009-11-23T16:47:19Z <p>There is already a <a href="http://www.igniterealtime.org/projects/openfire/connection%5Fmanager.jsp" rel="nofollow">connection manager for Openfire</a>, open-sourced (though it does need an external library as well that is not OSS). It connects to the clients and from there talks to the main server as a <a href="http://xmpp.org/extensions/xep-0114.html" rel="nofollow">jabber component</a>. It sounds like you want to be able to do a similar thing with your own system.</p> http://stackoverflow.com/questions/1709816/fowler-null-object-pattern-why-use-inheritance/1709984#1709984 1 Answer by Alister Bulman for Fowler Null Object Pattern: Why use inheritance? Alister Bulman 2009-11-10T18:06:16Z 2009-11-10T18:06:16Z <p>The problem with your second example, with a magic value, is that if your class has other items that are part of the class, you now have to insert checks against the magic to decide to return information, or some other appropriate information.</p> <p>With a Null class, the class returns what makes most sense without such checks being required. </p> <p>For example, the customer class might return the total dollar spend by that user, after interrogating the DB as appropriate. A NullCustomer would just be able to <code>return 0;</code>. With the magic value, it would either fetch information for a dummy user from the DB, or have to run another specific check before doing the sensible thing.</p> http://stackoverflow.com/questions/1707795/how-important-is-spriting-for-performance-on-a-high-traffic-website/1708326#1708326 1 Answer by Alister Bulman for How important is spriting for performance on a high traffic website? Alister Bulman 2009-11-10T14:21:06Z 2009-11-10T14:21:06Z <p>I did some numbers a few years ago for the smallest sized .GIF possible - 43 bytes. To send that 1x1 image, there was 246 bytes of HTTP protocol sent back with it, to say nothing of at least that much for the original request (more if there was also a cookie). There's also the TCP/IP packet overhead. Beyond all of that though is the round-trip time. The speed of light is still finite, and it needs to be factored in, especially for the overheads of multiple requests.</p> <p>The short version is, less items downloaded equals faster site. Even if the final sprite image is larger than all the images combined, you still win substantially by reducing the number of sets of overheads and round-trips.</p> http://stackoverflow.com/questions/1701584/proper-status-code-for-a-maintenance-page-redirect/1701614#1701614 1 Answer by Alister Bulman for Proper status code for a maintenance page redirect? Alister Bulman 2009-11-09T15:07:50Z 2009-11-09T15:07:50Z <p><a href="http://en.wikipedia.org/wiki/HTTP%5F302" rel="nofollow">302 Found</a> would probably be the classic way - not a permanent redirect. You want it to be temporary though, so when the spider came back, it would try it again, but which time, it should be back up. A 301 would indicate to not go to the original. </p> <p>The <a href="http://en.wikipedia.org/wiki/HTTP%5F503#5xx%5FServer%5FError" rel="nofollow">500 series</a> are errors, not what you want to indicate.</p> http://stackoverflow.com/questions/1692346/adding-authentication-to-beanstalkd-from-python-or-any-unix-client/1692834#1692834 1 Answer by Alister Bulman for Adding authentication to beanstalkd from Python (or any UNIX) client Alister Bulman 2009-11-07T12:11:25Z 2009-11-07T12:11:25Z <p>I have to disagree about the practice of just having connections being held open indefinitely, since I use BeanstalkD from a web-scripting language (php) for various events. The overhead of opening a secure connection would be something I would have to think very carefully over.</p> <p>Like Memcached, beanstalkd is designed for use in a trusted environment - behind the firewall. If you don't control the entire private network, then limiting access to a set of machines (by IP address) would be a typical way of controlling that. Putting in a security hash to then throw away invalid jobs is not difficult, and has little work or overhead to check, but wouldn't stop a flood of jobs being sent. </p> <p>The questions to ask are 'How often are your machines likely to be added to (at random IP addresses outside of a given range), and how likely is a third party that is also on the local network would want to inject random jobs to your queues?'. The first part is about how much work is it to firewall the machines off, the latter is about do you need to anyway?</p> http://stackoverflow.com/questions/1688711/can-we-alias-a-function-in-php/1688742#1688742 1 Answer by Alister Bulman for Can we alias a function in php ? Alister Bulman 2009-11-06T16:34:28Z 2009-11-06T16:51:47Z <p>No, there's no quick way to do so - at least for anything before PHP v5.3, and it's not a particularly good idea to do so either. It simply complicates matters. </p> http://stackoverflow.com/questions/1681174/besides-treat-warnings-as-errors-and-fixing-memory-leaks-what-other-ideas-shou/1681771#1681771 2 Answer by Alister Bulman for Besides "treat warnings as errors" and fixing memory leaks, what other ideas should we implement as part of our coding standards? Alister Bulman 2009-11-05T16:26:22Z 2009-11-05T16:26:22Z <p>Don't write your own standards from scratch.</p> <p>Chances are there are several out there that define what you want already, and are more complete than you could come up with on your own. That said, don't worry too much if you don't agree 100% with it on minor matters, you can swap in some parts of others, or call some infraction of it an warning rather than an error - depending on your own needs. (for example, some standards would throw a warning if the length of a line is more than 80 characters long, I prefer no more than 120 as a hard limit, but would make sure there was a good reason - readability &amp; clarity for example - if there was > 80).</p> <p>Also, do try to find automated methods of checking your code against the standard - including your own minor changes as required.</p> http://stackoverflow.com/questions/1677042/html-select-only-returning-first-option/1677060#1677060 1 Answer by Alister Bulman for HTML Select only returning First Option Alister Bulman 2009-11-04T22:17:19Z 2009-11-04T22:49:47Z <p>Ah, I have just managed to decode what you are actually asking - as the question was quite unclear.</p> <p>By first option, you mean the first block of HTML (which has been repeated, with a different name/id later in the page), and not the first <code>&lt;option&gt;</code> tag. </p> <p>I've actually written a test program though, with and without the trailing /, and with default options (like <code>&lt;option selected="selected" value="4"&gt;AZ&lt;/option&gt;</code>), and I still can't get it to only return the choice from the first select tag. When I <code>print_r($_POST)</code>, they return separate IDs.</p> <p>Therefore, I believe your problem may lay elsewhere.</p> <p><hr></p> <p><a href="http://uk2.php.net/manual/en/faq.html.php#faq.html.select-multiple" rel="nofollow">How do I get all the results from a select multiple HTML tag? </a></p> <pre><code>&lt;select name="var[]" multiple="yes"&gt; ..... &lt;/select&gt; </code></pre> http://stackoverflow.com/questions/760001/which-users-are-currently-connected-to-an-openfire-jabber-server 0 Which users are currently connected to an Openfire Jabber server? Alister Bulman 2009-04-17T11:03:35Z 2009-11-04T18:11:00Z <p>I have got an Openfire Jabber server with in excess of 75,000 users listed. Of those, 150 or more can be online at any one time.</p> <p>Is there anywhere that I can collect the JIDs (usernames) of the currently logged in users? I have full database access to the underlying data, but the server does not appear to write the current status back to the DB. Because of the number of users, rosters are not being used.</p> <p>A very useful set of data being returned would be from a simple (password protected) webpage with one JID per line, optionally with the login time, and maybe also the last time that account performed an action [like send a message]. The latter two are not as essential, but would be useful if the data is available, as well as any other information that was available regarding the user session.</p> http://stackoverflow.com/questions/1670003/framework-comparison-and-overhead/1673616#1673616 1 Answer by Alister Bulman for Framework Comparison and Overhead Alister Bulman 2009-11-04T12:58:17Z 2009-11-04T12:58:17Z <p>There is only one thing to do first if you think that a ZF-based app is slow. Measure it. Various tools exist that will take the profiling output of <a href="http://xdebug.org/" rel="nofollow">Xdebug</a> to show you which parts are slowing down the process, then you can make some moves towards optimising those parts (such as a lighter weight initialisation, and/or some caching). One good resource is the the Zend Framework book at <a href="http://survivethedeepend.com" rel="nofollow">survivethedeepend.com</a>, "<a href="http://www.survivethedeepend.com/zendframeworkbook/en/1.0/performance.optimisation.for.zend.framework.applications" rel="nofollow">performance optimisation for ZF Apps</a>".</p> http://stackoverflow.com/questions/984748/how-to-make-a-linux-service-that-accepts-commands-via-web-server/1640161#1640161 1 Answer by Alister Bulman for How to make a Linux Service that Accepts Commands via Web Server? Alister Bulman 2009-10-28T21:16:21Z 2009-10-28T21:16:21Z <p>As @shodanex suggests, using Beanstalkd would be an excellent way to disconnect a web-front-end from a running-as-root command line worker. It could trivially be set to only run exactly what was required.</p> <p>To run the worker, <a href="http://pear.php.net/package/System%5FDaemon" rel="nofollow">Pear's System_Daemon</a> can generate and run a daemon-running script, with start/stop/restart.</p> http://stackoverflow.com/questions/1621220/why-do-include-lines-not-end-with-a-semicolon/1621226#1621226 9 Answer by Alister Bulman for why do include lines not end with a semicolon ? Alister Bulman 2009-10-25T15:48:54Z 2009-10-25T15:48:54Z <p>lines starting with a # aren't part of the C language itself, they are instructions for a pre-processor. When it was first designed, semi-colons just wasn't required.</p> http://stackoverflow.com/questions/1587452/php-using-apc-as-general-cache-xcache-as-opcache-possible/1616329#1616329 0 Answer by Alister Bulman for PHP: Using APC as general cache, XCache as opcache, possible? Alister Bulman 2009-10-23T22:54:37Z 2009-10-23T22:54:37Z <p>Having the two caches trying to run at the same time would not be possible. They would be attempting to hook into the same system. Choose one.</p> <p>There now follows the standard plug for the other technology that you don't use:</p> <p>Technically, and speed-wise, there's not much in it, though I have seen reports that APC does better at including files and particularly with such techniques as autoloading (eg, with Zend_loader). APC does have easy of access (pecl install...), and it's a 'more official' PHP project then the other caching system.</p> <p>I've used APC to great affect, for that standard opcodes and also for a significant number of variables, with TTLs ranging from 30 seconds (how many people online right now), to 24hrs, or more (database table meta-information).</p> http://stackoverflow.com/questions/1615682/php-asynchronous-processing-with-beanstalkd-do-you-recommend-it/1616238#1616238 1 Answer by Alister Bulman for PHP asynchronous processing with beanstalkd. Do you recommend it? Alister Bulman 2009-10-23T22:23:25Z 2009-10-23T22:23:25Z <p>I've used Beanstalk in production, and also while testing threw millions of simple messages through it - generally en-mass, but the production system had over a 100,000 tasks put through it till I left the company. It may still be running, in which case it would be tens of millions be now - or more, if they had extended it's use further, as I had planned.</p> <p>I would recommend it, as it's got a number of excellent points. </p> <ul> <li>named tubes can be used to limit the jobs being delivered. I watch a tube based on the machine hostname, which limited where a worker would be running - useful for uploaded files which are only stored on a particular server).</li> <li>The delays can be used to set future events</li> <li>Latest versions of the server also support bin-logging, giving persistence, though it has never crashed on me.</li> </ul> <p>My first task I put through it was image processing - and doing that work outside of an Apache/mod_php process allowed me to resize larger images without affecting the server (blowing out the Webserver). With a lightly loaded queue, it had created the thumbnails before the page had refreshed after the upload.</p> <p>There are many other potential tasks that could also be processed asynchronously.</p> <p>The only problems I have ever had was making sure that the workers completed without incident - or that any errors were caught so that the job could be 'bury'ed, thus ensuring that the job was not put back into the queue to be run again (and have the worker crash again).</p> <p>Having the workers also restart to clear memory can also be useful as PHP is less well suited to long-running processes.</p> http://stackoverflow.com/questions/1571637/trac-suggested-permission-levels-for-developers-managers 1 Trac - suggested permission levels for developers & managers Alister Bulman 2009-10-15T11:00:45Z 2009-10-22T20:56:29Z <p>I'm a fan of <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a>, and of course when I'm just using it for my own, lone, projects I can just give myself full admin rights.</p> <p>When there are other developers involved, or a not-very-technical manager (or, for that matter someone that is a designer rather than hard-code developer), that needs to be able to keep up with what is happening - and do things like add/update tickets, but not potentially break anything, then the fine-grained nature of the permissions gets to be a little more complicated as to what is required for someone.</p> <p>What permissions do you use for those groups of people (and other similar ones)?</p> http://stackoverflow.com/questions/1593834/phpunit-testing-for-multiple-exceptions/1600307#1600307 1 Answer by Alister Bulman for PHPUnit testing for multiple exceptions Alister Bulman 2009-10-21T11:43:14Z 2009-10-21T11:43:14Z <p>As exceptions are such big events in the program flow, testing multiple ones in a single test is problematic.</p> <p>The easiest thing is is to simply split it into two tests - the first requires an exception to be able to pass, the second simply runs, and would fail it it did throw one. You could add some other tests in the second if you wanted (confirming a return value maybe), but I'd be inclined to make sure it still did just the one essential thing, according to the naming of it.</p> <pre><code>/** * @expectedException Exception */ public function testBadFooThrowsException() { // optional, can also do it from the '@expectedException x' //$this-&gt;setExpectedException('Exception'); foo(-1); //throws exception -- good. } public function testFooDoesNotThrowException() { foo(1); //does not throw exception } </code></pre> http://stackoverflow.com/questions/1588378/android-contacts-extraction/1588585#1588585 1 Answer by Alister Bulman for Android contacts extraction Alister Bulman 2009-10-19T13:08:17Z 2009-10-19T13:08:17Z <p>Android contacts are synced with the Gmail contacts, and for those, there is an API. Conversion from the data you get back from there, is another matter.</p> http://stackoverflow.com/questions/1585063/how-to-retrieve-the-zendconfig-used-by-zendapplication/1585428#1585428 1 Answer by Alister Bulman for How to retrieve the Zend_Config used by Zend_Application? Alister Bulman 2009-10-18T16:58:02Z 2009-10-18T16:58:02Z <p>Zend_Application only uses (and stores) the config.ini file, as given in the second parameter of the call to '<code>new Zend_Application(ENV, '.../app.ini');</code>' as an array. To be able to store it as an object, you'll have to re-parse it.</p> <p>You can add a function into the bootstrap to do so, and store it into the registry,</p> <pre><code>&lt;?php // in 'class Bootstrap extends Zend_Application_Bootstrap_Bootstrap' protected function _initConfig() { // config //#Zend_Registry::set('config', $this-&gt;getOptions()); // as an array $ZFOptions = array(); // could be: 'allowModifications'=&gt;true $section = 'production'; // or from the environment $configFilename = APPLICATION_PATH .'/configs/application.ini'; $config = new Zend_Config_Ini($configFilename, $section, $ZFOptions); Zend_Registry::set('config', $config); // as an object } </code></pre> http://stackoverflow.com/questions/114735/potential-other-uses-of-a-jabber-server 6 Potential other uses of a jabber server Alister Bulman 2008-09-22T13:03:28Z 2009-09-28T19:28:40Z <p>Beside the obvious person to person instant message chat, What else have you used a Jabber server's functionality to enable?</p> <p>Edit: links to working code to really show it off are particularly useful - and will be more likely to be voted up.</p> http://stackoverflow.com/questions/1390211/how-to-integrate-zend-framework-on-my-old-php-non-centralized-site/1390370#1390370 2 Answer by Alister Bulman for How to integrate Zend Framework on my old PHP non centralized site? Alister Bulman 2009-09-07T17:49:31Z 2009-09-07T17:49:31Z <p>It's entirely possible to write ZF-based pages one at a time for new functionality, or to replace old parts of the site.</p> <p>You pretty much write new pages as required, but rather than feeding through index.php, as normal, you you mod_rewrite to direct specific URLS to a new zf-based page:</p> <pre><code>RewriteEngine on RewriteBase / # Not if there is a file or directory that matches RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # a new, clean URL can go to an old page RewriteRule ^online /online_now.php # other pages go to a ZF-frontcontroller, in zf.php RewriteRule ^about/ /zf.php [L] RewriteRule ^account /zf.php [L] RewriteRule ^data /zf.php [L] RewriteRule ^faq /zf.php [L] </code></pre> http://stackoverflow.com/questions/683215/php-5-on-redhat-enterprise-linux-5 1 Php 5 on RedHat Enterprise Linux 5 Alister Bulman 2009-03-25T20:02:16Z 2009-08-09T14:50:07Z <p>By default, RHEL5.x64 comes with 5.1.6 - pretty old. I'm looking for a more up to date version, 5.2.8, or even the latest 5.2.9 (as of March 2009). Ideally, a Yum/RPM-based solution, for transparent upgrades (when I plan).</p> <p>How do you upgrade the default for an up-to-date version?</p> http://stackoverflow.com/questions/1196821/in-php-what-is-the-right-approach-for-loading-configuration-parameters-into-appli/1196950#1196950 2 Answer by Alister Bulman for In PHP what is the right approach for loading configuration parameters into application variables? Alister Bulman 2009-07-28T21:50:50Z 2009-07-28T21:50:50Z <p>I like using the <code>Zend_Config_Ini</code> class. Creating separate sections that can extend others is easy, and with <code>Zend_Cache</code> with <code>Zend_Cache_Frontend_File</code> (to check for updates to the .ini file) and a backend (I use APC) that is particularly fast to access to avoid any overhead of re-parsing.</p> <pre><code>; Production site configuration data [production] webhost = www.example.com database.adapter = pdo_mysql database.params.host = db.example.com database.params.username = dbuser database.params.password = secret database.params.dbname = dbname ; Staging site configuration data inherits from production and ; overrides values as necessary [staging : production] ; 'database.adapter' is inherited ; others are overridden database.params.host = dev.example.com database.params.username = devuser database.params.password = devsecret </code></pre> http://stackoverflow.com/questions/1173157/private-messaging-system-with-threading-replies/1176620#1176620 0 Answer by Alister Bulman for Private Messaging System With Threading/Replies Alister Bulman 2009-07-24T09:33:40Z 2009-07-24T09:33:40Z <p>In plain PHP/Mysql calls, <a href="http://php.net/manual/en/function.mysql-insert-id.php" rel="nofollow"><code>mysql_insert_id()</code></a> returns the auto-incremented value from the previous INSERT operation</p> <p>So, you insert the message, collect the newly generated ID, and put that value into the other table.</p> http://stackoverflow.com/questions/1176497/limit-execution-time-of-an-function-or-command-php/1176551#1176551 1 Answer by Alister Bulman for Limit execution time of an function or command PHP Alister Bulman 2009-07-24T09:13:31Z 2009-07-24T09:13:31Z <p>set_time_limit() does run globally, but it can be reset locally.</p> <blockquote> <p>Set the number of seconds a script is allowed to run. If this is reached, the script returns a fatal error. The default limit is 30 seconds or, if it exists, the max_execution_time value defined in the php.ini.</p> <p>When called, <code>set_time_limit(</code>) restarts the timeout counter from zero. In other words, if the timeout is the default 30 seconds, and 25 seconds into script execution a call such as set_time_limit(20) is made, the script will run for a total of 45 seconds before timing out.</p> </blockquote> <p>I've not tested it, but you may be able to set it locally, resetting when you leave the </p> <pre><code>&lt;?php set_time_limit(0); // global setting function doStuff() { set_time_limit(10); // limit this function // stuff set_time_limit(10); // give ourselves another 10 seconds if we want // stuff set_time_limit(0); // the rest of the file can run forever } // .... sleep(900); // .... doStuff(); // only has 10 secs to run // .... sleep(900); // .... </code></pre> <p><a href="http://php.net/manual/en/function.set-time-limit.php" rel="nofollow"><code>set_time_limit</code>()</a> ... <em>Any time spent on activity that happens outside the execution of the script such as system calls using system(), stream operations, database queries, etc. is not included when determining the maximum time that the script has been running. This is not true on Windows where the measured time is real.</em> </p> http://stackoverflow.com/questions/1006891/how-feasible-is-a-daemon-written-in-php-using-ignoreuser-abort-and-settimelim/1008736#1008736 2 Answer by Alister Bulman for How feasible is a daemon written in PHP, using ignore_user abort and set_time_limit(0) Alister Bulman 2009-06-17T18:20:00Z 2009-07-24T09:06:19Z <p>I would tend to put the loop into a BASH script, so that any PHP resources are regularly cleaned up.</p> <pre><code>#!/bin/bash clear date php -f doChecksAndAct.php sleep 100 # rerun myself exec $0 </code></pre> <p>If you were doing any particularly heavy-to-setup tasks in the PHP script, you could also put a small(ish) loop in there (say 50-100 iterations, if they were not pausing multiple seconds between them) to reduce the total overhead time between runs.</p> <p><strong>Addition:</strong> I've blogged on a Bash/PHP (or other language) pairing so that you can very easily loop in the PHP script, then exit to restart immediately, or pause for a while - <a href="http://topbit.co.uk/serendipity/archives/22-Doing-the-work-elsewhere-Sidebar-running-the-worker.html" rel="nofollow">Doing the work elsewhere -- Sidebar running the worker</a>.</p> http://stackoverflow.com/questions/1134459/problem-with-an-icalendar-feed/1139185#1139185 0 Answer by Alister Bulman for Problem with an iCalendar Feed Alister Bulman 2009-07-16T17:45:11Z 2009-07-16T17:45:11Z <p>I put it into a <a href="http://severinghaus.org/projects/icv/?url=www.wheresthegeeks.co.uk%2Fcalendar%2Fical" rel="nofollow">calendar validation script</a> and that says no problem. It initially failed when I put the same URL into Gcal, but then when I also added the leading 'http://', it was fine. It looks like Google Calendar requires the full schema-specified URL.</p> http://stackoverflow.com/questions/1138999/decoding-query-strings-in-php/1139032#1139032 2 Answer by Alister Bulman for Decoding query strings in PHP Alister Bulman 2009-07-16T17:21:17Z 2009-07-16T17:28:39Z <p>There is a function that does it - <a href="http://php.net/parse%5Fstr" rel="nofollow">http://php.net/parse_str</a>. Since PHP has to do this for itself, there's no reason not to also open it up for use in the API.</p> <blockquote> <p>Parses the string into variables void parse_str ( string $str [, array &amp;$arr])</p> <p>Parses str as if it were the query string passed via a URL and sets variables in the current scope.</p> </blockquote> <pre><code>&lt;?php $str = "first=value&amp;arr[]=foo+bar&amp;arr[]=baz"; parse_str($str, $output); echo $output['first']; // value echo $output['arr'][0]; // foo bar echo $output['arr'][1]; // baz </code></pre> http://stackoverflow.com/questions/526487/queuing-systems-what-is-a-good-way-to-start-up-multiple-workers/1827782#1827782 Comment by Alister Bulman on Queuing systems - what is a good way to start up multiple workers? Alister Bulman 2009-12-01T20:48:32Z 2009-12-01T20:48:32Z It's a solid method to start the workers. <a href="http://pear.php.net/package/System_Daemon" rel="nofollow">pear.php.net/package/System_Daemon</a> may also be helpful in generating the init.d scripts. http://stackoverflow.com/questions/1803015/checking-the-status-of-my-php-beanstalkd-background-processes/1804643#1804643 Comment by Alister Bulman on Checking the status of my PHP beanstalkd background processes Alister Bulman 2009-11-27T13:19:10Z 2009-11-27T13:19:10Z If you want to make sure the worker keeps running I would tend to have the background process put a note into a cache (eg, memcached) as to results it produces and its own status. It could put an short-life message into memcached with a time it last ran for example. To make sure it keeps running, I wrap the worker in something like the bash script at <a href="http://www.topbit.co.uk/serendipity/archives/22-Doing-the-work-elsewhere-Sidebar-running-the-worker.html" rel="nofollow">topbit.co.uk/serendipity/archives/&hellip;</a> http://stackoverflow.com/questions/619595/apache-and-the-c10k/635382#635382 Comment by Alister Bulman on Apache and the c10k. Alister Bulman 2009-11-10T18:19:32Z 2009-11-10T18:19:32Z Good information, and I like thttpd a lot (I've used it a couple of times in the last 8 years). Important to note though, that the table of info you list is more than ten years old. http://stackoverflow.com/questions/760001/which-users-are-currently-connected-to-an-openfire-jabber-server/1675646#1675646 Comment by Alister Bulman on Which users are currently connected to an Openfire Jabber server? Alister Bulman 2009-11-07T12:14:49Z 2009-11-07T12:14:49Z That would be a lot of pages to scrape though. I'm hoping for some DB-access, or maybe connection to the server to retrieve a big list of currently logged in JIDs, maybe with the additional info as above. http://stackoverflow.com/questions/1665061/transfer-mysql-to-sqlite/1684191#1684191 Comment by Alister Bulman on Transfer MySQL to SQLite Alister Bulman 2009-11-05T22:54:10Z 2009-11-05T22:54:10Z it's a slightly different dialect of SQL however, particularly in regard to table creation schemas. http://stackoverflow.com/questions/1680939/how-can-i-access-the-configuration-of-a-zend-framework-application-from-a-control/1681257#1681257 Comment by Alister Bulman on How can I access the configuration of a Zend Framework application from a controller? Alister Bulman 2009-11-05T15:42:14Z 2009-11-05T15:42:14Z That will take a little work to re-parse the array into an object. If you prefer having the config as an array, it's just &quot;Zend_Registry::set('config', $this-&gt;getOptions());&quot; though you'll have to get it out into a variable before getting the value. http://stackoverflow.com/questions/1677042/html-select-only-returning-first-option Comment by Alister Bulman on HTML Select only returning First Option Alister Bulman 2009-11-04T22:20:43Z 2009-11-04T22:20:43Z The trailing / on the first &quot;&lt;select /&gt;&quot; is XHTML to close the tag (useful mainly just for '&lt;br/&gt;' and '&lt;hr/&gt;') - therefore, there are no select options listed, just bad XHTML for it. http://stackoverflow.com/questions/1670003/framework-comparison-and-overhead/1670320#1670320 Comment by Alister Bulman on Framework Comparison and Overhead Alister Bulman 2009-11-04T12:50:34Z 2009-11-04T12:50:34Z &quot;We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil.&quot; Donald Knuth. http://stackoverflow.com/questions/1528717/phpunit-requireonce-error/1528726#1528726 Comment by Alister Bulman on phpunit require_once() error Alister Bulman 2009-10-21T11:54:58Z 2009-10-21T11:54:58Z /usr/bin is where executables live, not libraries. http://stackoverflow.com/questions/901356/php-apc-educate-me/901393#901393 Comment by Alister Bulman on PHP APC, educate me Alister Bulman 2009-10-21T10:10:02Z 2009-10-21T10:10:02Z it's really just a matter of setting how much space it will use, and dropping it into the server. For most significant websites, it's a no-brainer to want to have. I've seen a machine go from a a load-avg of 1.0+ to &lt;0.3 when I installed it on a server, because there had been so much redundant compilation going on for every page-load. http://stackoverflow.com/questions/901356/php-apc-educate-me/901395#901395 Comment by Alister Bulman on PHP APC, educate me Alister Bulman 2009-10-21T10:05:47Z 2009-10-21T10:05:47Z How much psace it requires depends on how big your code is. For a good sized one, I'd start at 64MB. I tend to leave plenty of headroom as well 2.5-3x more than the code actually ends up taking, so I can put another version in beside it. For a busy site, apc.stat=0 is useful, but you can also clear the cache from a function call, rather than restarting Apache. http://stackoverflow.com/questions/1526244/are-there-any-recent-php-manuals-the-chms-with-the-user-contributed-notes-out-th/1526324#1526324 Comment by Alister Bulman on Are there any recent PHP Manuals, the CHMs with the user-contributed notes out there? Alister Bulman 2009-10-06T15:31:52Z 2009-10-06T15:31:52Z there's also an official how-to page on PHP.net - <a href="http://php.net/mirroring.php" rel="nofollow">php.net/mirroring.php</a> http://stackoverflow.com/questions/991434/security-risk-in-storing-sql-login-info-in-php-code/991474#991474 Comment by Alister Bulman on Security risk in storing SQL login info in PHP code? Alister Bulman 2009-09-17T20:38:29Z 2009-09-17T20:38:29Z ... and so only if you give your money to a moronic webhosting company. http://stackoverflow.com/questions/1201685/how-would-you-add-salt-to-your-existing-password-hashes/1201712#1201712 Comment by Alister Bulman on How would you add salt to your existing password hashes? Alister Bulman 2009-07-30T16:05:34Z 2009-07-30T16:05:34Z or have the column as hash_type(nosalt, md5, sha1, sha512). If it's 'nosalt', do one thing, if its others, there's a salt column used and stored elsewhere in the row to use in the comparison - with the appropriate hash function when you come to upgrade to it (as MD5 is already seeming weaker). http://stackoverflow.com/questions/1176497/limit-execution-time-of-an-function-or-command-php/1176551#1176551 Comment by Alister Bulman on Limit execution time of an function or command PHP Alister Bulman 2009-07-24T09:39:38Z 2009-07-24T09:39:38Z the php.ini config, max_input_time, is how long a script takes to start-up, parsing input data, like POST, GET and file uploads. These tasks must completed before any of your PHP code is run.