firelitdesign.blogspot.com
Firelit Design: June 2012
http://firelitdesign.blogspot.com/2012_06_01_archive.html
Saturday, June 16, 2012. Installing Memcached on CentOS. I have a web server running CentOS and wanted to get some good caching going for PHP use. This is how I installed memcached. From the command line:. Install Pecl (if you don't yet have it, installing pear installs pecl. Install Pecl's Memcached package (for PHP). Install dependencies, as needed. Use a text editor to add "extension=memcache.so" to php.ini (may be in the /etc folder). And when you want some raw stats, you can get them via telnet:.
firelitdesign.blogspot.com
Firelit Design: September 2012
http://firelitdesign.blogspot.com/2012_09_01_archive.html
Thursday, September 20, 2012. MacBook Pro Retina and Linksys Routers. I have two Linksys wireless routers (WRT160N and E1200). One at an office, the other at home. I bought a MacBook Pro Retina a couple days ago (OS v10.8.1). I've now found that my new MBP doesn't play nice with Linksys. This doesn't happen at Starbucks or the Apple store (which I am pretty sure don't use Linksys routers). PS The routers do have the latest firmware. Subscribe to: Posts (Atom). MacBook Pro Retina and Linksys Routers.
firelitdesign.blogspot.com
Firelit Design: Using SQLite for Unit Testing in PHP
http://firelitdesign.blogspot.com/2013/05/using-sqlite-for-unit-testing-in-php.html
Monday, May 27, 2013. Using SQLite for Unit Testing in PHP. Unit testing is infamous when one attempts to test database-interacting classes. I noted that some had suggested using SQLite when running phpunit to test these sorts of classes. Been working for me, so I thought I'd jot it down here. First, make sure sqlite3 is installed. On Ubuntu you'd run the following at the command prompt (assuming this step is necessary, but now I'm not quite sure):. Sudo apt-get install sqlite3 libsqlite3-dev.
firelitdesign.blogspot.com
Firelit Design: Fixing InnoDB error "the age of the last checkpoint is..."
http://firelitdesign.blogspot.com/2014/06/fixing-innodb-error-age-of-last.html
Thursday, June 19, 2014. Fixing InnoDB error "the age of the last checkpoint is.". I recently switched a production database from MyISAM to InnoDB and I noticed the next day my logwatch email had a bunch of errors like this:. 140617 02:04:22] 140617 2:04:22 InnoDB: ERROR: the age of the last checkpoint is 9433709,. 140617 02:03:40] 140617 2:03:40 InnoDB: ERROR: the age of the last checkpoint is 9433931,. 140617 02:01:58] 140617 2:01:58 InnoDB: ERROR: the age of the last checkpoint is 9433673,. You may se...
firelitdesign.blogspot.com
Firelit Design: Yosemite and SSL Certificate Verification Failed with cURL
http://firelitdesign.blogspot.com/2014/11/yosemite-and-ssl-certificate.html
Wednesday, November 5, 2014. Yosemite and SSL Certificate Verification Failed with cURL. Let's say you're a developer, like myself, and you have just updated to Apple's latest operating system (Yosemite or 10.10) and all of a sudden the Twilio PHP SDK stops working. And, it gives you an error something like this:. SSL: certificate verification failed (result: 5). Check this out for all the details: http:/ sourceforge.net/p/curl/bugs/1404/. Subscribe to: Post Comments (Atom). Yosemite and SSL Certificate ...
firelitdesign.blogspot.com
Firelit Design: November 2014
http://firelitdesign.blogspot.com/2014_11_01_archive.html
Wednesday, November 5, 2014. Yosemite and SSL Certificate Verification Failed with cURL. Let's say you're a developer, like myself, and you have just updated to Apple's latest operating system (Yosemite or 10.10) and all of a sudden the Twilio PHP SDK stops working. And, it gives you an error something like this:. SSL: certificate verification failed (result: 5). Check this out for all the details: http:/ sourceforge.net/p/curl/bugs/1404/. Subscribe to: Posts (Atom). Yosemite and SSL Certificate Verifica...
firelitdesign.blogspot.com
Firelit Design: April 2013
http://firelitdesign.blogspot.com/2013_04_01_archive.html
Thursday, April 25, 2013. Non-Profit Merchant Account Tips. If you're a non-profit the risk you pose to the financial world is low giving you a little leverage when securing a merchant account. Here are few tips for those who are looking:. Say 'no thanks' to contracts. Opt for 'interchange plus' pricing. And ERR pricing is synonymous for ' round it up and add some extra just in case. Ask for an itemized list of fees. Hope this helps and if you have any questions, reply below. Subscribe to: Posts (Atom).
firelitdesign.blogspot.com
Firelit Design: June 2013
http://firelitdesign.blogspot.com/2013_06_01_archive.html
Saturday, June 15, 2013. Error starting Apache (httpd) - Configuration files not readable. Here is an interesting issue I ran into today while setting up a new VM. I had copied the Apache conf file and SSL/TLS certificate files onto my new server as root using wget. All of the file's ownerships and permissions looked right and I thought I was ready to go. Then I ran into these two misleading errors:. Could not open configuration file /etc/httpd/conf.d/ssl.conf: Permission denied. The project I spend all ...
firelitdesign.blogspot.com
Firelit Design: March 2012
http://firelitdesign.blogspot.com/2012_03_01_archive.html
Wednesday, March 28, 2012. Floating Section Scrolls with Page (HTML and JS). Of the code in use. I've seen different implementations of this. The most popular solution is a "chaser" where the element's absolute position is updated dynamically after each page scroll event. You have probably seen sites like this. They are a bit annoying and clunky - the element is constantly hiding and showing after every scroll. To make things easier (ie, this framework is required). Take, use and be merry. This was kind ...
firelitdesign.blogspot.com
Firelit Design: Error starting Apache (httpd) - Configuration files not readable
http://firelitdesign.blogspot.com/2013/06/error-starting-apache-httpd.html
Saturday, June 15, 2013. Error starting Apache (httpd) - Configuration files not readable. Here is an interesting issue I ran into today while setting up a new VM. I had copied the Apache conf file and SSL/TLS certificate files onto my new server as root using wget. All of the file's ownerships and permissions looked right and I thought I was ready to go. Then I ran into these two misleading errors:. Could not open configuration file /etc/httpd/conf.d/ssl.conf: Permission denied. The project I spend all ...