User William OConnor - csevb10 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T07:29:49Zhttp://stackoverflow.com/feeds/user/10084http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1274104/drupal-staying-organized-with-module-changes/1278945#12789451Answer by William OConnor - csevb10 for Drupal: Staying Organized with Module ChangesWilliam OConnor - csevb102009-08-14T16:50:30Z2009-08-14T16:50:30Z<p>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. </p>
<p>One of the aspects that seems to be missed in a lot of the "submit back to the community" posts is that just because you submit it back to the community doesn't mean it'll ever get applied. The way we handle this scenario is by keeping an explicit patch file with an indication of what D.O. issue it's related to. In the case where the patch is eventually integrated, you can remove your patch and pat yourself on the back. In the scenario where your patch is never accepted, at least you still have your log.</p>
http://stackoverflow.com/questions/1206874/broken-image-links-after-migrating-a-drupal-site-from-local-machine-to-live-serve/1274954#12749541Answer by William OConnor - csevb10 for Broken Image links after migrating a Drupal site from Local Machine to Live ServerWilliam OConnor - csevb102009-08-13T22:23:48Z2009-08-13T22:23:48Z<p>My guess is that the issue you're seeing is a result of not setting the filepath in the administration. If you go into the administration (admin/settings/file-system) and simply save the page, you'll define the value for the filepath (which should remove the issues). </p>
<p>You could also set all files to use the original default (or local) directory as well via that interface.</p>
<p>The issue, in case you're wondering, is that the variable_get call under the hood for the filepath is dynamic based on the sites directory that you're loading the settings.php file from. Once the value is set, it no longer resorts to the default setting and uses your value instead.</p>
<p>If you're physically moving the files from the relative location they're at locally vs on the server, then I'm not sure there's much of a great way around that issue.</p>
http://stackoverflow.com/questions/1265566/drupal-where-to-display-custom-search-results/1274920#12749201Answer by William OConnor - csevb10 for Drupal: where to display custom search resultsWilliam OConnor - csevb102009-08-13T22:17:01Z2009-08-13T22:17:01Z<p>You can probably handle this a number of ways but 2 that you might consider:<br />
1. (The way default search handles it) Add search params to the url so that they can be extracted and viewed on the appropriate page. Don't actually query the results until you've sent them to the page you've defined in your menu hook.<br />
2. Change the post location of your form and tell your form not to redirect. By default, your forms will post back to the same page and redirect at the end of the post. By using the following you should be able to affect that behavior: </p>
<pre><code> $form['#action'] = url('zoek');
$form['#redirect'] = FALSE;
</code></pre>
http://stackoverflow.com/questions/1253714/drupal-question-views-arguments-and-nodequeues/1274868#12748682Answer by William OConnor - csevb10 for Drupal question: Views, arguments and nodequeuesWilliam OConnor - csevb102009-08-13T22:01:22Z2009-08-13T22:01:22Z<p>More hacks:<br />
A work-around for the behavior your trying to accomplish might be to forgo using nodequeues at all. I'm not sure the entire impetus for using the nodequeues nor the importance of dates, but faced with similar issues before, I've been able to tackle it using the following:<br /></p>
<ol>
<li>Sticky</li>
<li>Modified dates</li>
</ol>
<p>If you sticky your super-cool dinosaurs, and modify the published dates of the elements so that they match your order, you could produce what you're looking for in a single view. It's sorta hokey, and it's predicated on not really caring about publishing dates (something that always depends on situation) nor having a more pressing reason for using a nodequeue. That said, if you don't need the nodequeue or the dates, it's a workable solution.</p>
<p>The 2-view solution by Jeremy should be workable, too, and I'd say that's another common way to handle the given scenario.</p>
http://stackoverflow.com/questions/1190662/cache-object-in-php-without-using-serialize/1190847#11908473Answer by William OConnor - csevb10 for Cache Object in PHP without using serializeWilliam OConnor - csevb102009-07-27T21:51:46Z2009-07-27T21:51:46Z<p>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) more than improve performance (and thereby decrease the overall DB strain). This is <em>definitely</em> how memcache, et al are employed with regards to Drupal. In other words, the caching mechanisms should allow you to scale, though they may not particularly improve performance.<br />
Implementing a caching mechanism should allow you to more easily scale outward, even if the performance per machine is no better than before for a single connection. At a certain threshold, DB performance will degrade sharply, and the caching mechanisms should help alleviate that issue.</p>
http://stackoverflow.com/questions/122834/php-how-to-return-information-to-a-waiting-script-and-continue-processing/122997#1229971Answer by William OConnor - csevb10 for PHP: How to return information to a waiting script and continue processingWilliam OConnor - csevb102008-09-23T18:52:40Z2008-09-23T18:52:40Z<p>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've managed this a couple different ways. All of them basically result in exec-ing a command in order to shell off the second process.</p>
<p>adding the following "> /dev/null 2>&1 &" to the end of your command will allow it to run in the background without inhibiting the actual execution of your current script</p>
<p>Something like the following may work for you:<br />
exec("wget -O - \"$url\" > /dev/null 2>&1 &"); -- though you could do it as a command line php process as well.</p>
<p>You could also save the information that needs to be processed and handle the remaining processing on a cron job that re-creates the same sort of functionality without the need to exec</p>
http://stackoverflow.com/questions/95280/keeping-up-to-date1Keeping up to date?William OConnor - csevb102008-09-18T18:23:44Z2008-09-18T19:13:25Z
<p>What site or sites do you use to keep yourself up to date on the latest trends in development and/or to help continue to move forward your development as a programmer?</p>
<p>I'm particularly interested in answers relevant to web development, php, mysql, or Drupal, but general interest or best practices sites are also appreciated.</p>
http://stackoverflow.com/questions/63787/what-makes-drupal-better-different-from-joomla/95046#950463Answer by William OConnor - csevb10 for What makes Drupal better/different from JoomlaWilliam OConnor - csevb102008-09-18T18:03:19Z2008-09-18T18:03:19Z<p>Under the hood, Joomla runs on mostly an OO architecture, whereas Drupal is almost entirely procedural with OO paradigms. Joomla has no form builder (that I am aware of), so you are forced to hand-code entire blocks of html for the form, whereas, with Drupal, you create forms as structured arrays. In Joomla, creating administrative features and front end featured requires that you place files in both administrative directories and in front end directories or create an install file to correctly partition things for you. In Drupal, everything pertaining to a particular module is contained in 1 directory, and you control access and url structure.</p>
<p>In general, Joomla's admin GUI is considered prettier and more user-friendly than Drupal's, but Joomla is, in my opinion, a less intuitive system at the programming level and makes certain tasks more difficult than necessary. 2 areas where Drupal truly outshines Joomla in my opinion is in the ability to create various content types - with various fields - on the fly to easily segment data, and the ability to create pretty seo-friendly urls with path or, even better, with pathauto.</p>
<p>Bottom Line: Joomla tends to look pretty from an administration perspective, but Drupal tends to outperform Joomla and be a more easily customizable system to achieve many of the things you really want out of a CMS.</p>
http://stackoverflow.com/questions/88566/how-do-i-create-a-node-from-a-cron-job-in-drupal/90437#904375Answer by William OConnor - csevb10 for How do I create a node from a cron job in drupal?William OConnor - csevb102008-09-18T06:09:19Z2008-09-18T06:09:19Z<p>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. drupal_execute has its quirks and is slightly less intuitive than simply a node_save, but, in Drupal 6, you can utilize drupal_execute in the following fashion.</p>
<pre>
<code>
$form_id = 'xxxx_node_form'; // where xxxx is the node type
$form_state = array();
$form_state['values']['type'] = 'xxxx'; // same as above
$form_state['values']['title'] = 'My Node Title';
// ... repeat for all fields that you need to save
// this is required to get node form submits to work correctly
$form_state['submit_handlers'] = array('node_form_submit');
$node = new stdClass();
// I don't believe anything is required here, though
// fields did seem to be required in D5
drupal_execute($form_id, $form_state, $node);
</code>
</pre>
http://stackoverflow.com/questions/89672/how-do-you-remove-the-default-title-and-body-fields-in-a-cck-generated-drupal-con/90373#903732Answer by William OConnor - csevb10 for How do you remove the default title and body fields in a CCK generated Drupal content-type?William OConnor - csevb102008-09-18T05:51:42Z2008-09-18T05:51:42Z<p>If you're not a developer (or you want to shortcut the development process), another possible solution is to utilize the auto_nodetitle module. Auto nodetitle will let you create rules for generating the title of the node. These can be programmatic rules, tokens that are replaced, or simply static text. Worth a look if nothing else.</p>
http://stackoverflow.com/questions/35372/how-can-i-change-the-way-my-drupal-theme-displays-the-front-page/67345#673452Answer by William OConnor - csevb10 for How can I change the way my Drupal theme displays the front pageWilliam OConnor - csevb102008-09-15T21:49:13Z2008-09-15T21:49:13Z<p>The main css file that drives your content is the styles.css file located in your currently selected theme. In your case that means that most of your site styling is driven by this file: /aroda/roda/themes/garland/style.css with basic coloring effects handled by this file:
/aroda/roda/files/color/garland-d3985506/style.css</p>
<p>You're currently using Garland, the default Drupal theme included with the core download, so for best practices you shouldn't edit the included style.css file directly. Instead, you should, as Daniel James said, create a subdirectory in /sites/all called "themes".</p>
<p>If you're using Drupal 6, I'd follow Daniel James directions from there. If you're using Drupal 5, I'd go ahead and copy the garland directory into the themes directory and rename it for something specific to your site (aroda_v1) so you would have something like /sites/all/themes/aroda_v1 which would contain styles.css. At that point, you can edit the styles.css file directly to make any changes you see fit. Hope that helps!</p>
http://stackoverflow.com/questions/4164/what-is-a-good-barebones-cms-or-framework/67213#672131Answer by William OConnor - csevb10 for What is a good barebones CMS or framework?William OConnor - csevb102008-09-15T21:32:58Z2008-09-15T21:32:58Z<p>Drupal's include system should keep everything relatively lightweight as long as you only include what you need. Despite the fact that it comes with a smattering of modules, what you choose to enable is all that will be included at runtime. If you have to get under the hood and make modifications, I'm also a firm believer that Drupal is a more friendly and elegant system than Joomla. We use Drupal at my work-as much as a framework as a CMS-and it has proven pretty reliable in keeping development practices at a high level.</p>
http://stackoverflow.com/questions/2648/what-php-framework-would-you-choose-for-a-new-application-and-why/67116#671163Answer by William OConnor - csevb10 for What PHP framework would you choose for a new application and why?William OConnor - csevb102008-09-15T21:23:45Z2008-09-15T21:23:45Z<p>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 fallen by the wayside.</p>
<p>I'd recommend Drupal (it being what I'm used to) for the mass of contributed modules and out-of-the-box functionality. Drupal makes a lot of useful tasks easy that should be able to give you a site without a great deal of development effort. CakePHP is a decent choice as well if you are building from scratch, but I'm a fan of Drupal's modular architecture and built in functionality. I'd recommend against Joomla as a developer because I don't particularly care for their separation of code and display (or lack thereof in many cases) and the relative complexity of certain tasks-meaningful clean urls-compared with Drupal. </p>
<p>I'd also recommend against combining the frameworks for the most part because your PHP process can grow out of hand making it harder for you to handle a decent traffic load.</p>
<p>In the end, the choice is going to come down to preference, and I'd at least taste a couple before settling on a final choice. Figure out what seems right to you, learn the conventions and paradigms of the framework and stick to them, and you'll probably be happy.</p>
http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84629#84629Comment by William OConnor - csevb10 on What's your favorite "programmer" cartoon?William OConnor - csevb102008-09-18T00:19:53Z2008-09-18T00:19:53ZMy last name has an apostrophe in it. I feel like lil bobby tables half the time since 50% of what's written out there breaks on apostrophes.