熱門文章

顯示具有 PHP 標籤的文章。 顯示所有文章
顯示具有 PHP 標籤的文章。 顯示所有文章

2016年8月17日 星期三

[Raspberry Pi]安裝MySQL資料庫-part2

1.[Raspberry Pi]安裝PHP網頁伺服器-part1
2.[Raspberry Pi]安裝MySQL資料庫-part2
3.[Raspberry Pi]架設Wordpress英文版,並且中文化-part3
4.[Raspberry Pi]架設中文版Wordpress-part3B

請先安裝PHP網頁伺服器,再接下來安裝MySQL資料庫工具
此教學為遵照柯博文老師的Raspberry Pi超炫專案與完全實戰 之學習紀錄。


安裝MySQL

sudo apt-get install mysql-server


[Raspberry Pi]架設中文版Wordpress-part3B

在安裝wordpress之前請先參照先前的文章安裝
1.[Raspberry Pi]安裝PHP網頁伺服器-part1
2.[Raspberry Pi]安裝MySQL資料庫-part2
3.[Raspberry Pi]架設Wordpress英文版,並且中文化-part3
此教學為遵照柯博文老師的Raspberry Pi超炫專案與完全實戰 之學習紀錄。


WordPress 是一個開放原始碼網誌/内容管理系统,專注於美學、網頁標準和易用性的個人發佈平台。WordPress 兼具自由與無價,你可以下載並且免費使用。
目前已超過8000萬以上網站使用,在全世界的網站中26%是使用wordpress架設的,我也有架設我個人的攝影作品集- Fuji-X Tribe 。


安裝前,先用以下指令確認網頁根目錄是否為 /var/www 
sudo  nano /etc/apache2/sites-enabled/000-default.conf

[Raspberry Pi]架設Wordpress英文版,並且中文化-part3

在安裝wordpress之前請先參照先前的文章安裝
1.[Raspberry Pi]安裝PHP網頁伺服器
2.[Raspberry Pi]安裝MySQL資料庫
此教學為遵照柯博文老師的Raspberry Pi超炫專案與完全實戰 之學習紀錄。


WordPress 是一個開放原始碼網誌/内容管理系统,專注於美學、網頁標準和易用性的個人發佈平台。WordPress 兼具自由與無價,你可以下載並且免費使用。
目前已超過8000萬以上網站使用,在全世界的網站中26%是使用wordpress架設的,我也有架設我個人的攝影作品集- Fuji-X Tribe 。


安裝前,先用以下指令確認網頁根目錄是否為 /var/www 
sudo  nano /etc/apache2/sites-enabled/000-default.conf

[Raspberry Pi]安裝PHP網頁伺服器-part1

1.[Raspberry Pi]安裝PHP網頁伺服器-part1
2.[Raspberry Pi]安裝MySQL資料庫-part2
3.[Raspberry Pi]架設Wordpress英文版,並且中文化-part3
4.[Raspberry Pi]架設中文版Wordpress-part3B
此教學為遵照柯博文老師的Raspberry Pi超炫專案與完全實戰 之學習紀錄。

安裝

使用以下三行,先更新系統,在下載apache2和設定php5的指令
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install apache2 php5 libapache2-mod-php5

2016年7月24日 星期日

[PHP]Introduction to the Yii Framework

by 
Writing "Hello World" in PHP is quite easy but building an actual web application becomes complicated quickly. As soon as you want to manage security, write DRY code, or leverage MVC design techniques, PHP seems lacking. In the past I've worked with Ruby on Rails but found that there's still a lot that's hard with it - especially when it comes to hosting and deployment in an economic and flexible manner. 

This is where PHP frameworks come in.

more here