Go to the Shell
Download the package
#!/bin/sh
While true; do
echo "This script downloads and installs WEC-T3Pack."
Echo -n "Are you sure to install it in this directory and set the right permissions (Y/N)?"
read yn
case $yn in
y* | Y* )
wget webempoweredchurch.org/fileadmin/proj/wec_starter/src/wec_starter-4_2_6-1_0_0.tar.gz;
wget svn.webempoweredchurch.org/repositories/entry/wec_servercheck/trunk/wec_servercheck.php;
tar xzvf wec_starter-4_2_6-1_0_0.tar.gz;
del typo3_src;
rm -r typo3_src-4.2.6
ln -s ../../100/y-sys/typo3_src typo3_src;
ln -s ../../../100/y-file/fileadmin/_system fileadmin/_system;
mv fileadmin/templates/* fileadmin/tv-templates;
rmdir fileadmin/templates;
mv fileadmin/tv-templates fileadmin/templates;
ln -s ../../../100/y-file/fileadmin/tv-templates fileadmin/tv-templates;
rm -r typo3conf l10n
ln -s ../../../100/y-file/typo3conf/l10n typo3conf/l10n
touch typo3conf/ENABLE_INSTALL_TOOL
del wec_starter-4_2_6-1_0_0.tar.gz;
chmod -R 777 typo3conf;
chmod -R 777 typo3temp;
chmod -R 777 uploads;
chmod -R 777 fileadmin;
break ;;
n* | N* ) exit ;;
esac
done