English 中文(简体)
如何出版Magento网站?
原标题:How to publish magento website?

I Develop one website using magento. How to i Publish on server? If asp.net after publishing codes are converted into dll . but here magento How It work? How i configure my own website?

预付款

问题回答

这样做有若干方法。 从最简单到最复杂:

  • Simple zip and unpack on the server. Migrate databases with mysqldumps.
  • Push files with an FTP program. Preferably one with a compare viewer, such as Beyond Compare
  • If you utilize a QA environment or a staging site on the same box or a local server you can utilize rsync to push changes from one directory to another.
  • Create a source-control repository and use your production site root as a checkout of your Magento application (probably your best bet for ease of use).
  • Utilize source-control but deploy with a build tool such as Apache Ant.
  • Implement continuous integration with a tool such as Capistrano, Hudson/Jenkins, or CruiseControl

你们真的想要利用源头控制——因此,从特别志愿人员/Git/Hg或另一种工具中直接部署,是最为有意义的,因为它最容易管理,需要你付出的很少努力。 使贵存放处向公众开放,可能像使用诸如Gite Hub或Beanstalkapp等免费服务一样容易。 付薪等级使您可以进行私人重新定位或超过一名用户。

Continuous integration will be your best bet for rapid deployment on a site that is changing quickly and many deployments happen daily. Some comparison of tools:

http://en.wikipedia.org/wiki/Comparison_of_Continuous_Integration_Software

我希望能够提供帮助。 我已使用上述所有方法部署了Magento。 当地单元使用升级文字,实际上无法将数据库推向外部。 你们可以使用Maatkit等工具来分发表格,或在一些极端情况下,我发现,在卡片和生产环境中,使用Magento在桌前的配对器轮流开发。





相关问题
Block Websites Under Certain Conditions

I d like to create a simple program that will block certain websites for the user under certain conditions (e.g. after 7:00pm if homework is due the next day). This would be just a programming ...

Looking for a good exercise in building a website

I d like to learn how to build a website, say using .Net (Monorail comes to mind). I d like a pet project, something that: Will take a fair yet reasonble amount of time I can I can build on my own ...

Recoding a Podcast Website - What should I use?

OK here is the deal. Me and some buddies are doing a Podcast(for over 4 year now) and in April we relaunched the site, that included a new Backend. Since I only had 2 weeks back then for getting ...

Cache And Compare Files In C#

Ok, I m trying to make an application for an online Radio Station. I have it set to read the song title and artist and write it to a text file on the webserver. I want to have the application store ...

How does Drupal provide an edit/review/publish model?

How does Drupal support a means to update and review a website before it is published? Does it only allow you to preview a page at a time before you publish it or is there a way to create a site ...

热门标签