This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
printstring macro msg | |
mov ah, 09h | |
mov dx, offset msg | |
int 21h | |
endm | |
readnum macro num | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# allow all overrides and options | |
<Directory /home/jharvard/vhosts> | |
AllowOverride All | |
Options All | |
Require all granted | |
</Directory> | |
# VirtualHost will override apache2.conf defaults | |
<VirtualHost *:80> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# phpMyAdmin default Apache configuration | |
Alias /phpmyadmin /usr/share/phpmyadmin | |
<Directory /usr/share/phpmyadmin> | |
Options FollowSymLinks | |
DirectoryIndex index.php | |
<IfModule mod_php5.c> | |
AddType application/x-httpd-php .php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule mod_alias.c> | |
<IfModule mod_cgi.c> | |
Define ENABLE_USR_LIB_CGI_BIN | |
</IfModule> | |
<IfModule mod_cgid.c> | |
Define ENABLE_USR_LIB_CGI_BIN | |
</IfModule> | |
<IfDefine ENABLE_USR_LIB_CGI_BIN> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# phpMyAdmin default Apache configuration | |
Alias /phpmyadmin /usr/share/phpmyadmin | |
<Directory /usr/share/phpmyadmin> | |
Options FollowSymLinks | |
DirectoryIndex index.php | |
<IfModule mod_php5.c> | |
AddType application/x-httpd-php .php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# phpMyAdmin default Apache configuration | |
Alias /phpmyadmin /usr/share/phpmyadmin | |
<Directory /usr/share/phpmyadmin> | |
Options FollowSymLinks | |
DirectoryIndex index.php | |
<IfModule mod_php5.c> | |
AddType application/x-httpd-php .php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Edited by CS50 | |
# This is the main Apache server configuration file. It contains the | |
# configuration directives that give the server its instructions. | |
# See http://httpd.apache.org/docs/2.4/ for detailed information about | |
# the directives and /usr/share/doc/apache2/README.Debian about Debian specific | |
# hints. | |
# | |
# | |
# Summary of how the Apache 2 configuration works in Debian: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- MySQL dump 10.13 Distrib 5.5.44, for debian-linux-gnu (i686) | |
-- | |
-- Host: localhost Database: pset7 | |
-- ------------------------------------------------------ | |
-- Server version 5.5.44-0ubuntu0.14.04.1-log | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
/*!40101 SET NAMES utf8 */; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.MODEL SMALL | |
.STACK 100H | |
.DATA | |
.CODE | |
MAIN PROC | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install Apache | |
Apache is a free open source software which runs over 50% of the world’s web servers. | |
To install apache, open terminal and type in these commands: | |
sudo apt-get update sudo apt-get install apache2 | |
Install MySQL | |
MySQL is a powerful database management system used for organizing and retrieving data To install MySQL, open terminal and type in these commands: sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql | |
During the installation, MySQL will ask you to set a root password. If you miss the chance to set the password while the program is installing, it is very easy to set the password later from within the MySQL shell. | |
Once you have installed MySQL, we should activate it with this command: sudo mysql_install_db | |
Finish up by running the MySQL set up script: |