Contact Menu

Search results for "how-to-set-apc"

Screen Shot 2013-01-16 at 4.19.03 PM

Auto Mailer Form with Validation and reCAPTCHA

…code, so you should be able to easily understand it. <?php // php-form-builder-class PFBC // set up name spaces for form, elements, and validation use PFBC\Form; use PFBC\Element; use PFBC\Validation;… (Search hits: 2 in body, 0 in title, 0 in categories, 0 in tags, 0 in other taxonomies, 0 in comments. Score: 92.12)

Continue Reading 2

Résumé

Chris Gilligan Web Developer, Information Architect, Web Server Administrator, Media Producer web • video • print chris@chrisgilligan.net chrisgilligan.com I design and produce information and communication media for university, corporate, small business, manufacturing and non-profit clients: web sites Information architecture and design for open source content management systems Front-end UI design, HTML, PHP, LESS Linux Apache/Nginx […]

Continue Reading
Screen Shot 2012-09-07 at 11.09.50 AM

Install phpMyAdmin with SSL on CentOS, Amazon Linux, RedHat (Apache or NginX)

…running SSL on your host. Otherwise, change the ForceSSL line in the config file provided below… Install phpMyAdmin from EPEL repository Uninstall current PMA: yum erase phpMyAdmin Set up EPEL… (Search hits: 1 in body, 0 in title, 0 in categories, 0 in tags, 0 in other taxonomies, 0 in comments. Score: 46.06)

Continue Reading 0
twitter_font-face

SSL and CloudFront CDN Support for WebFonts via .htaccess

…font/eot .eot AddType font/opentype .otf AddType font/x-woff .woff </IfModule> <FilesMatch “\.(svg|ttf|otf|eot|woff)$”> <IfModule mod_headers.c> Header set Access-Control-Allow-Origin “fonts.googleapis.com,{{yourdistro69}}.cloudfront.net” </IfModule> </FilesMatch> # END CDN Cross-Site for Webfonts Yay! Delicious webfonts, even on… (Search hits: 1 in body, 0 in title, 0 in categories, 0 in tags, 0 in other taxonomies, 0 in comments. Score: 46.06)

Continue Reading 2
chmod-linux-1

Recursive chmod Tricks

Recursively chmod only directories find . -type d -exec chmod 755 {} \; Similarly, recursively set the execute bit on every directory chmod -R a+X * The +X flag sets… (Search hits: 1 in body, 0 in title, 0 in categories, 0 in tags, 0 in other taxonomies, 0 in comments. Score: 46.06)

Continue Reading 8