Media Access online media sharing ECE 3553 Multifarious Systems Cary Fung December 7, 2007.

Slides:



Advertisements
Similar presentations
PHP and CSS to control web apps styles. CSS is used to style today’s web applications.
Advertisements

George Mason University
TS 313 Multimedia Applications Welcome to TS 313 Multimedia Applications There is no audio lecture associated with this set of introduction slides Refer.
ONLINE DATA UPLOAD INSTRUCTION
Completely customizable blogging.. Brief Overview  What is a blog?  What is WordPress?  Why is WordPress superior?  Cool themes  How to get WordPress?
© Anselm SpoerriInfo + Web Tech Course Information Technologies Info + Web Tech Course Anselm Spoerri PhD (MIT) Rutgers University
CADDLAB Medical Imaging on Remote Compute Servers.
Internet Development 1 Introduction Colm O Suilleabhain.
© Anselm SpoerriInfo + Web Tech Course Information Technologies Info + Web Tech Course Anselm Spoerri PhD (MIT) Rutgers University
 Copyright Curtis D. Edmonds,  This work is the intellectual property of the author. Permission is granted for this material to be shared for non-commercial,
ONLINE DATA STORAGE & DOCUMENTS Lesson 3. Lesson 3 – Online documents In this lesson we will be covering:  Online documents  Compression and expansion.
Web Browsers It is an application software that is used to display and interact with text, images and other information located on web pages at web sites.
Ch10 QQ T F 1.The appearance of text (such as font face and style) incorporated into a Web page graphic will appear as it was when it was created, regardless.
Create a Website Session I Key Components Hands-on HTML.
Web Design Dreamweaver Semester 2 ATBs. ATB #1 What is a web site?
INFM603 Project Presentation Jenny Wu Prachi Chhokar.
INTRODUCTION TO FRONTPAGE. TOPICS TO BE DISCUSSED……….  Introduction Introduction  Features Features  Starting Front Page Starting Front Page  Components.
CSS 404 Internet Concepts. XP Objectives Developing a Web page and a Website Working with CSS (Cascading Style Sheets) Web Tables Web Forms Multimedia.
How to Web Page with iModules First row of icons.
TTE 350 Lecture Notes for 2/2/01. Agenda Nuts and Bolts Overview of Courseware WebCT Demo.
Contents 1 WDMD 170 – UW Stevens Point WDMD 170 Internet Languages e-Lesson: Introduction to WDMD 170 (there is an audio component to this e-Lesson) ©
Dreamweaver is an XHTML editor that allows you to: Create a site Create external Cascading Style Sheets (CSS) to store the styles used in your pages Create.
Online Translation Service Capstone Design Eunyoung Ku Jason Roberts Jennifer Pitts Gregory Woodburn Kim Tran.
Chapter 4 Tables.  Look at table on Page 142 ◦ Attributes  Creating a table together in class ◦ ◦ table row ◦ table header ◦ table data cell.
How the Web Works Digital Histories Workshop Adam Crymble.
Getting Started with eChalk eChalk Day 1 Series 1 eChalk Session 1.
By Matt Baker Eric Sprauve Stephen Cauterucio. The Problem Advisors create a sign-up sheet to be posted on the door of their office. These sign-up sheets.
Paul Mundy Microsoft FrontPage Tips and tricks.
Dr. Gina Green Class Setup.
BTEC National Level 3 Website Production. Lesson objectives To understand factors that influence website performance To understand factors that influence.
Adding Websites to the Internet Explorer trusted sites list in order to log-on to Cozzini websites without any security problems.
Advanced Web 2012 Lecture 6 Sean Costain Files Sean Costain 2012 Php allows for the : Creation Reading Appending Deleting Uploading And Closing.
The solarmuri web-data server: Contains general information about our project Allows us to easily exchange data, images,
Creating an Online Training Course Using Moodle August 20, 2008 Enterprise Technology Solutions Division.
Windows 7 WampServer 2.1 MySQL PHP 5.3 Script Apache Server User Record or Select Media Upload to Internet Return URL Forward URL Create.
Are You a Genius? Fun Brain Teasers ECE Multifarious Systems 1 Xerxes Beharry 8 th Decemeber,2006.
Web Scripting [PHP] CIS166AE Wednesdays 6:00pm – 9:50pm Rob Loy.
The first thing you need to do is log in. This is what the “Log In Screen” looks like. Remember to get teacher permission and login information prior.
Website Design:. Once you have created a website on your hard drive you need to get it up on to the Web. This is called "uploading“ or “publishing” or.
Develop Your Web Presence Using WEEBLY TECHNO DRAGON PD | WEEBLY.
Learning Aim C.  In this section we will look at some simple client-side scripts, browser compatibility, exporting and compressing and suitable file.
Three Internet Medias Podcast, Blogs, Wiki Jasmine Sampson CSC101.
Dreamweaver is an XHTML editor that allows you to: Create a site Create external Cascading Style Sheets (CSS) to store the styles used in your pages Create.
World Wide Web 16 World Wide Web 16. World Wide Web 16 Everyone also talks about the Web But people don’t really understand how it works You need to know.
Financial Management of ECE Programs.  Go to “Tools”  Click on “Personal Information” to edit your personal information (including address) or.
PHP File Handling. Opening a file Fopen(filename,mode) Closing a file Fclose(filename)
BTEC ICT Level 3 Unit 8 E-Commerce. Session 2 – Technologies and What they Consist of.
Teacher Tube Teacher tube is a great source for any digital media to use with your class. It is free to sign up, and you have access to many different.
Visual Classification of Football Teams
Uplode Simple file storage CWEB Final Project
Webpage Creation Introduction
Creating Websites With WordPress
BTEC NCF Dip in Comp - Unit 15 Website Development Lesson 05 – Website Performance Mr C Johnston.
Facebook Clone Script | Social Network Script - Open Source Social Network Script
Web Design and Development
Direct Internet 3 Iridium Proprietary and Confidential 9/18/2018.
Handling Files In particular, uploading files.
Information Technologies Anselm Spoerri PhD (MIT)
Objectives To understand the about types of computer network
Introduction to WordPress
Site
TJHSST Website Redesign
Web Programming Language
Handling Files In particular, uploading files.
Learning How to Create an Online Interactive Poster using
Slides prepared by Sarah Benis Scheier-Dolberg
Step1. Go to the website of isbe-online
Develop Your Web Presence Using WEEBLY
Information Technologies Anselm Spoerri PhD (MIT)
Internet explorer.
Presentation transcript:

