I hereby claim:
- I am bittarman on github.
- I am bittarman (https://keybase.io/bittarman) on keybase.
- I have a public key ASAsY620r1nKtpW3qxYZ7MJrn-MP6d_qwqFtqn1lV9XdhQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # | |
| # Script to make a proxy (ie HAProxy) capable of monitoring Percona XtraDB Cluster nodes properly | |
| # | |
| # Authors: | |
| # Raghavendra Prabhu <raghavendra.prabhu@percona.com> | |
| # Olaf van Zandwijk <olaf.vanzandwijk@nedap.com> | |
| # | |
| # Based on the original script from Unai Rodriguez and Olaf (https://github.com/olafz/percona-clustercheck) | |
| # |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * @copyright Lupimedia ltd 2013 | |
| */ | |
| namespace Contentled\Filter; | |
| use Zend\Filter\Exception; | |
| use Zend\Filter\FilterInterface; |
| fastcgi_param QUERY_STRING $query_string; | |
| fastcgi_param REQUEST_METHOD $request_method; | |
| fastcgi_param CONTENT_TYPE $content_type; | |
| fastcgi_param CONTENT_LENGTH $content_length; | |
| fastcgi_param SCRIPT_NAME $fastcgi_script_name; | |
| fastcgi_param REQUEST_URI $request_uri; | |
| fastcgi_param DOCUMENT_URI $document_uri; | |
| fastcgi_param DOCUMENT_ROOT $document_root; |
| <?php | |
| class Boostrap extends Zend_Application_Bootstrap_Bootstrap | |
| { | |
| protected function _initTimeout() | |
| { | |
| $auth = new Zend_Session_Namespace(Zend_Auth::getInstance()->getSessionNamespace()) | |
| $auth->setExpirationSeconds(60); | |
| } | |
| } |
.. toctree:: :hidden: ref/overview ref/installation user-guide/overview user-guide/skeleton-application user-guide/modules user-guide/routing-and-controllers user-guide/database-and-models
| <?php | |
| class Module_Form_NewSomething extends Zend_Form | |
| { | |
| public function init() | |
| { | |
| $this->addElements(array( | |
| $name = new Zend_Form_Element_Text('name'), | |
| $email = new Zend_Form_Element_Text('email'), | |
| )); |