- FuelPHP Application Development Blueprints
- Sébastien Drouyer
- 170字
- 2021-07-23 20:25:54
A few notes about deploying your application
Now that you have a working application, you might want to publish it on hosts. Handling this is quite easy, the longer part being sending the project's files (using FTP, Git, or any other tool depending on your hosting service), but there are a couple of things you should know.
First, you have to set your apache FUEL_ENV
environment to production
. An easy way to do that is to edit public/.htaccess
and uncomment the second line:
SetEnv FUEL_ENV production
Keep in mind, that in this case you will have two different files between your local environment and your production environment, so it will be prone to human error. You are recommended to read the official documentation at http://fuelphp.com/docs/general/environments.html (It can be accessed through the FuelPHP website by navigating to DOCS | TABLE OF CONTENTS | FuelPHP | Environments)
If you are using a shared hosting solution, keep in mind that, as explained in The simplest way section, you should take additional security precautions
- Learning Python Web Penetration Testing
- Advanced Machine Learning with Python
- Testing with JUnit
- 劍指JVM:虛擬機(jī)實(shí)踐與性能調(diào)優(yōu)
- Android Development with Kotlin
- 微信小程序開(kāi)發(fā)解析
- SQL基礎(chǔ)教程(視頻教學(xué)版)
- Linux操作系統(tǒng)基礎(chǔ)案例教程
- Spring Boot Cookbook
- HTML+CSS+JavaScript編程入門(mén)指南(全2冊(cè))
- OpenCV with Python Blueprints
- 算法設(shè)計(jì)與分析:基于C++編程語(yǔ)言的描述
- Hacking Android
- Maven for Eclipse
- Applied Deep Learning with Python