Toggen Blog
Tech tips
Articles
Latest
Symantec Endpoint Protection Install on Windows 8.1
Things I discovered / Googled. You need to enable the "Remote Registry" Service make sure it's running. The correct firewall ports need to be open http://www.symantec.com/connect/forums/firewall-ports-push-deployment And you need to add a value to allow UAC to bypass...
Cross Platform Opensource Apps
I use Fedora 20 at home and Windows 7 at work but I like to be able to have a consistent environment across my Workstations. The following is a list of productivity applications that gets installed on both Windows and Linux.
CakePHP Login and Authenticaton Tutorial
http://miftyisbored.com/a-complete-login-and-authentication-application-tutorial-for-cakephp-2-3/ This site is by a multi-talented developer that sometimes Blogs about CakePHP. The good thing about it is he includes listings for the structure of the database tables...
CakePHP 2.4.6 Transitioning to Encrypted DB Columns
Note: The encryption created with Cakephp 2.4.6 Security::rijndael can't be read (by default) using the MySQL AES_DECRYPT() function so once you have it encrypted you can only read and write using the CakePHP application. I believe CakePHP 2.5.x has another couple of...
Using make-dummy-cert to Create a Self-Signed Certificate to HTTPS enable an NGinx Served Website in CentOS – and other mouthfuls
I'm using CentOS release 6.5 (Final). Located in /etc/pki/tls/certs is a file named "make-dummy-cert" In the answers() section you can enter some reasonably valid content (see example below) and then run it with a target file name (I generally make the file the same...
Including CSS Stylesheet Link from View CakePHP Version Gotcha
Just ran into a version problem where my devel environment was running a cakephp version ahead of my live In cake 2.4.1 this works: // in layout echo $this->fetch('css'); // in view $this->Html->css( array( 'mio-accordion' ), array('block' => 'css') ); But...
