Home >Backend Development >PHP Tutorial >Develop a simple blog system using Phalcon framework

Develop a simple blog system using Phalcon framework

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-28 08:27:271429browse

Use the Phalcon framework to develop a simple blog system

Source code: https://github.com/yanglr/phalcon_practice/tree/master/blog

To use the Phalcon framework, you first need to download the phalcon extension. Then set it to enable in php.ini.

This article uses Phalcon to develop a simple blog system. The configuration environment is: Linux+nginx+mysql+PHP+Phalcon+bootstrap

step1: Create the folder blog in the Web directory corresponding to nginx (for example: /home/www/server/blog), and then git After cloning git@github.com:yanglr/phalcon_practice.git, copy the contents in ./phalcon_practice/blog中的内容复制到文件夹/home/www/server/blog./phalcon_practice/blog

to the folder

;

step 2: Configure more in conf/vhost under the nginx configuration directory Module routing settings, create the file dev.blog.io.conf in this directory, its content is as follows:

Restart nginx after modification.

step 3: Modify the Mysql related information in the app/config/config.php file and modify it according to the specific situation;

step 4: Create the database phalconblog in mysql, and then change the sql in the app/sql folder The file phalconblog-data.sql is imported into mysql. You can import it directly in mysql or use navicat...

step 5: Modify the /etc/hosts file and add the statement:

<code>?.?.?.? dev.blog.io
</code>

here?.?. ?.?It is the IP address you see using the ifconfig command under Linux

step 6: Use a browser to visit http://dev.blog.io.

Special instructions:

Account: admin Password: admin

Account: test Password: test  使用Phalcon框架开发一个简易的博客系统

 使用Phalcon框架开发一个简易的博客系统

 使用Phalcon框架开发一个简易的博客系统

 使用Phalcon框架开发一个简易的博客系统 The above has introduced the development of a simple blog system using the Phalcon framework, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
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