PHP latest cloud disk system 2013 version, new UI design, enhanced functions, can be operated normally for personal and commercial use

Nowadays, the Internet is popular, an ordinary video is several gigabytes, and the hard disk is becoming increasingly insufficient. What followed was the large capacity and popularity of network disks. More and more people began to move from mobile hard disks to network cloud disks. With the development of technology, the price of servers is getting lower and lower, and the cost of building a website is also decreasing. Much lower than before. Whether you want to join the ranks of making money online or want to have a network disk of your own, a cloud disk that is completely your own, then a good cloud disk system is essential.

A fully functional cloud disk system, complete VIP function modules, highly autonomous sharing mechanism, and fool-proof operation process are a very good choice.

Today I will share the installation tutorial for the 2013 version of the Shilin Cloud Disk System. The entire process is self-installed and has detailed illustrations. Even if you are an Internet novice, you can have a network disk of your own if you want. Yes Personal use or commercial use, it’s up to you.

First, you need to download the installation package of Shilin Cloud Disk System. You can reply "yun2013" on the official account of Shilin Studio to obtain the latest version of the source code.

Secondly, upload the source code to the server, unzip it and change the folder name to whatever you want.

The next step is to create a website and database, and record and save the database account and password, which will be needed for subsequent installation.

Then configure the pseudo-static. I use the Pagoda system platform and the installation environment is a combination of Nginx+Php+MySql. Therefore, my pseudo-static rules are:

if (!-e $request_filename) {
	rewrite ^/index.php(.*)$ /index.php?s=$1 last;
	rewrite ^/admin.php(.*)$ /admin.php?s=$1 last;
	rewrite ^/api.php(.*)$ /api.php?s=$1 last;
	rewrite ^(.*)$ /index.php?s=$1 last;   break;
}

The next step is to install the source code program of the 2013 version of Shilin Cloud Disk System. It is very simple. Follow the prompts and follow the next step.

In the end, it took less than 1 minute to install the entire Shilin Cloud Disk System 2013 version program.

After the installation is completed, enter the background, set the basic information, and modify the rest according to your needs.

What needs to be noted here is that this system seems to be for the convenience of personal use, so the payment interface does not use the official interface, but uses the more popular Easy Payment interface. Whether it is for personal use or corporate use, the Yipay interface is easy to find. If you are really too lazy to find such an interface, you can also build your own Yipay platform to be self-sufficient. The source code of Yipay is included in the source code I shared before. , friends who want to know more can look for it themselves or follow the official account of Shilin Studio, where I found the source code.

After configuring it according to your own needs, you can enjoy it!

By the way, regarding the pseudo-static aspect, I only shared the environment rules of Nginx with you above. If you are using the Apache environment, you can use the following pseudo-static rules:

<IfModule mod_rewrite.c>
	Options +FollowSymlinks -Multiviews
	RewriteEngine On

	RewriteCond %{REQUEST_FILENAME}!-d
	RewriteCond %{REQUEST_FILENAME}!-f
	RewriteRule ^(.*)$ index.php/$1[QSA,PT,L]
</IfModule>

Save the above rules as a ".htaccess" file and put it in the website's running directory/public.

If the upload reports the following error:

成功0个,失败1个(SQLSTATE[HY000]: General error: 1364 Field 'meta' doesn't have a default value),重新上传 或 忽略

This can be solved by modifying the configuration file of the MySql database. The specific modification method is:

Open the database configuration file my.ini, add the following line and then restart the Mysql database.

sql-mode=NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION

After the database restart is completed, refresh the user homepage of the network disk and upload the file again, and the problem will disappear.

Guess you like

Origin blog.csdn.net/YUMENG_FLY/article/details/134212709
Recommended