SlideShare a Scribd company logo
Playing with PHP on Azure
A Zend experience
Cédric Derue – GWAB 2014
 Web Architect @ Altran
 Skills:
•  Zend Framework 2
•  ASP.NET MVC
•  JavaScript
•  NoSQL
 Twitter: @cderue
Cédric Derue
 You love PHP,
 You love scripting,
 You love pachyderms,
 You know Windows?
Who this session is for?
 Cloud Computing definition
 Windows Azure introduction
 Zend Framework 2 use case
 Azure Web Sites
 Azure Storage
Agenda
Cloud Computing origin
 Arpanet
 Amazon
 Google
 HP
 Microsoft
Windows Azure solution
Choose your ressources
App
A simple equation to summary Windows Azure
Blocs de
construction
applicatif
Compute Application blocks
Infra for building and deploying apps
 Evolutive and scalable
 Fault tolerance
 On demand
 Pay for what you use
Windows Azure benefits
Azure free trial
Windows Azure Portal
Windows Azure execution models
Cloud Services
Mobile Services
Virtual Machines
Web Sites
Virtual Machines
Highly
configurable
Windows Server
or Linux
IaaS
Scalable
Web Sites
.NET, PHP,
Python, Node.js,
Java
IIS
PaaS
Scalable
Mobile Services
Android
iOS
HTML
Hybrid
Storage
Authentication
Push
Monitoring
MBaaS
Scalable
Cloud Services
Highly
configurable
IIS
PaaS (Web &
Worker Roles)
Scalable
How to choose the right(s) model(s)?
 Create a new Azure Web Site
 Start a new ZF2 app on Azure
 Add ZF2 modules
 Work with relational data on Azure
 Work with non relational data on Azure
 Install Windows Azure SDK for PHP
 Demonstrate reversibility
PHP Azure Web Site demo
Create a new Web Site on Azure
Configuring source control
Explore Azure Web Site(s)
Managing configuration
 Modular
 Extensible
 High performing
 Secure
 Enterprise ready
 Community
Why Zend Framework 2?
> composer create-project
--repository-url=
"https://packages.zendframework.com"
-s dev
zendframework/skeleton-application
<path/to/install>
> composer update
> php -S localhost:8080 -t public/ public/index.php
Initialize a new ZF2 app
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="MyFixIt" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile"
ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory"
ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Web.config
> git remote add origin
https://cderue@zf2.scm.azurewebsites.net:443/zf2.git
> git remote -v
> git push origin master
Publishing with Git
First sign of life
http://zf2.azurewebsites.net
Understanding ZF2 app structure
Discovering ZF2 modules
http://modules.zendframework.com
{
"name": "cderue/zf2-myfixit",
"description": "MyFixIt Application for ZF2",
"license": "Apache License, Version 2.0",
"keywords": [
"framework",
"zf2",
"azure"
],
"homepage": "http://github.com/cderue",
"minimum-stability": "alpha",
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "2.2.*",
}
}
Composer
 ZfcUser  Authentication
 MyFixIt  Task Management
Which modules for our demo?
 Authentication is to verify that a person or
entity is what it claims to be.
 Authentication is not authorization.
Authentication
ZendAuthentication principle
Storage
ZendAuthenticationAuthenticationService
Adapter
Db LDAP … Db Session …
"require": {
"zf-commons/zfc-user": "dev-master"
}
Install ZfcUser module
<?php
return array(
'modules' => array('ZfcBase','ZfcUser')
);
 Post installation
 Installation
The MyFixIt module
 Domain Driven Design
 Dependency injection
 Table Storage
 Blob storage
 Environment specific configuration
 Reversibility
Exploring the FixIt module
 With Azure, data can be stored in different
systems like SQL or/and NoSQL databases,
blobs, drives, etc.
 Azure provides data management services
for reporting or Big Data computing.
Working with data
 Azure SQL Database
 Azure Table Storage
 Azure Blob Storage
 Others…
Working with data on Azure
$adapter = new ZendDbAdapterAdapter(
array(
'driver' => 'pdo',
'dsn' => '<dsn>'
'database' => '<mysql_db>',
'username' => '<db_user>',
'password' => '<db_user_password>',
'hostname' => '<hostname>',
)
);
Access to MySQL Azure with ZendDb
Store and access data with:
 Blob (large binary or text data)
 Table (non relational data)
 Queue (messages)
