Home Backend Development PHP Tutorial PHP project packaging method Page 1/2_PHP tutorial

PHP project packaging method Page 1/2_PHP tutorial

Jul 21, 2016 pm 03:49 PM
php indivual What Corporate website internal Pack method of system virtual host finance need project

Corporate websites are easy to say, at least they need a virtual host or something; but OA, finance... these internal systems are hard to say. You can't just throw the code and database to others, write a description, and let them configure the environment according to the instructions. Install the code. This is obviously outrageous. You must know that every other line is like a mountain! Furthermore, if the customer is thousands of miles away from where he or she lives, he can't go there and have someone install it. In this case, all the income will probably not be able to cover the cost of the trip. Therefore, it is necessary to package the WAMP environment + PHP program + maintenance installation and uninstallation program into an EXE installation package. Let customers install PHP programs as easy and convenient as installing QQ!

There should be multiple methods. There are only three that I know of.

Use RAR’s automatic decompression function.
Use Windows packaging software InstallShield to create an installation package.
Pack with ready-made items! (Haha, as the saying goes, you stand on the shoulders of giants! I am also a lazy person.)
As for the above 1.2 method, you can search it through Baidu and Google. I'm not too lazy to search...=.=! Better than me...

Here I will explain my method in detail. This method was also collected by me when I helped a friend build a real estate information system a few days ago.

First, you need a pure and green PHP operating environment. Components are configured first according to project requirements. I use F:PHPServer as the environment root directory. The general components apache2+php5+mysql5+zo need to open the GD library... configure 80, 3306... everyone should be familiar with this than me. It is best to use a highly customizable integrated suite, preferably a green version in ZIP format, such as PHPNOW and XAMPP. Don't worry, the download link will be written below. I use PHPnow, which is compact, convenient and highly customizable!

Second, install our compiled system, check and debug by yourself, and everything is OK. Okay, that's half done. At this time, someone spoke up, "charlatan", "Mongolian doctor" and "liar". kindness! Don't be impatient, the fun is coming! Now in this folder PHPServer, we must ensure that no configuration files are imported from the outside world. We must ensure the independence and integrity of PHPServer, that is, ensure that it is green.

Third, these green integration suites generally have written BAT, which is a batch file, and you can start and shut down the service by directly entering the number. At this time, we can use RAR self-extraction + run batch processing, which is fine, but now it is blocked by many anti-virus software. In fact, I also use this principle. I found a packaging program make_exe (from PHPnow) on the Internet that can package the .7z+ file interface information into an EXE running package, and automatically run the batch file in the 7z compressed package after running the self-extraction. The make_exe.zip package contains three files: Make_exe.cmd, PHPServer.sfx, and PHPServer.sfx.cf. Seeing this, everyone should have an idea. First, compress PHPServer into PHPServer.7z file and then configure it. Just modify the PHPServer.sfx.cf file and run Make_exe.cmd.

First: Make_exe.cmd code

set v=1.2
copy /b /y PHPServer.sfx + PHPServer.sfx.cf + *.* PHPServer%v%.exe | | pause
It’s obvious! "set v=1.2" is the version, and then three files are needed for packaging.
PHPServer.sfx.cf code, open the method and drag it directly to TXT

Copy the code The code is as follows:

;!@Install@!UTF-8!
Title="Real Estate Information Management System V1.2"
BeginPrompt="# Real Estate Information Management System V1.2 Installation Package#nn * Make sure you don't have it Run IIS and other services that occupy port 80. n * If you have other similar packages installed, please stop or uninstall them first. n * Please do not move the installation directory casually after the installation is completed. nnAuthor: xilo QQ: 110026985 Homepagehttp://www.xilo.cn. "
ExtractDialogText="Please wait, decompression is in progress. File..."
ExtractTitle="Extracting..."
ExtractPathText="Please select the decompression path (English characters only):"
ExtractCancelText="Cancel"
CancelPrompt=" Do you really want to quit?"
GUIFlags="4+8+32+64+256+2048"
InstallPath="D:\PHPServer"
RunProgram="cmd /c setup.cmd"
;!@InstallEnd@!

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/319562.htmlTechArticleThe corporate website is easy to say, at least it needs a virtual host or something; but OA, finance... these internal systems are not easy to say Well, you can’t just throw the code and database to others, write a description, and let them...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles