Cake PHP 应用程序的自动安装程序
我正在开发一个 Cake PHP 应用程序。我想知道是否有一种简单的方法来为 Cake PHP 应用程序创建自动安装程序(类似于大多数商业和开源 CMS(例如 Joomla、WordPress)可用的方法)。
我想以下是所涉及的步骤。
- 检查目标系统是否满足 Cake PHP 要求(以及额外的库,如果有的话)
- 将数据库凭据作为输入并运行 sql 文件来创建模式
- 删除在此过程中创建的临时文件和安装程序文件(以防止用户意外覆盖数据库和文件)
如果有人可以帮助我一步一步地完成同样的过程,那就太好了。
I am developing a Cake PHP application. I am wondering if there is a simple way to create auto installer for the Cake PHP application (similar to one available for most of the commercial and open source CMS e.g. Joomla, WordPress).
I guess below are the steps involved.
- Check if the target system meets Cake PHP requirements ( along with extra libs if any)
- Take DB credentials as input and run sql file to create the schema
- Delete and temp files created in the process along with installer files (to save user from accidentally overwriting the DB and files)
It would be great if someone can help me out with step by step process for the same.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有帮助 - http:// cakebaker.42dh.com/2007/04/16/writing-an-installer-for-your-cakephp-application/
This should help - http://cakebaker.42dh.com/2007/04/16/writing-an-installer-for-your-cakephp-application/