This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Use Memcached (if its on): | |
* | |
* Enable these configurations if a Memcached server is running on the | |
* server. This will move the database load from MySQL to Memcached, | |
* increasing the site speed and lowering the database lag. | |
* | |
* cache_inc = replaces the Drupal caching mechanism | |
* session_inc = replaces the Drupal mysqldb Sessions handler | |
* memcache_key_prefix should be set to a short unique string in multi Drupal environment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$hooks['user_profile_form'] = array( | |
'arguments' => array('form' => NULL) | |
); | |
function theme_user_profile_form($form) {} | |
if ($vars['menu_item']['map'][0]=='user') { | |
if ($vars['menu_item']['map'][2]=='edit') { | |
drupal_goto('trainings') ; #var_dump($_GET); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Determine if this is a premium user with special access to content | |
* | |
* @param $user | |
* Bring in the user object to test its roles | |
* @return boolean | |
* True if this is a premium user | |
*/ | |
function is_Premium($user) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
$(document).ready(function(){ | |
$('.photo img').each(function() { | |
Caman( this, function () { | |
this.greyscale(); | |
this.newLayer(function () { | |
this.setBlendingMode('normal'); | |
this.opacity(100); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule mod_rewrite.c> | |
ErrorDocument 404 "<H1>Page not found</H1>" | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^(bigNoNo/*) - [R=404,L] | |
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/nginx/sites-available/production <-- in same VirtualHost container as the 443 one, above it | |
server { | |
listen 80; | |
server_name sample.com www.sample.com; | |
rewrite ^(.*) https://sample.com$1 permanent; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# from: https://www.petekeen.net/know-how-to-roll-your-ssl-certificates | |
# look into: https://github.com/tilsammans/playbook/tree/master/roles/rails/templates | |
desc "Generate a new key" | |
task :gen_key do | |
domain = get_env(:domain) | |
filename = "#{domain}.key" | |
`openssl genrsa -out #{filename} 2048` | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#test on command line | |
$ env VAR='() { :;}; echo Bash is vulnerable!' bash -c "echo Bash Test" | |
#Fix on ubuntu (debian based) | |
$ sudo apt-get update && sudo apt-get install --only-upgrade bash | |
#Fix on CentOS/ Cpanel | |
$ sudo yum update bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": 62949004547, | |
"district_id": 629490, | |
"name": "Pajaro Middle", | |
"address": "250 Salinas Rd", | |
"city": "Watsonville", | |
"state": "CA", | |
"zip": "95076", | |
"country": "US", |
OlderNewer