创建OpenCart的开发环境
我正在创建一个电子商务网站,使用 OpenCart 和 hostgator 进行托管。我想创建一个安装了 OpenCart 的开发环境,以便我可以查看更改和编辑,而无需使其生效。我还想要一种简单的方法来保存更改并将其推送到实时网站。
有人能指出我正确的方向吗?谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您是该网站的唯一开发人员和测试人员,则只需安装WAMP (Windows),MAMP (MacOS),或 XAMPP 在您的开发机器上。然后,您将能够安装 OpenCart、编辑任何文件并使用浏览器执行测试并转到 http://localhost/
如果有许多开发人员,或者您需要其他位置的其他人可以访问开发环境,只需在现有域下设置一个子域(例如“dev.server.com”,其中生产站点是“server.com” ") 并将其安装在那里。 (如果您走这条路,我建议研究 HTACCESS 规则,以限制您自己和其他授权人员对开发环境的访问,而不是完全公开。)
If you are the only developer and tester of the site, then simply install WAMP (Windows), MAMP (MacOS), or XAMPP on your development machine. You will then be able to install OpenCart, edit any files, and perform testing using a browser and going to http://localhost/
If there are a number of developers, or you need the development environment to be accessible to other people in other locations, simply setup a subdomain under your existing domain (like "dev.server.com" where the production site is "server.com") and install it there. (If you go this route, I would suggest researching HTACCESS rules to limit access to the development environment to yourself and other authorised people, rather than making it completely public.)