網上開店推薦prestashop

最近由於幫女朋友在網上開個店,網上搜了搜,發現有很多php+mysql開源的網店模板,當然最好還是
康盛創想推出的ecshop,但是很遺憾如果用於商業目的是需要花錢的。所以還是找國外的開源軟件吧。

最好找到一個很簡單也很使用的網店系統:

http://www.prestashop.com/

界面非常間接,後臺管理也很方便。利用一天的時間就把所有商品貼上去了。

優點:
1)模塊化非常好,有選擇的配置自己需要的模塊
2)前後臺翻譯, 這個功能非常好,由於國外的模板都是英文的,也不一定有漢化包,這個功能可以幫助用戶自己漢化

以下記錄一下自己的LMAP搭建的環境備份的過程:

There are at least three ways to backup your MySQL Database :

  1. Use phpMyAdmin to do the backup.
  2. Execute a database backup query from PHP file.
  3. Run mysqldump using system() function.

Database Backup with PHPMyAdmin

These instructions are written for PHPMyAdmin, a very common MySQL database management tool included with most hosting services using PHP and MySQL. Your database management tool may differ, but the steps should be very similar.

For instructions on how to back up a database with other PHP admin tools, please see

  • After logging in, select your database, then click the Export tab.

0cc4d7babf78ac70be1177f626be6de6

  1. In the Export section, confirm that all tables are selected, then select the SQL radio button.
  2. In the SQL options, select:
    • Structure
      • Add AUTO_INCREMENT value
      • Enclose table and file names with backquotes
    • Data
      • Complete inserts
      • Extended inserts
      • Export type : INSERT
  3. Mark the Save as file checkbox.
  4. Choose a compression file type.
  5. Click Go.
  6. Download the compressed file to your hard drive.

After downloading the file, please verify it before modifying the original database.

To do this:

  1. On your hosting server, create a new database on your hosting server, if allowed. (If you are only allotted one database per account, create a new database locally (on your computer) by using WAMP for Windows, MAMP for Mac, or LAMP) for Linux.)
  2. Select the newly created database.
    • Please note: PHPMyAdmin cannot import files larger than 2 MB. If your compressed database backup exceeds 2 MB, to restore the database, use your compression file archiver program (we recommend the free 7-Zip) to unzip the backup SQL database. Then you can split it into chunks of 2 MB using a text-splitter program. When restoring the database via PHPMyAdmin, simply import it piece by piece.
  3. Click the Import tab.
  4. Browse and select your backup database copy.
  5. Select the UTF8 character set.
  6. Select SQL as import format.
  7. Click Go. The import process is complete.
  8. In the PrestaShop Back Office > Tools > Database Configuration, change the database name to the new one.


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章