


PHP development environment construction - laravel framework, apache server, git version control, laravelgit_PHP tutorial
Jul 12, 2016 am 08:55 AMphp development environment setup - laravel framework, apache server, git version control, laravelgit
This article mainly explains the development environment installation before starting the project - the back end is php, the front end Use grunt for automated builds. It specifically introduces the environment construction using apache to run php under the windows platform, as well as the installation of git tools. The writing is a bit rough, but the process is complete. Please forgive me for any shortcomings.
1. GitTool Installation
1)https://github.com Registergithubaccount
2) Install PHPGit-1.9.5-preview20150319.exe
3) Set Git user name and email:
$ git config --global user.name "xuhaiyan" $ git config --global user.email "haiyan.xu.vip@gmail.com"
4) Process of generating SSH key:
1. Check if you already have the ssh key (use Git Bash, do not use cmd): cd ~/.ssh
If there is no key, this folder will not exist. If there is, backup and delete it
2. Generate key:
$ <span>ssh-keygen</span> -t rsa -C “haiyan.xu.vip@gmail.com”
Press 3 Enter keys, the password is empty.
Your identification has been saved in /home/tekkub/.ssh/id_rsa.
Your public key has been saved in /home/tekkub/.ssh/id_rsa.pub.
The key fingerprint is:
………………
Finally, we got two files: id_rsa (private key) and id_rsa.pub (public key)
3. Add key (public key) to ssh: ssh-add file name
Log in to your github account, enter the company project, click Settings/SSH Keys/Add SSH Key
5) Clone the project code locally (assuming the cloned code is to E:bd-shop), please fill in the corresponding project code address
git clone git@github.com:xxx.git
2. phpTool installation
1) Install phpEditor: Sublime Text Build 3083 x64 Setup.exe
Or install phpstorm for more powerful functions
3. Install WampServerIntegrated software package: wampserver2.5-Apache-2.4.9-Mysql-5.6.17-php5.5.12-32b.exe(32 bits)
(W: windowssystem; a:Apacheserver; m:mysqldatabase; p:phplanguage)
Possible errors: The following dialog box will pop up:
Solution: Download VSU4vcredist_x86.exe at http://www.microsoft.com/zh-CN/download/details.aspx?id=30679 and install it (note that wamp server is 32-bit Yes, so install x84 instead of x64)
If vcredist_x86.exe cannot be installed, you can use nginx to start php, which will be explained in a future article.
4. Change the apache configuration and set the Apache server homepage to the company project:
1)C:wampbinapacheapache2.4.9confhttpd.conf, remove the LoadModule rewrite_module modules/mod_rewrite.so front The comment character '#'
2) Set the DocumentRoot path to E:bd-shoppublic (based on the first section above 5 points)
3) Change
Note: The installation is correct, but apache cannot be started( is displayed in orange) , then the default is 80. The port needs to be changed. The port number is set to 1024. Ports, such as 8888, 8080, etc. The method is as follows:
C:wampbinapacheapache2.4.9confhttpd.conf,
Changed Listen 0.0.0.0:80 to Listen 0.0.0.0:8888
Listen [::0]:80 changed to Listen [::0]:8888
5. Place vendor and .env into the project (E:bd-shop );
Vendor is a dependency package of the project. Because it is relatively large, it is slow to download using commands, so it can be packaged and used directly. It can be handled according to the actual situation.
六、安裝node-v0.12.7-x64.msi(要裝grunt-cli先安裝node.js)
七、將node_modules放入bd-shop/resource/assets里面;在E:\bd-shop\resources\assets中啟用git bash并寫入:
npm <span>install</span> -g grunt-cli
安裝好grunt-cli后運行grunt命令,即進行構(gòu)建(注意grunt和-cli之間沒有空格)。
八、安裝SQLSRV32.EXE,安裝時選擇php安裝目錄中:C:\wamp\bin\php\php5.5.12\ext;然后在C:\wamp\bin\php\php5.5.12\php.ini文件里面,添加下面兩行代碼:
extension=<span>php_sqlsrv_55_ts.dll extension</span>=php_pdo_sqlsrv_55_ts.dll
?
九、安裝sqlncli.msi;安裝msodbcsql.msi(是OBDC驅(qū)動)?
十、安裝Laravel
? ? ?首先安裝composer(Composer-Setup.exe),然后按照官網(wǎng)http://laravel-china.org/docs/5.0/installation?里面步驟進行。
? ? ?注意:以上的path是指計算機屬性/高級系統(tǒng)設(shè)置/環(huán)境變量/系統(tǒng)變量/PATH

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The reason why header('Location:...') in AJAX request is invalid is that the browser will not automatically perform page redirects. Because in the AJAX request, the 302 status code and Location header information returned by the server will be processed as response data, rather than triggering the jump behavior. Solutions are: 1. Return JSON data in PHP and include a jump URL; 2. Check the redirect field in the front-end AJAX callback and jump manually with window.location.href; 3. Ensure that the PHP output is only JSON to avoid parsing failure; 4. To deal with cross-domain problems, you need to set appropriate CORS headers; 5. To prevent cache interference, you can add a timestamp or set cache:f

