I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| function simplexml_to_array($simplexml_object) { | |
| $array = array(); | |
| $children = $simplexml_object->children(); | |
| $executed = false; | |
| foreach ($children as $elementName => $node) { | |
| if ($array[$elementName] != null) { | |
| if ($array[$elementName][0] !== null) { | |
| $i = count($array[$elementName]); | |
| simplexml_to_array($node, $array[$elementName][$i]); | |
| } else { |
| set nocompatible " Disable vi-compatibility | |
| set t_Co=256 | |
| colorscheme xoria256 | |
| set guifont=menlo\ for\ powerline:h16 | |
| set guioptions-=T " Removes top toolbar | |
| set guioptions-=r " Removes right hand scroll bar | |
| set go-=L " Removes left hand scroll bar | |
| set linespace=15 |
| #!/bin/sh | |
| # Ask for the administrator password upfront | |
| sudo -v | |
| # Keep-alive: update existing `sudo` time stamp until script has finished | |
| while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null & | |
| # Set the colours you can use | |
| black='\033[0;30m' |
| find . -type f -iname '*.php' -not -path "./vendor/*" -exec bash -c 'echo $0 && expand -t 2 -i "$0" >"$0.expand.tmp" && mv "$0.expand.tmp" "$0"' {} \; |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.