
The main features of DYCMS include:
Pure navigation interface (eliminate complexity and simplify)
Front-end design for responsive design
Aggregated search box (one-click switch between Baidu, Sogou, 360, Bing search platform)
Users can apply for inclusion by themselves, and the administrator will review it in the background
Article management and publishing function
Each article has a comment function
Home Top Quotes and Recommended List
Read one article every day
user registration
user points system
User Notes
invite friends
Environment:
Nginx1.16+mysql 5.7+php7.3
php7.3 requires installing two extensions: fileinfo and exif
php7.3 needs to undisable putenv and proc_open:
I. Upload the source code to the root directory of the website and extract it
II. Follow the.env.example file in the directory and rename it to.env
III. Modify the database configuration in.env
DB_CONNECTION database type, just keep the default mysql
DB_HOST database server address, generally fill localhost or 127.0.0.1
DB_PORT database port address defaults to 3306 and does not need to be modified
DB_DATABASE database name
DB_USERNAME database user name
DB_PASSWORD= Database Password
IV. Log in to your linux server and use the CD command to enter your website directory
1.php7.3 Install the zip extension
cd /www/server/php/73/src/ext/zip/
/www/server/php/73/bin/phpize
./ configure –with-php-config=/www/server/php/73/bin/php-config
make && make install
Then, add back the lines that were previously deleted from the PHP configuration file:
echo “extension = zip.so” >> /www/server/php/73/etc/php.ini
Finally, you can reload the PHP service:
service php-fpm-73 reload
2. Go to the root directory of the website and use composer to load the extended application;
composer install
3. Generate a system secret command key ;
php artisan key:generate
4. Generating data tables;
php artisan migrate
5. Generating initialized data;
php artisan db:seed
6. Finally, clean up the system cache
php artisan cache:clear
7. Set ng pseudo-static
location / {
try_files $uri $uri/ /index.php?$ query_string;
}
8. The public and storage folders under the root directory require writable permissions
v. installation is complete
Nginx1.16+mysql 5.7+php7.3
php7.3 requires installing two extensions: fileinfo and exif
php7.3 needs to undisable putenv and proc_open:
Demonstration Station (automatic data recovery every hour)
Front desk: 3.u7u.top
Backstage: 3.u7u.top/admin
Account: admin
Password: www.ohbbs.cn
Comments0