Theresa Arzadon-Labajo
Tech Stuff >> Drupal
Drupal URL Redirects
It's been a few years since we migrated our site to Drupal, but I recently ran into some websites that were referencing our old directory structure.  I thought URL Aliases would take care of this, but it had unexpected results.
Read More
Drush doesn't work after upgrading to 6.22
Fatal error: Call to undefined function user_load() in /usr/local/bin/drush/drush.php on line 204

Read More
Drupal Hit Counter for Views not Nodes
Adding a hit counter (page views) for Drupal nodes is easy, but allowing it to track a View is more difficult.  Especially when the link you are tracking goes to another view. Read More
Theming grouped multiple values in Views
When you check off "Group multiple values" in the Views field, it doesn't show up in the $row variable. Read More
How to extract link from Node:Link
Node:Link returns link in HTML code.  How do you get the link out? Read More
Tab key in Drupal WYSIWYG
When typing in Drupal's WYSIWYG editor (i.e. FCKeditor or TinyMCE), the tab key will be seen by the browser as a navigation tool and proceed to the next tab-stop which is outside of the textarea. Read More
Drupal Search Module errors with php includes
We have been experiencing intermittent Drupal White Screen of Death's when using the Search Module.  At first, we thought it was multiple search terms that were causing this. But, even single term searches would fail.  It seems that it depended on the word being search, but I couldn't make a correlation.

I looked in error_log and it was showing a 500 error.  php.log was showing "PHP Fatal error:  Cannot redeclare mymail() (previously declared..."

I renamed the function, but I got the same error again for the new function name.

Read More
Drush with PHP 5.1.6

Drush requires PHP 5.2.0 because of JSON



I tried to install and run Drupal Commandline (Drush) , but got the error:
 

Your PHP installation is too old. Drush requires at least PHP 5.2.0
 

According to: http://groups.drupal.org/node/20433, Drush does not actually *require* PHP 5.2.0, it just requires the JSON functionality for PHP.

Read More