Home Linux Web Server
Mar 11
Thursday
Web Server
Ubuntu 8.0.4 - Upgrade php 5.2.4 to 5.2.11 PDF Print E-mail
Written by Ron Bassett   
Tuesday, 13 October 2009 18:53

I was trying to upgrading php 5.2.4 above php 5.2.6 so I could use json.

# cd /etc/apt/root
# vi sources.list

deb http://packages.dotdeb.org/ oldstable all

apt-get update
apt-get install php5-cli

http://ubuntuforums.org/showthread.php?t=1134021&highlight=apt-get+php+5.3+upgrade

 
Linux Command Line Cheat Sheet PDF Print E-mail
Written by Ron Bassett   
Monday, 31 August 2009 20:17

This is a small Cheat Sheet for the Linux Noobies out there.

Tar with permissions

tar -pczf filename.tar.gz www/

UnTar with permissions

tar xvfz filename.tar.gz

Restart Apache

/etc/init.d/httpd restart

Stop Apache

/etc/init.d/httpd stop

Start Apache

/etc/init.d/httpd start

Permissions with recursive

chown -R user:group httpdocs/
Read more... [Linux Command Line Cheat Sheet]
 
Upgrade Proftpd on CentOS to fix Filezilla connection with FTPS PDF Print E-mail
Written by Ron Bassett   
Thursday, 26 February 2009 22:53
If any of you have updated Filezilla over the past few months and are using FTPS (SSL/TLS) you may have received this error.
Read more... [Upgrade Proftpd on CentOS to fix Filezilla connection with FTPS]
 
Creating a SSL/TSL connection for FTP PDF Print E-mail
Written by Ron Bassett   
Tuesday, 17 February 2009 20:41

Using Secure FTP is a great way to add security to your site. Regular FTP sends the username and password in plain text. To Secure your FTP connection there is two choices SSH and SSL. SSH uses a secure shell.

Read more... [Creating a SSL/TSL connection for FTP]
 


Home Linux Web Server