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.
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.
| #!/bin/bash | |
| sudo kextload -r "/Library/Extensions/" "/Library/Extensions/VBoxDrv.kext" | |
| sudo kextload -r "/Library/Extensions/" "/Library/Extensions/VBoxNetFlt.kext" | |
| sudo kextload -r "/Library/Extensions/" "/Library/Extensions/VBoxNetAdp.kext" | |
| sudo kextload -r "/Library/Extensions/" "/Library/Extensions/VBoxUSB.kext" |
I'm about to start writing a new php library for hateoas stuff. Here are my thoughts about what features it should have. If you have comments/suggestions/ideas/requests/whatever, please comment the gist.
| <?php | |
| /** | |
| * This class can add WSSecurity authentication support to SOAP clients | |
| * implemented with the PHP 5 SOAP extension. | |
| * | |
| * It extends the PHP 5 SOAP client support to add the necessary XML tags to | |
| * the SOAP client requests in order to authenticate on behalf of a given | |
| * user with a given password. | |
| * |
| <parameters> | |
| <parameter key="my_bundle.my_model.form.type.class">My\Bundle\RestBundle\Form\Type\MyModelFormType</parameter> | |
| <parameter key="my_bundle.my_model.form.handler.class">My\Bundle\RestBundle\Form\Handler\MyModelFormHandler</parameter> | |
| </parameters> | |
| <services> | |
| <service id="my_bundle.my_model.form.type" class="%my_bundle.my_model.form.type.class%"/> | |
| <service id="my_bundle.my_model.form" factory-method="create" factory-service="form.factory" class="Symfony\Component\Form\Form"> | |
| <argument type="service" id="my_bundle.my_model.form.type"/> | |
| </service> |
| <?php | |
| namespace Ormigo\Tests; | |
| use Symfony\Component\Templating\EngineInterface; | |
| use Symfony\Component\HttpFoundation\Response; | |
| class JasmineHandler | |
| { | |
| protected $templating; |
| <?php | |
| namespace Foo\CoreBundle\Form\EventListener; | |
| use Symfony\Component\EventDispatcher\EventSubscriberInterface; | |
| use Symfony\Component\Form\FormEvents; | |
| use Symfony\Component\Form\FormEvent; | |
| use Symfony\Component\Form\FormInterface; | |
| /** | |
| * Changes Form->bind() behavior so that it treats not set values as if they |
| auth_basic "Restricted"; | |
| auth_basic_user_file /etc/nginx/htpasswd; |
| <?php | |
| $collection = new Doctrine\Common\Collection\ArrayCollection(); | |
| // add objects to the collection that contain a getCreated method returning a DateTime instance | |
| $iterator = $collection->getIterator(); | |
| $iterator->uasort(function ($first, $second) { | |
| if ($first === $second) { |