1 / 25

Creating a Home Web Server

Creating a Home Web Server. What is a Server?. Software program Runs continuously Lets people download files from your computer Can be any kind of file, but we’re mainly concerned with .html files. How a WAMP server gets PHP code to a client browser (Windows Apache MySQL PHP Web Server).

Download Presentation

Creating a Home Web Server

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Creating a Home Web Server

  2. What is a Server? • Software program • Runs continuously • Lets people download files from your computer • Can be any kind of file, but we’re mainly concerned with .html files.

  3. How a WAMP server gets PHP code to a client browser (Windows Apache MySQL PHP Web Server) WAMP Server a.php <? Echo “Hello”; ?> PHP Interpreter Rendered PHP In HTML format Request a.php Client Browser Rendered PHP In HTML format <html> <body> Hello </body> </html> My SQL Database Send back a.html

  4. Setting up a Home Web Server • Download Apache version 2.2.15: • http://httpd.apache.org/download.cgi#apache22 • “Win32 Binary without crypto (no mod_ssl) (MSI Installer)”

  5. Make Sure It Worked • Find Apache HTTP Server in your programs menu and click ‘Start’! • In a web browser, type the address http://localhost/ • See the victory message

  6. Configuring Your Server • Make a folder for your html files • We’re going to change 3 lines in the file conf\httpd • Open the file in Notepad

  7. Comments/Documentation # # This is the main Apache HTTP server configuration file. It contains the # configuration directives that give the server its instructions. # See <URL:http://httpd.apache.org/docs/2.2> for detailed information. # In particular, see # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html> # for a discussion of each configuration directive. # <IfModule log_config_module> # # The following directives define some format nicknames for use with # a CustomLog directive (see below). # LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common <IfModule logio_module> # You need to enable mod_logio.c to use %I and %O LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio </IfModule>

  8. Editing the Config File 1. Comment out old root directory, replace with yours # # DocumentRoot: The directory out of which you will serve your # documents. By default, all requests are taken from this directory, but # symbolic links and aliases may be used to point to other locations. # DocumentRoot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs" # DocumentRoot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs" DocumentRoot "C:/Users/Jacob/Documents/BIY” Note the direction of the slashes!

  9. Editing the Config File 2. # # This should be changed to whatever you set DocumentRoot to. # <Directory "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs"> # <Directory "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs"> <Directory "C:/Users/Jacob/Documents/BIY">

  10. Editing the Config File 3. # # AllowOverride controls what directives may be placed in .htaccess files. # It can be "All", "None", or any combination of the keywords: # Options FileInfo AuthConfig Limit # AllowOverride None # AllowOverride None AllowOverride All

  11. Using the Server • Refresh the Apache server • Put some files in your folder and go to http://localhost/ to see them

  12. Using the Server • Name a file index.html to make it the “homepage.” • Then you can use hyperlinks to reach the other pages in the folder. • While your server is running, other computers can access your server using your IP address (though you will probably have to work around your firewall, and this can be complicated)

  13. Downloading and Using PHP

  14. Download and Install PHP • Download PHP from http://us3.php.net/get/php-5.2.13-win32-installer.msi/from/a/mirror • When prompted for what server to setup for, choose Apache 2.2.x • The installer will try to configure Apache for you, but it might not work (it didn’t for my computer).

  15. Download and Install PHP

  16. Installation Options • Don’t install every option! Some of them will cause you pain. • For now, leave out all the extensions but take everything else.

  17. Configuring Apache Again Add the following lines to the end of our old friend, conf\httpd LoadModule php5_module "C:/Progra~2/PHP/php5apache2_2.dll" AddHandler application/x-httpd-php .php PHPIniDir "C:/Progra~2/PHP/” In place of C:/Progra~2/PHP/, put the path of the folder which contains the file php5apache2_2.dll. C:/Progra~2/PHP/ is the default for Windows 7. It will almost assuredly be different for Vista or XP (or for non-Microsoft OS’s).

  18. Ready to Program in PHP! • Restart your Apache server. • If Apache refuses to start, you may have mistyped something, you may have forgotten to not install the extensions, or there may be some other problem. If you get stuck, feel free to call or e-mail Jacob. - Jacob Bredthauer jabredth@mit.edu - 402-680-5441 • Now let’s start doing some basic PHP tasks!

  19. echo Try putting this simple file on your server: <HTML> <HEAD> </HEAD> <BODY> <?php echo "Web designers rule!"; ?> </BODY> </HTML> From the user’s point of view, the echo’d statement appears to be part of the html code. The echo command is analogous to “print” in Python or “System.out.println” in Java.

  20. echo Echo statements can contain HTML tags. <HTML> <HEAD> </HEAD> <BODY> <?php echo “<p class=‘myclass’><a href=‘www.build-it-yourself.com’>Web designers</a> rule!</p>”; ?> </BODY> </HTML>

  21. Variables PHP can store variables and use them in math operations or other functions. <?php $n = 2; $nsquared = $n*$n; ?> <HTML> <HEAD> </HEAD> <BODY> <?php echo “$n squared equals $nsquared."; ?> </BODY> </HTML>

  22. Things to Remember About PHP • If a file contains any PHP code, save it with the extension .php (instead of .html). • End every PHP statement with a semicolon. • Variables always begin with $.

  23. Suggestions for Next Week • Install Apache and PHP. • Make a simple website that uses PHP on your server.

  24. Helpful Links • Apache download: http://httpd.apache.org/download.cgi#apache22 • Apache tutorial: http://lifehacker.com/124212/geek-to-live--how-to-set-up-a-personal-home-web-server • PHP download: http://us3.php.net/get/php-5.2.13-win32-installer.msi/from/a/mirror • PHP install manual: http://www.php.net/manual/en/install.windows.installer.msi.php • PHP configuring Apache: http://www.php.net/manual/en/install.windows.apache2.php

More Related