我已將整個Magento live安裝複製到本地網絡中的本地centos 6.7服務器(虛擬)上。 下面是我所做的:將Magento Live站點複製到本地服務器進行備份
- 拉鍊和複製_public_html文件夾從直播現場
- 從活的MySQL數據庫
- 設置在Mac與Parallels拿了備份一個CentOS 6.7的安裝與php5.5和MYSQL5 0.5
- 我設置Apache 2.2
一切似乎確定和工作。
我做的下一步是從頭開始安裝magento 1.9.1(與我的現場網站相同的版本)。一切還好。 Magento主頁工作。
然後我複製我的生活public_html文件夾到本地public_html文件夾。 我的本地文件夾位於/ var/www/html/site /中。 我用本地憑證更改了local.xml文件。 後來我恢復了生活數據庫:
mysql -u root -p magento < /home/username/magento_sample_data_for_1.14.0.0.sql
而去年在phpMyAdmin我運行:
select * from core_config_data where path like '%base%url%';
,並改變了所有的links.Also我刪除了所有的緩存文件夾和會話。
我的本地centos有一個靜態ip,它指向我的主機文件中的一個dev域。 所有這些都是在Mac Pro中完成的。
問題是,當我打到域名時,我會超時。 Magento沒有加載。 這裏是我的PHP和SQL設置:
Mysqld
innodb_thread_concurrency = 2 * [numberofCPUs] + 2
innodb_flush_log_at_trx_commit = 2
thread_concurrency = [number of CPUs] * 3
thread_cache_size = 32
table_cache = 1024
query_cache_size = 64M
query_cache_limit = 2M
join_buffer_size = 8M
tmp_table_size = 256M
key_buffer = 32M
innodb_autoextend_increment=512
max_allowed_packet = 16M
max_heap_table_size = 256M
read_buffer_size = 2M
read_rnd_buffer_size = 16M
bulk_insert_buffer_size = 64M
myisam_sort_buffer_size = 128M
myisam_max_sort_file_size = 10G
myisam_max_extra_sort_file_size = 10G
myisam_repair_threads = 1
Php
realpath_cache_size = 32k
realpath_cache_ttl = 7200
max_execution_time = 90
max_input_time = 90
memory_limit = 256M
default_socket_timeout = 90
pdo_mysql.cache_size = 2000
output_buffering = 4096
我stucked。每一個幫助將不勝感激。
服務器是否正常工作並且設置正確?如果不是magento,你可以放置測試文件test.php並嘗試調用mylocal.dev/test.php它會運行嗎? – St0iK
是的。一切似乎都很好。我看到info.php文件,phpmyadmin和centos Apache測試頁面。只有Magento。dev不工作 –
嗯,我看到了,你有任何錯誤? 編輯文檔根目錄下的Magento引導程序index.php,並取消註釋以下行:ini_set('display_errors',1); 也許你需要在php中提高你的max_execution_time&memory_limit。同時仔細檢查你是否已經在core_config_data上正確設置了base_urls(最後添加沒有'/'的網址) – St0iK