GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/JimMartinson/Classes/CST1611/Labs/ |
Upload File : |
Lab 4 - mod_autoindex Grading Criteria Demonstrated assignment effectively: 10 points. There are some things I expect. If they are incorrect you will lose the following: Work submitted incorrectly: -1 pt. This covers errors such as incorrect files names, incorrect file formats, poor formatting, etc. Second and subsequent submission of work for grading: -1 pt. Work submitted late: -1 pt per week. I reserve the right not to apply the deduction points at my absolute discretion. Alias "/icons" "C:/Data_WWW/CST1611/Lab04/icons" Include conf/httpd-autoindex.inc IndexOptions FancyIndexing NameWidth=* HTMLTable FoldersFirst IgnoreCase SuppressDescription VersionSort AddIcon /icons/directory.gif ^^DIRECTORY^^ AddIcon /icons/html.gif .htm .html .shtml AddIcon /icons/text.gif .doc .txt README AddIcon /icons/wav.gif .wav AddIcon /icons/image2.gif .gif .jpg .png AddIcon /icons/ooga.gif .ooga DefaultIcon /icons/unknown.gif . -10 The hosts and httpd.conf files were not included in your submission. =e -10 The httpd.conf file was not included in your submission. =e -10 The directives from step 6.3 must be in your Lab04.test VirtualHost. They should be placed between the </Directory> and </VirtualHost> directives. =e -0 Lab 4 should have been at the end of you httpd.conf file. -1 The directives from steps 6 must be between the </Directory> and </VirtualHost> directives in the Lab04.test VirtualHost. -0 Line 604; The indexoptions directive properly uses the Pascal case format: IndexOptions. -2 Steps 6.5 and 6.6; You did not perform this step. -1 Step 6.5; The oogo.gif file is actually a jpg format file with a .gif extension. Either convert the file or rename it and change the AddIcon directive. -0 Step 6.5; The ooga.png file is a litle big. Apache icons are usually 22x22. -1 Step 6.9; The Test.ooga file does not display your ooga icon file in the screenshot. Your Apache directives look correct. Did you need to restart Apache or refresh your browser window? -2 Incorrect Alias directive on line 597. You have an incorrect path. You have: `C:Data/_WWW/CST1611/Lab04/icons`. Note the extra / after Data. This is why your icons did not show. -1 Incorrect Alias directive on line 607. Paths in the httpd.conf file use / to separate directories, not \. -3 Incorrect AddIcon directives on lines 608-612. The AddIcon directive takes two types of attributes: icon, which is either the path to the icon like "/icons/image.png" or (AltText,path) like (Image,/icons/image.png) name or a list of names separated by a space. The name could be a file extension, a wildcard expression, a partial filename or a complete filename. =e -2 Incorrect Alias directive on line 629. Paths in the httpd.conf file use / to separate directories, not \. Because of this your AddIcon directives are looking in the Apache/icons directory not in Lab04/icons. -5 None of your AddIcon directives are correct. You have a period (.) at the end that should not be there. e.g. Instead of looking for files that end with ".wav", Apache is looking for files that end with ".wav.". -1 Your IndexOptions options should not have a plus sign (+) in front of them. The plus sign designates adding this to options set previously. I don't want you to do that. I want you to define all options. -2 Missing the IndexOptions directive required by step 5.7. -1 Step 6.7; Lines 606-612; These should be done with one IndexOptions directive. -1 Step 6.7; Lines 606-612; The IndexOptions should be in the Lab04.test VirtualHost.