This can be done by setting up a sparse checkout. Sparse Checkout Create a directory mkdir [directory] Enter directory cd [directory] Git init and add remote git init git remote add origin [url] Enable sparse checkout git config core.sparseCheckout true Set folders to checkout in .git/info/sparse-checkout echo “[wanted directory]” >> .git/info/sparse-checkout Then pull the repository […]
Author: contrib
SSH REMOTE HOST IDENTIFICATION HAS CHANGED
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! Someone could be eavesdropping on you right now (man-in-the-middle attack)! It is also possible that a host key has just been changed. The fingerprint for the RSA key sent by the remote host is If you […]
Proxy Settings for WordPress in config.php not working
Try installing/enabling the PHP Curl extension. apt-get install php5-curl
Allow remote access to MYSQL database
To allow remote access to MySql first create a MySql user and assign host as %. CREATE USER ‘newuser’@’%’ IDENTIFIED BY ‘password’; then grant privileges GRANT ALL PRIVILEGES ON * . * TO ‘newuser’@’%’; then flush privileges FLUSH PRIVILEGES; You may need to add the following to /etc/mysql/my.cnf to listen for all ip’s instead of […]
WAMP allow Phpmyadmin access remotely
Edit the file C:\wamp\alias\phpmyadmin.conf Change the line Require local to Require all granted Wampserver 2.5
Safari .local domain names not resolving
When testing a web project using WAMP and Fiddler I could not connect to the virutal host on an iPad running Safari. Worked with other browsers on the devices i.e. Chrome. To get it to resolve I had to change to virtual host from site1.local to site1.lc or anything else but .local.
Git Bash using Laravel Artisan displays escaped characters
If you have output similar to below displaying escaped characters try changing Git Bash options for terminal to xterm-256color ←[33mevent←[39m ←[32mevent:generate←[39m Generate the missing events and listeners based on registration ←[33mhandler←[39m ←[32mhandler:command←[39m Create a new command handler class ←[32mhandler:event←[39m Create a new event handler class ←[33mkey←[39m ←[32mkey:generate←[39m Set the application key ←[33mmake←[39m ←[32mmake:command←[39m Create a […]