Monthly Archives: March 2011

Refreshing jquery-ui tabs using php xajax calls

I have a jquery-ui tab displays information that can be edited using a xajax pop up dialog. After saving the dialog I wanted to “refresh” the current tab. This little bit of code in the server did the trick.   … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

Making textarea boxes expand on entry

If you have ever worked with web forms you know that editing a large amount of text can be painful when you can only see a few lines of text at a time. Firefox 4 has a nifty feature that … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

Configuring apache for server monitoring

We adjusted some of the apache config parameters to try and keep it from using up all the memory on the server today. We turned on apache monitoring through mod_monitor which makes the URL: http://domain.com/server-status Show some good stats on … Continue reading

Posted in Uncategorized | Leave a comment

Debugging Smarty — Printing array values

You can print a variable using this code in your template: {$row|@debug_print_var} Good for arrays to see what they contain.

Posted in Uncategorized | Leave a comment