This file contains hidden or 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 only in your development environment, behind a firewall | |
sudo apt-get install dnsmasq | |
echo 'address=/.3dev/127.0.0.1' | sudo tee -a /etc/dnsmasq.conf | |
echo 'listen-address=127.0.0.1' | sudo tee -a /etc/dnsmasq.conf | |
sudo service dnsmasq restart | |
# now imlazy.3dev will resolve to localhost | |
# install nginx + php7 |
This file contains hidden or 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
'EmailTransport' => [ | |
'default' => [ | |
'className' => 'Smtp', | |
'host' => 'debugmail.io', | |
'port' => 25, | |
'timeout' => 30, | |
'username' => 'YOUR_DEBUGMAIL_EMAIL', | |
'password' => 'YOUR_DEBUGMAIL_PROJECT_PASSWORD', | |
'client' => null, | |
'tls' => null, |
This file contains hidden or 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
public function beforeRender(Event $e) | |
{ | |
if ($this->request->param('action') === 'login' && | |
$this->request->param('controller') === 'Users' && | |
$this->request->param('plugin') === 'CakeDC/Users' | |
) { | |
$this->viewBuilder()->layout('login'); | |
} | |
} |
This file contains hidden or 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
#!/bin/bash | |
## Upgrade to php7 and install required dependencies | |
# execute this script using | |
# source <(curl RAW_GIST_URL) | |
read -p "You are about to upgrade to PHP 7 OK? " -n 1 -r | |
echo | |
if [[ $REPLY =~ ^[Yy]$ ]] | |
then | |
echo 'y' | sudo add-apt-repository ppa:ondrej/php && \ | |
sudo apt-get update && \ |
This file contains hidden or 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
#!/bin/bash | |
## Upgrade to php7.1 and install required dependencies | |
# execute this script using | |
# source <(curl RAW_GIST_URL) | |
read -p "You are about to upgrade to PHP 7.1 OK? " -n 1 -r | |
echo | |
if [[ $REPLY =~ ^[Yy]$ ]] | |
then | |
echo 'y' | sudo add-apt-repository ppa:ondrej/php && \ | |
sudo apt-get update && \ |
This file contains hidden or 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
# Installation: add this to your .bash_aliases or .zshrc | |
# change the following line to point your phpcbf preferred tool | |
alias phpcbf3="/home/steinkel/phpcs-cake3/vendor/bin/phpcbf --standard=CakePHP" | |
# gitco function | |
# allow commit and comment with no quotes | |
# adds refs #id based on current feature/issue/hotfix branch | |
# run phpcbf on touched files | |
function gitco () { |
This file contains hidden or 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
-- phpMyAdmin SQL Dump | |
-- version 4.0.10deb1 | |
-- http://www.phpmyadmin.net | |
-- | |
-- Host: 127.0.0.1 | |
-- Generation Time: Jan 29, 2015 at 12:12 AM | |
-- Server version: 5.5.40-0ubuntu0.14.04.1 | |
-- PHP Version: 5.5.9-1ubuntu4.5 | |
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
This file contains hidden or 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
some test |
This file contains hidden or 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
mysql -uroot -e "CREATE DATABASE my_app; CREATE DATABASE test_myapp" | |
mysql -uroot -e "GRANT ALL PRIVILEGES ON *.* to my_app@localhost identified by 'secret'" | |
curl -L https://raw.githubusercontent.com/steinkel/cakefest2017/master/schema.sql |mysql -uroot my_app |