Статьи

WebMatrix: почему разработчикам PHP следует уделять внимание


Прошли те времена, когда разработчикам PHP приходилось отказываться от бизнеса, потому что клиенты использовали Windows Servers. Если вы являетесь разработчиком PHP и искали экономичный и простой способ начать разработку веб-сайтов для клиентов под Windows, WebMatrix — ваш новый лучший друг. С помощью WebMatrix
Microsoft создала новую точку входа в мир веб-разработки для Windows
. WebMatrix позволяет создавать веб-сайты быстро и на предпочитаемом вами языке веб-программирования. В этой статье обсуждается, что WebMatrix может сделать для вас, как разработчика PHP.

Примечание от авторов:
Раджив Хати и Навин Балани являются соавторами этой статьи.
Раджив Хати работает консультантом по программному обеспечению для платформы J2EE. Его интересы — разработка и проектирование приложений на основе J2EE. Раджив получил сертификаты SUN по технологиям Java и J2EE (Web, EJB, Architect). Он внес свой вклад в IBM developerWorks, написав статьи об Ajax, Web-сервисах, DB2 и XML. Он является соавтором первой книги по Apache CXF Framework. С ним можно связаться по адресу http://www.rajeevhathi.com.

Введение в WebMatrix

WebMatrix is a free web development tool from Microsoft that includes everything you need for web site development. WebMatrix provides an integrated environment for building, testing, and deploying web sites. This integrated environment includes an embedded IIS web server, database, and programming template that lets you get started with web site development,  which includes PHP and .NET applications. If you use any of the widely used blog and content management solutions based on the PHP programming language (such as WordPress, Joomla, or Drupal) or .NET-based solutions (such as DotNetNuke), WebMatrix allows you to configure and download these applications quickly through its Open Gallery feature.

В этой статье мы опишем два способа начать разработку PHP с использованием WebMatrix. Первый подход включает в себя начинать с нуля, создав новый проект веб-разработки. Второй подход включает интеграцию существующего приложения с открытым исходным кодом, такого как WordPress, и настройку веб-сайта с помощью WebMatrix. Этот второй подход похож на импорт любого существующего PHP-приложения и начало его разработки.

Установка WebMatrix

Чтобы начать работу с WebMatrix, перейдите по адресу http://www.microsoft.com/web/webmatrix/ и нажмите Установить WebMatrix .   Это запустит установщик веб-платформы, который проведет вас через процесс установки WebMatrix. Рекомендуется принять значения по умолчанию для установки необходимых компонентов.

При запуске WebMatrix открывается следующий экран.

Параметр « Сайт из веб-галереи» позволяет быстро приступить к работе с предварительно настроенными веб-приложениями, такими как WordPress или Drupal. Параметр « Сайт из шаблона» позволяет создать пустой веб-сайт (как показано ниже). На сайтах Starter, Bakery, Photo Gallery и Calendar в настоящее время доступны шаблоны приложений .NET; Эти примеры приложений могут использоваться как справочные или расширенные для создания сквозных приложений. Параметр « Мои сайты» позволяет вам работать с существующими проектами WebMatrix, которые вы создали. Параметр « Сайт из папки» позволяет импортировать существующие проекты на основе PHP (или .NET).

Создание веб-сайта PHP

В качестве примера, мы будем использовать пустой сайт для создания примера приложения PHP.  Нажмите значок « Пустой сайт» и введите название сайта «SampleApp». Затем включите поддержку PHP для сайта, нажав « Настройки» и нажав кнопку « Включить PHP» , как показано ниже. Откроется всплывающее окно, в котором вас попросят выбрать и установить версию PHP. Выберите нужную версию и нажмите « Установить» .

,

Разработка и тестирование приложения PHP

После установки PHP нажмите « Файлы», а затем « Новый» . Выберите тип файла PHP из общих параметров, укажите имя «techfeeds.php» и нажмите « ОК» . techfeeds.php откроется в редакторе.   Теперь вы можете начать кодирование приложения PHP.

WebMatrix предлагает возможности подсветки синтаксиса кода PHP, так что вы можете легко идентифицировать части кода PHP и синтаксические ошибки быстро. Давайте создадим наш пример приложения, добавив следующие строки кода между тегами <body> </ body>, как показано ниже. Это читает последние RSS-каналы от naveenabalani.com. <Тело>

<?php

function load_file($url)

{ $ch = curl_init($url);

#Return http response in string

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$xml = simplexml_load_string(curl_exec($ch));

return $xml;

}

$feedurl = 'http://naveenbalani.com/index.php/feed/';

$rss = load_file($feedurl);

foreach ($rss->channel->item as $item)

