Search for "Ski resort" in a directory and sub-directory
$ grep -H -r "Ski resort" /home/innovita
Search "Ski resort" in a current directory and sub-directory
$ grep -H -r "Ski resort" .
Tags:
Linux
Permalink
December 30, 2009 at 12:19 pm
·
All template files are located in
app/locale/en_US/template/email.
1, Upload a new logo to
images/logo_email.gif
2, Change any file with *new.html
alt=”Magento” –> alt=”InnoVita”
3, Change any file with confirmation.html
Demo Store –> InnoVita
4, Change email and phone number
dummyemail@magentocommerce.com –>me@my.com
magento@varien.com –>me@my.com
(555) 555-0123
5, To make sure you have changed everything
cd /home/xxx/webapps/app/locale/en_US/template/email
cat *.html |grep Demo
cat *.html |grep 555
cat *.html |grep magento
cd sales
cat *.html |grep Demo
cat *.html |grep 555
cat *.html |grep magento
Tags:
Linux
Permalink
December 29, 2009 at 11:25 pm
·
1, Login to your server and issue these commands:
openssl genrsa -des3 -out innovita.key 2048
openssl req -new -key innovita.key -out innovita.csr
2, Upload csr file to GOoDaddy website to generate certificate files. Download the zip file to your server and unzip it.
3, use this command to remove password so apache will start automatically without asking for password.
openssl rsa -in innovita.key -out innovita.key.insecure
innovita.key innovita.key_w_password
cp innovita.key.insecure innovita.key
4, Configure ssl.conf file, add these lines:
SSLCertificateFile /home/innovita/ssl/innovitainc.com.crt
SSLCertificateKeyFile /home/innovita/ssl/innovita.key
SSLCertificateChainFile /home/innovita/ssl/gd_bundle.crt
5, Restart Apache
Apachectl restart
Tags:
Linux
Permalink
December 28, 2009 at 11:40 am
·