Media Access online media sharing ECE 3553 Multifarious Systems Cary Fung December 7, 2007

Problem Statement To figure out and design a website that allows members to privately share media to each other. To figure out and design a website that allows members to privately share media to each other. Similar sites are flickr.com or photobucket.com Similar sites are flickr.com or photobucket.com

Difficulties Securing webpage with logins Securing webpage with logins Uploading to server Uploading to server Organizing files Organizing files Previewing files Previewing files Restrictions Restrictions

Solutions Sessions to check if logged in Sessions to check if logged in<?phpsession_start(); if(!($_SESSION["authenticated"] == 1)) die("You must first login."); ?> Used a different server that allows uploads Used a different server that allows uploads

Solution Mysql tables to keep organized Mysql tables to keep organized One table to keep track of all the users. One table to keep track of all the users. One table to keep track of the file uploaded. One table to keep track of the file uploaded. Changed file size to preview Changed file size to preview Set size and file types allowed Set size and file types allowed if (($_FILES["file"]["type"] == "image/gif") //check if image is a gif file || ($_FILES["file"]["type"] == "image/jpeg") //check if image is a jpeg file || ($_FILES["file"]["type"] == "image/pjpeg")//check if image is jpeg file for internet explorer && ($_FILES["file"]["size"] < ))//check if image is less than 700kb

Results

Future Improvement Associating uploads with members. Associating uploads with members. Uploading other times of files like audio and video. Uploading other times of files like audio and video. Creating personal pages for members. Creating personal pages for members. Removing files. Removing files.

Topics Covered XHTML XHTML Cascading Style Sheets Cascading Style Sheets PHP PHP MYSQL MYSQL

References

Best Part Seeing what is already uploaded and able to download them Seeing what is already uploaded and able to download them