Azure Storage Services overview
 Storage in the form of tables
 Flexible schema
 High performance
 REST API
Azure Table Storage
Azure Blob Storage
Account Container Blob
cedric
pictures
movies Man of Steel.avi
Beyonce.jpg
Shakira.png
Explore Azure Storage
 Windows Azure SDK for PHP
 Zend Framework 2 components
 Symfony 2 bundles
Working with PHP on Azure
Windows Azure SDK for PHP
Windows Azure SDK for PHP
PHP Client
Librairies
Command
Line Tools
Azure
Emulators
Windows Azure
REST
API
Compute Storage Manage
My PHP application
Install Windows Azure SDK
"require": {
"microsoft/windowsazure": "*" },
"repositories": [
{
"type": "pear",
"url": "http://pear.php.net"
}
],
"minimum-stability": "dev"
}
 Installation
When you deploy an application on the cloud,
the reversibility must be taken into account to
allow execution on premise if you decide to
leave the cloud.
Think reversibility!
Switch beetween two configuration files:
 config/autoload/module.myfixit-
azure.local.php
 config/autoload/module.myfixit-
onpremise.local.php
Switch with env specific config
"require": {
"doctrine/doctrine-mongo-odm-module": "dev-master"
}
Install Doctrine ODM module
<?php
return array(
'modules' => array(
'DoctrineModule', 'DoctrineMongoODMModule'
)
);
 Installation
 Post installation
return array(
'doctrine' => array(
'connection' => array(
'server' => 'localhost',
'port' => '27017',
'user' => '<user_name>',
'password' => '<password>',
'dbname' => '<db_name>',
),
),
);
Connect to MongoDB with Doctrine
It’s time to demo
 New Relic
 Application Insights
 Zend Server (PHP only)
Monitoring your cloud applications
http://windowsazure-trainingkit.github.io/
http://blogs.msdn.com/b/microsoft_press/archive/tags/
azure/
http://www.pluralsight.com/training/
https://github.com/WindowsAzure/azure-sdk-for-php
https://www.windowsazure.com/fr-fr/support/legal/sla/
Resources
Windows Azure makes all you want …
…except French Kiss!
Summary
Thank you!

More Related Content

