Advanced Search
Search Results
5 total results found
"Please provide a valid cache path" error
Laravel needs the following folders during composer install so you have to create it: mkdir -p storage/framework/{sessions,views,cache} composer install should work once these folders are created.
Custom Spam Filtering with Silent Error
Contact Form 7's very limited developer documentation gives this code snippet which is supposed to use your custom PHP logic to identify spam mail and prevent them from being sent. add_filter( 'wpcf7_spam', function( $spam ) { if ( $spam ) { return $s...
Git Verified Commit
Export your key and add it to GitHub Get your key signature gpg --list-secret-keys --keyid-format=long If you haven't already, set your name and email in Git: git config --global user.name "Kyle" git config --global user.email "[email protected]" Set your ...
Set SSH key used in Git
Assuming you already have a key: git config core.sshCommand "ssh -i ~/.ssh/id_ed25519_work"
Responsive mixins
@mixin mobile { @media screen and (max-width: 767px) { @content; } }