3
votes
What PHP framework would you choose for a new application and why?
I think you're going to find that most people prefer the environment they work in most frequently. All of the major frameworks have something to recommend them otherwise they probably would have f …
5
votes
How do I create a node from a cron job in drupal?
The best practices method of making this happen is to utilize drupal_execute. drupal_execute will run standard validation and basic node operations so that things behave the way the system expects …
1
vote
PHP: How to return information to a waiting script and continue processing
You basically want to signal the end of 1 process (return to the original Requester.php) and spawn a new process (finish Provider.php). There is probably a more elegant way to pull this off, but I' …
3
votes
Cache Object in PHP without using serialize
As far as I'm aware, it's not possible to cache objects in PHP without serializing. In general, however, caching mechanisms (APC, Memcache, etc) are really trying to remove the db connection(s) mo …
1
vote
Drupal: Staying Organized with Module Changes
The way that Eaton describes above tends to be how we handle the situation for relatively large sites. If you keep a running log of patches, you can always re-create changes.
One of the …
