How to install or migrate X-cart under Nginx?

chattr -i .user.ini

find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;

chmod 777 config.php

chown -R www:www .

chattr -i ./www.*.com/.user.ini
chattr -i ./www.*.net/.user.ini
chattr -i ./www.*.cn/.user.ini

 

file_uploads = On
allow_url_fopen = On
memory_limit = 256M
upload_max_filesize = 10M
post_max_size = 20M
safe_mode = Off
magic_quotes_runtime = Off
session.auto_start = 0
zlib.output_compression = On

date.timezone = Europe/London
date.timezone = America/Los_Angeles

; disable_functions: exec, popen, putenv, readlink -xcart


Modify general MySQL user passwords:

mysql -uroot -p

ALTER USER ‘your_username’@’localhost’ IDENTIFIED BY ‘new_password’;
ALTER USER ‘eyeglasses’@’localhost’ IDENTIFIED BY ‘K84l7t53425O}%l%4’;

FLUSH PRIVILEGES;