Mount directory via SSH on Windows
December 16, 2013 Leave a comment
I found this program, which does exactly what it’s supposed to do! 😉
Just a few lines of code.
December 16, 2013 Leave a comment
I found this program, which does exactly what it’s supposed to do! 😉
December 3, 2013 Leave a comment
# sshfs -o IdentityFile=~/.ssh/id_rsa_whatsoever user@host.com:/foo/bar targetfolder
October 2, 2013 Leave a comment
If you wish to keep more than three old kernels version when updating with yum, just set installonly_limit to 0 in your yum.conf.
installonly_limit=0
February 21, 2013 Leave a comment
svn log -v -r 500:562 | grep -E “^\s*[MA]\s” | sed -e “s/ M //” | sed -e “s/ A //” | sort | uniq
December 19, 2012 Leave a comment
yum install GeoIP geoip-devel php-pecl-geoip
For database files, see: https://rewgaz.wordpress.com/2012/04/06/php5-geoip-pecl-apache2-ubuntu/
December 10, 2012 Leave a comment
setsebool -P httpd_can_network_connect 1
December 10, 2012 Leave a comment
Always getting 403 Forbidden on your Fedora (in my case 17) httpd (Apache2) VirtualHost?
The source of your problem is the Linux feature Security-Enhanced Linux (SELinux).
This should fix it:
chcon -R -t httpd_sys_content_t directory1
If you need write privileges on a specific directory, use this:
chcon -R -t httpd_sys_rw_content_t directory2
December 10, 2012 Leave a comment
yum install httpd php php-common mysql mysql-server php-pecl-apc php-cli php-pear php-pdo php-mysql php-pecl-memcache php-pecl-memcached php-gd php-mbstring php-mcrypt php-xml phpmyadmin php-pear php-devel ImageMagick php-pecl-imagick php-bcmath
service httpd start
service mysqld start
chkconfig –levels 235 httpd on
chkconfig –levels 235 mysqld on