find / -type f -size +20000k -exec ls -lh {} \; | awk ‘{ print $9 “: ” $5 }’
sDenn Knowledge Base
Category Archives: Linux
Joomla 1.0.15
cd /var/www/html/
wget http://joomlacode.org/gf/download/frsrelease/6828/22537/Joomla_1.0.15-Stable-Full_Package.tar.gz
tar -zxvf Joomla_1.0.15-Stable-Full_Package.tar.gz
from su (assuming that you have ‘apache’ user for httpd):
chgrp -R apache administrator/backups/ administrator/components/ administrator/modules/ administrator/templates/ components/ images/ images/banners/ images/stories/ language/ mambots/ mambots/content/ mambots/editors/ mambots/editors-xtd/ mambots/search/ mambots/system/ media/ modules/ templates/ cache/
chmod -R g+w,o-rwx administrator/backups/ administrator/components/ administrator/modules/ administrator/templates/ components/ images/ images/banners/ images/stories/ language/ mambots/ mambots/content/ mambots/editors/ mambots/editors-xtd/ mambots/search/ mambots/system/ media/ modules/ templates/ [...]
PhpBB3
Set permissions:
chgrp -R apache cache files store images/avatars/upload images/avatars/gallery images/ranks images/smilies config.php
chmod -R g+w,o-rwx cache files store images/avatars/upload images/avatars/gallery images/ranks images/smilies config.php
eAccelerator
Latest version at http://www.eaccelerator.net/
Installing:
cd ~
wget http://bart.eaccelerator.net/source/0.9.5.3/eaccelerator-0.9.5.3.tar.bz2
tar jxvf eaccelerator-0.9.5.3.tar.bz2
cd eaccelerator-0.9.5.3.tar.bz2
phpize
./configure –enable-eaccelerator=shared –with-eaccelerator-content-caching –with-php-config=/usr/bin/php-config
make
make install
mkdir /tmp/eaccelerator
chgrp -R apache /tmp/eaccelerator
chmod -R g+w,o-rwx /tmp/eaccelerator
cp ~/eaccelerator-0.9.5.3/eaccelerator.ini /etc/php.d
#change ini file#
Upgrade:
Same until - mkdir
Check if installed properly:
php -v
Response:
PHP 5.2.6 (cli) (built: May 5 2008 10:32:59)
Copyright (c) 1997-2008 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2008 Zend Technologies
with eAccelerator v0.9.5.3, Copyright (c) [...]