Archive for the ‘Programming’ Category

Enabling Modules in Apache 2 under Ubuntu

Friday, January 23rd, 2009

The Apache enabled modules are found in "/etc/apache2/mods-enabled" as a set of .load and .conf files. If the modules you want are in the /etc/apache2/mods-available folder but not in "/etc/apache2/mods-enabled" folder, just copy the .load and .conf files over (note that the .conf file may not exist). If there is no ...

Interesting Perl Behavior

Friday, May 30th, 2008

I ran into this problem a while back and wanted to share it. It was a bit unintuitive but documentd so I guess I shouldn't be surprised by the results. Hopefully this will help someone else avoid this pitfall. It looks as if declaring a variable with the "my" statement but ...