{

echo "<h2>" . $item->title . "</h2>";

echo "<p>" . $item->description . "</p>";

} ?>

</body>

Once you have pasted the above code in the editor, you will see the PHP syntax highlighting capability go to work. Next, click the Run icon in the top menu to run the application. This will show you the RSS feed in the browser. As you can see, you are up and running with a sample PHP application within minutes.

Publishing the PHP application

Once you have created your PHP application, you can publish your application on your web site using the Publish feature. To do this, click the Publish icon and provide the options in the Publish settings. In this example, I used the FTP protocol option and provided the site path inside of www root folder (i.e., wwwroot/util/php). Click Validate connection and you should see a message that says, “Connected Successfully”. Click Save. You will see a message as shown below. 

Click Yes.

The message I received said that the compatibility couldn’t be determined, but since I knew that I have a hosting server which supports PHP 5.3, I went ahead and published the changes.

In the preview window, you will see a list of files being uploaded. Select the file and click Continue. You should see a success message along with the URL (for instance — http://naveenbalani.com/util/php/techfeeds.php) .  For subsequent publishes, WebMatrix keep tracks of what local files are changed so that you can upload only changed files on the server. Within a few minutes, you have deployed your PHP application on your hosting environment. Any subsequent changes can be tested on a local environment and published to the hosting environment quickly.

Development using an Existing Web Application

This section focuses on developing a simple web site using WordPress with the help of WebMatrix. WordPress is an open–source, widely used blogger tool that can be used to create a blog web site where users can view and post comments. WordPress comes as part of the Web gallery in WebMatrix. To build the site using WordPress, follow these steps.

1.      Select WordPress from the Gallery.

When you launch WebMatrix, you can choose open-source applications, including WordPress, from the Web Gallery. To set up WordPress, click the Site From Web Gallery option. You will see a list of open-source web applications supported by WebMatrix. Click the WordPress icon and enter the name of the site that you wish to create. The default site name is ”WordPress”. In this example, we will change this to “My Simple WordPress Site”.

 

2.      Select DB engine.

The next screen prompts you to select the database engine. You can only select the MySQL database engine because WordPress (by default) supports only MySQL. Click Next. You will be prompted for your admin information. By default, the admin user name is “root”. Enter the password and make sure to note it down somewhere so that you do not forget.

3.      Download and install WordPress and MySQL.

The next screen prompts you to accept or decline the user licensing agreement. Click I agree and WebMatrix will start downloading and installing WordPress and MySQL. It will also download and install PHP and the MySQL Connector. The total download size will be approximately 115MB and should take a short time to install, but obviously the download time will depend on your internet broadband connection speed.

The installation of WordPress will require you to set up the database. The next screen prompts you to create a database where WordPress will store all your site related information.

By default, the Database Name is “wordpress” and the Database User Name is ”wordpressuser”. You will need to enter the database user password and then re-enter it. You also have to provide the password for your admin root user, which is the password that you set up in the previous step. You can leave the rest of the fields as their default values. Click Next to install WordPress. 

WebMatrix launches your site’s home window where you can manage your files, database, and reports. Click the Files tab to see the list of files that represent the content of your web site. You can edit these files to modify your site content.

4.      Setting up your WordPress site.

Now you can set up your site details. Click Run on the ribbon menu to run your site. The WordPress index page launches. Enter your Site Title, Username (admin role), Password, and email ID. We will give the site the title: ”My Sample WordPress Site”.

The username and password are used to administer the site from WordPress. Once you provide the necessary information, your site is ready for use. You can enter your site administration dashboard, which is the central area where you can create and manage your site blogs and certain other features, using the following URL: http://localhost:8397/wp-login.php. Enter your username and password. You will notice that WordPress has created the default blog page called “Hello World”. You can view your sample blog and site home page using the following URL: http://localhost:8397/.

5.      Modifying your website with WebMatrix

Now that you have your web site set up, you can easily modify it with WebMatrix. Go to your site design home in WebMatrix. Click the Files tab to see the list of WordPress PHP files. As stated earlier, these files represent the overall content of your website. As a WordPress user, you can tweak or change these PHP files to customize your web site. Double-click any of the PHP files to open them in the WebMatrix editor. The editor distinguishes PHP files from other web formats. After you make changes to the file, click Save and then refresh your web site. There are no extra steps for deployment.

Conclusion

WebMatrix allows you to develop and test PHP applications. Additionally, you can easily publish your applications and subsequent updates in the hosting environment very quickly. PHP developers have nothing to fear anymore when developing on a Windows environment.  WebMatrix seamlessly handles all of the complexities in the background and handles a good deal of tedious coding for the developer.