Home > Article > Backend Development > First time using laravel framework
After playing for 6 months, I feel that I feel more low, so I am ready to learn something else, and then prepare to play Laravel on my own computer. Because my WAMP is 2.4 PHP or 5.4, Laravel is the lowest at the lowest lowest It supports versions 5.5 and above, so you can only download wamp2.5 online. The path is http://rj.baidu.com/soft/detail/10636.html?ald. You can download it yourself. For laravel, it is at http:/ /www.golaravel.com/download/, download it yourself. After one-click fool-proof installation of Windows 10 on the company computer, configure the mysql environment variable C:wampbinmysqlmysql5.6.17bin, open cmd, and enter mysql -uroot -p enter Enter
use mysql Log in again Yes, unzip the laravel framework in the wamp www directory and open public. Problem: The basic steps are as mentioned above, but when installing on my Windows 7 computer, an error occurred. msvcr110.dll was missing. I checked that there was msvcr110.dll in the window system32 directory. After restarting, I installed it again and still got an error. So, I checked online, http://jingyan.baidu.com/article/4f7d57129fa86e1a201927de.html, remember to downloadVSU4vcredist_x86.exe
, because this wamp is x86, so after downloading and installing it, there will be no problem.
The above introduces the first use of the laravel framework, including aspects of it. I hope it will be helpful to friends who are interested in PHP tutorials.