Skip to content
David Turner edited this page Nov 29, 2015 · 19 revisions

Introduction

In this course, you will create a single Cloud9 workspace named cse322 and use it for all your assignments. The purpose of this assignment is to get started with this process by creating an HTML5 Cloud9 workspace and sharing it with me.

Instructions

  1. Create a free Cloud9 account.
  2. Create a Cloud9 workspace named cse322 using the HTML5 project type. You will do all your work in this workspace for the remainder of the course.
  3. Create a file named index.html to serve as the home page for your site. Include the following list in this file.
<h2>CSE 322 Assignments</h2>
<ul>
  <li><a href="html/">html</a>
  <li><a href="css/">css</a>
  <li><a href="less/">less</a>
  <li><a href="bootstrap/">bootstrap</a>
  <li><a href="ajax/">ajax</a>
  <li><a href="ajax2/">ajax2</a>
  <li><a href="react/">react</a>
</ul>

These links point to folders that contain work from subsequent assignments. 4. Share your workspace with me, so that I can evaluate your work through out the course. My Cloud9 id is csusbdt. Make sure you give me read-write privileges. 5. Send me an email with a link to your workspace. Write cloud9 assignment in the subject line of the email.

Issue

Toward the end of the Fall 2015 quarter, students were starting to get the following error message when trying to run their projects.

sed: can't read /etc/php5/apache2/conf.d/20-xdebug.ini: No such file or directory
Process exited with code: 2

I don't know how to fix this but I do know a work-around. Open a terminal window and run the following command:

apache2 -k start

The command runs correctly without reporting anything.

You'll need to know the url of your running application, so you should first start Apache using the run button and open the url that appears above the error message. After this, run the apache2 command given above to start the server.