AgeneratorinPHPisamemory-efficientwaytoiterateoverlargedatasetsbyyieldingvaluesoneatatimeinsteadofreturningthemallatonce.1.Generatorsusetheyieldkeywordtoproducevaluesondemand,reducingmemoryusage.2.Theyareusefulforhandlingbigloops,readinglargefiles,or

The most direct way to find the last occurrence of a substring in PHP is to use the strrpos() function. 1. Use strrpos() function to directly obtain the index of the last occurrence of the substring in the main string. If it is not found, it returns false. The syntax is strrpos($haystack,$needle,$offset=0). 2. If you need to ignore case, you can use the strripos() function to implement case-insensitive search. 3. For multi-byte characters such as Chinese, the mb_strrpos() function in the mbstring extension should be used to ensure that the character position is returned instead of the byte position. 4. Note that strrpos() returns f

To prevent session hijacking in PHP, the following measures need to be taken: 1. Use HTTPS to encrypt the transmission and set session.cookie_secure=1 in php.ini; 2. Set the security cookie attributes, including httponly, secure and samesite; 3. Call session_regenerate_id(true) when the user logs in or permissions change to change to change the SessionID; 4. Limit the Session life cycle, reasonably configure gc_maxlifetime and record the user's activity time; 5. Prohibit exposing the SessionID to the URL, and set session.use_only

You can use substr() or mb_substr() to get the first N characters in PHP. The specific steps are as follows: 1. Use substr($string,0,N) to intercept the first N characters, which is suitable for ASCII characters and is simple and efficient; 2. When processing multi-byte characters (such as Chinese), mb_substr($string,0,N,'UTF-8'), and ensure that mbstring extension is enabled; 3. If the string contains HTML or whitespace characters, you should first use strip_tags() to remove the tags and trim() to clean the spaces, and then intercept them to ensure the results are clean.

The urlencode() function is used to encode strings into URL-safe formats, where non-alphanumeric characters (except -, _, and .) are replaced with a percent sign followed by a two-digit hexadecimal number. For example, spaces are converted to signs, exclamation marks are converted to!, and Chinese characters are converted to their UTF-8 encoding form. When using, only the parameter values ??should be encoded, not the entire URL, to avoid damaging the URL structure. For other parts of the URL, such as path segments, the rawurlencode() function should be used, which converts the space to . When processing array parameters, you can use http_build_query() to automatically encode, or manually call urlencode() on each value to ensure safe transfer of data. just

The five most valuable stablecoins in 2025 are Tether (USDT), USD Coin (USDC), Dai (DAI), First Digital USD (FDUSD) and TrueUSD (TUSD).

In PHP, you can use square brackets or curly braces to obtain string specific index characters, but square brackets are recommended; the index starts from 0, and the access outside the range returns a null value and cannot be assigned a value; mb_substr is required to handle multi-byte characters. For example: $str="hello";echo$str[0]; output h; and Chinese characters such as mb_substr($str,1,1) need to obtain the correct result; in actual applications, the length of the string should be checked before looping, dynamic strings need to be verified for validity, and multilingual projects recommend using multi-byte security functions uniformly.