PDF
Playing with php_on_azure
PPTX
Sherlock Homepage - A detective story about running large web services - NDC ...
PPTX
Programming Azure Active Directory (DevLink 2014)
PPTX
Automating Your Microsoft Azure Environment (DevLink 2014)
PPTX
Microsoft Azure Websites for PHP Developers
PPTX
More Cache for Less Cash (DevLink 2014)
PDF
Using Windows Azure for Solving Identity Management Challenges (Visual Studio...
PPTX
Inside Azure Diagnostics (DevLink 2014)
Playing with php_on_azure
Sherlock Homepage - A detective story about running large web services - NDC ...
Programming Azure Active Directory (DevLink 2014)
Automating Your Microsoft Azure Environment (DevLink 2014)
Microsoft Azure Websites for PHP Developers
More Cache for Less Cash (DevLink 2014)
Using Windows Azure for Solving Identity Management Challenges (Visual Studio...
Inside Azure Diagnostics (DevLink 2014)

What's hot (20)

PPTX
More Cache for Less Cash
PPTX
Automating Your Azure Environment
PDF
Firebase slide
PPTX
Using Windows Azure for Solving Identity Management Challenges
PPTX
Windows Azure Mobile Services - The Perfect Partner
PPTX
10 Ways to Gaurantee Your Azure Project will Fail
PDF
Infrastructure as Code: Manage your Architecture with Git
PPTX
Innovations of .NET and Azure (Recaps of Build 2017 selected sessions)
PDF
Azure ARM Templates 101
PDF
Building Android apps with Parse
PPTX
Inside Azure Resource Manager
PPTX
Azure Service Fabric Mesh
PPTX
Stephane Lapointe, Frank Boucher & Alexandre Brisebois: Les micro-services et...
PDF
Tips and Tricks For Faster Asp.NET and MVC Applications
PPTX
What's New for the Windows Azure Developer? Lots! (July 2013)
PDF
Global Azure Bootcamp 2017 - Why I love S2D for MSSQL on Azure
PPTX
Azure from scratch part 4
PPSX
Windows Azure Cloud Services
PPTX
Lessons Learned from Building a Multi-Tenant Saas Content Management System o...
PPTX
Caching in Windows Azure
More Cache for Less Cash
Automating Your Azure Environment
Firebase slide
Using Windows Azure for Solving Identity Management Challenges
Windows Azure Mobile Services - The Perfect Partner
10 Ways to Gaurantee Your Azure Project will Fail
Infrastructure as Code: Manage your Architecture with Git
Innovations of .NET and Azure (Recaps of Build 2017 selected sessions)
Azure ARM Templates 101
Building Android apps with Parse
Inside Azure Resource Manager
Azure Service Fabric Mesh
Stephane Lapointe, Frank Boucher & Alexandre Brisebois: Les micro-services et...
Tips and Tricks For Faster Asp.NET and MVC Applications
What's New for the Windows Azure Developer? Lots! (July 2013)
Global Azure Bootcamp 2017 - Why I love S2D for MSSQL on Azure
Azure from scratch part 4
Windows Azure Cloud Services
Lessons Learned from Building a Multi-Tenant Saas Content Management System o...
Caching in Windows Azure
Ad

Viewers also liked (6)

PPSX
Global Windows Azure Bootcamp : Samir Arezki Multi-Tenancy. (sponsor Annuel d...
PPTX
Disaster Recovery to the Cloud with Microsoft Azure
PPTX
Transportasi vogel dan transhipment
PPTX
Global Azure Bootcamp 2016 - Azure Automation Invades Your Data Centre
PPTX
Azure Site Recovery Bootcamp
PPTX
Azure Cloud PPT
Global Windows Azure Bootcamp : Samir Arezki Multi-Tenancy. (sponsor Annuel d...
Disaster Recovery to the Cloud with Microsoft Azure
Transportasi vogel dan transhipment
Global Azure Bootcamp 2016 - Azure Automation Invades Your Data Centre
Azure Site Recovery Bootcamp
Azure Cloud PPT
Ad

Similar to Global Windows Azure Bootcamp : Cedric Derue playing with php on azure. (sponsor Annuel du MUG-Lyon: Viseo) (20)

PPTX
Running PHP In The Cloud
PPTX
phpbenelux - Microsoft & PHP (Web Platform Installer, Bridges and Azure)
PPTX
Just another Wordpress weblog, but more cloudy
PPTX
Just Another Word Press Weblog But More Cloudy
PPTX
Windows Azure Platform + PHP - Jonathan Wong
PPTX
PHP on Windows and on Azure
PPTX
PHPBenelux 2011 - Seeing PHP throug a blue azure sky
PPTX
BizSpark Startup Night Windows Azure March 29, 2011
PPTX
Windows Azure & How to Deploy Wordress
PPTX
Php on azure
PPTX
Scaling Big While Sleeping Well
PPTX
2. Windows Azure
PPTX
PHP on Windows
PPTX
PHP on Windows
PPTX
Microsoft/Zend Webcast on Cloud Computing
PPTX
Microsoft Zend webcast on Azure
PDF
Zend Framework 1.8 workshop
PPTX
Creating php cloud applications
PDF
Getting started-with-zend-framework
PDF
Sunshine php practical-zf1-zf2-migration
Running PHP In The Cloud
phpbenelux - Microsoft & PHP (Web Platform Installer, Bridges and Azure)
Just another Wordpress weblog, but more cloudy
Just Another Word Press Weblog But More Cloudy
Windows Azure Platform + PHP - Jonathan Wong
PHP on Windows and on Azure
PHPBenelux 2011 - Seeing PHP throug a blue azure sky
BizSpark Startup Night Windows Azure March 29, 2011
Windows Azure & How to Deploy Wordress
Php on azure
Scaling Big While Sleeping Well
2. Windows Azure
PHP on Windows
PHP on Windows
Microsoft/Zend Webcast on Cloud Computing
Microsoft Zend webcast on Azure
Zend Framework 1.8 workshop
Creating php cloud applications
Getting started-with-zend-framework
Sunshine php practical-zf1-zf2-migration

More from MUG-Lyon Microsoft User Group (8)

PPTX
Adoption incrémentale des tests dans VS ALM
PPTX
La gestion des périphériques modernes avec System Center 2012 R2 Configuratio...
PPSX
Global Windows Azure Bootcamp : Samuel et Emilien Pécoul, Florent Pelet Legac...
PPSX
Global Windows Azure Bootcamp : Pierre-Yves Fare Mobile Services. (sponsor An...
PDF
Global Windows Azure Bootcamp : Cedric Derue Rhinos have tea on azure. (spons...
PPSX
Global Windows Azure Bootcamp : Mobile Services
PPSX
Global Windows Azure Bootcamp : Mobile Services
PPSX
Global Windows Azure Bootcamp : Intro et Keynote
Adoption incrémentale des tests dans VS ALM
La gestion des périphériques modernes avec System Center 2012 R2 Configuratio...
Global Windows Azure Bootcamp : Samuel et Emilien Pécoul, Florent Pelet Legac...
Global Windows Azure Bootcamp : Pierre-Yves Fare Mobile Services. (sponsor An...
Global Windows Azure Bootcamp : Cedric Derue Rhinos have tea on azure. (spons...
Global Windows Azure Bootcamp : Mobile Services
Global Windows Azure Bootcamp : Mobile Services
Global Windows Azure Bootcamp : Intro et Keynote

Recently uploaded (20)

PDF
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
PPT
Design_with_Watersergyerge45hrbgre4top (1).ppt
PPTX
Introuction about WHO-FIC in ICD-10.pptx
PDF
Slides PDF The World Game (s) Eco Economic Epochs.pdf
PPTX
Introduction to Information and Communication Technology
PPTX
introduction about ICD -10 & ICD-11 ppt.pptx
PPTX
international classification of diseases ICD-10 review PPT.pptx
PDF
The Internet -By the Numbers, Sri Lanka Edition
PDF
FINAL CALL-6th International Conference on Networks & IOT (NeTIOT 2025)
PPTX
artificial intelligence overview of it and more
PDF
How to Ensure Data Integrity During Shopify Migration_ Best Practices for Sec...
PPTX
INTERNET------BASICS-------UPDATED PPT PRESENTATION
PPTX
Job_Card_System_Styled_lorem_ipsum_.pptx
PPTX
Slides PPTX World Game (s) Eco Economic Epochs.pptx
PPTX
Internet___Basics___Styled_ presentation
PDF
Testing WebRTC applications at scale.pdf
PPT
tcp ip networks nd ip layering assotred slides
PDF
Vigrab.top – Online Tool for Downloading and Converting Social Media Videos a...
PDF
An introduction to the IFRS (ISSB) Stndards.pdf
PPTX
innovation process that make everything different.pptx
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
Design_with_Watersergyerge45hrbgre4top (1).ppt
Introuction about WHO-FIC in ICD-10.pptx
Slides PDF The World Game (s) Eco Economic Epochs.pdf
Introduction to Information and Communication Technology
introduction about ICD -10 & ICD-11 ppt.pptx
international classification of diseases ICD-10 review PPT.pptx
The Internet -By the Numbers, Sri Lanka Edition
FINAL CALL-6th International Conference on Networks & IOT (NeTIOT 2025)
artificial intelligence overview of it and more
How to Ensure Data Integrity During Shopify Migration_ Best Practices for Sec...
INTERNET------BASICS-------UPDATED PPT PRESENTATION
Job_Card_System_Styled_lorem_ipsum_.pptx
Slides PPTX World Game (s) Eco Economic Epochs.pptx
Internet___Basics___Styled_ presentation
Testing WebRTC applications at scale.pdf
tcp ip networks nd ip layering assotred slides
Vigrab.top – Online Tool for Downloading and Converting Social Media Videos a...
An introduction to the IFRS (ISSB) Stndards.pdf
innovation process that make everything different.pptx

Global Windows Azure Bootcamp : Cedric Derue playing with php on azure. (sponsor Annuel du MUG-Lyon: Viseo)