Update: please note that I have since switched to using a set of bash scripts instead of poluting the Git repository with git svn
.
Author: Kaspars Dambis
kaspars.net / @konstruktors
Update: please note that I have since switched to using a set of bash scripts instead of poluting the Git repository with git svn
.
Author: Kaspars Dambis
kaspars.net / @konstruktors
var INPUT_TYPES = 'color|date|datetime|datetime-local|file|month|number|password|range|search|tel|text|time|url|week'.split('|') | |
var App = React.createClass({ | |
getInitialState: function() { | |
return {} | |
}, | |
onChange: handleFormInputChange, | |
render: function() { |
<?php namespace Alfanso\Services\Jvzoo; | |
class Jvzoo { | |
public function isValidRequest($data) { | |
$jvzooSecretKey = config('jvzoo.secret_key'); | |
$receivedVerificationCode = $data['cverify']; | |
// remove cverify from the array since we don't use that | |
unset($data['cverify']); |
**INLCUDE htpasswd** | |
To generate .htpasswd: | |
htpasswd -c ./.htpasswd admin | |
Add this in .htaccess: | |
AuthUserFile /home/test/public_html/.htpasswd | |
AuthGroupFile /dev/null |
This gist assumes:
www-data
(may be apache
on other systems)