Difference between revisions of "Workshop - week 01"

From mi-linux
Jump to navigationJump to search
Line 1: Line 1:
 
[[Main Page]] >> [[Web Frameworks]] >> [[Web Frameworks - Workbook]] >> Workshop - week 01
 
[[Main Page]] >> [[Web Frameworks]] >> [[Web Frameworks - Workbook]] >> Workshop - week 01
  
Okey dokey, so let's see what we need to do.
+
==Quick Start Zend Framework==
  
We are going to be following the Zend Framework Quickstart tutorial to ensure we can get Zend work properly from our University area.
+
We are going to be following the Zend Framework Quickstart tutorial to ensure we can get Zend to work properly from our University area.
  
 
Following how to [http://framework.zend.com/docs/quickstart/set-up-the-project-structure set up a project structure], we need to create a directory structure in our personal space.
 
Following how to [http://framework.zend.com/docs/quickstart/set-up-the-project-structure set up a project structure], we need to create a directory structure in our personal space.
Line 14: Line 14:
 
library/  
 
library/  
 
public/
 
public/
 +
 +
One thing that is not mentioned in the Quick Start, which is often a good idea to do when you begin working on a new PHP server for the first time is uploading a [http://uk2.php.net/phpinfo PHP Info] test file.
 +
 +
<source lang="php">
 +
<?php
 +
// Shows all information, defaults to INFO_ALL
 +
phpinfo();
 +
?>
 +
</source>

Revision as of 21:31, 24 January 2009

Main Page >> Web Frameworks >> Web Frameworks - Workbook >> Workshop - week 01

Quick Start Zend Framework

We are going to be following the Zend Framework Quickstart tutorial to ensure we can get Zend to work properly from our University area.

Following how to set up a project structure, we need to create a directory structure in our personal space.

Using either an FTP client (FileZilla, WS-FTP, etc), or using a Shell prompt through putty, set up the following folder structure:

QuickStart/ application/ controllers/ views/ scripts/ library/ public/

One thing that is not mentioned in the Quick Start, which is often a good idea to do when you begin working on a new PHP server for the first time is uploading a PHP Info test file.

<source lang="php"> <?php // Shows all information, defaults to INFO_ALL phpinfo(); ?> </source>