Server Documentation for Laravel

Just to state the obvious for anyone viewing this discussion…. if you give any of your folders 777 permissions, you are allowing ANYONE to read, write and execute any file in that directory…. what this means is you have given ANYONE (any hacker or malicious person in the entire world) permission to upload ANY file, virus or any other file, and THEN execute that file… Full Documentation The NORMAL way to set permissions is to have your files owned by the webserver: sudo chown -R $(whoami):www-data /path/to/your/root/directory Then you set all your directories to 755 and your files to 644… SET file permissions sudo find /path/to/your/root/directory -type f -exec chmod 644 {} \; sudo find /path/to/your/root/directory -type d -exec chmod 755 {} \; Whichever way you set it up, then you need to give read and write permissions to the webserver for storage, cache and any other directories the webserver needs to upload or write too (depending on your situation), so run the commands from bash above sudo chgrp -R www-data storage bootstrap/cache sudo chmod -R ug+rwx storage bootstrap/cache If there are any updated version and there are any mistaken, feel free to modifiy it :) Thanks =)

<span title='2017-04-06 17:30:00 +0000 UTC'>April 6, 2017</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;Eric Cheung

BitwiseHacks 2016

Adroitness WINNER Judges’ Choice Inspiration When elderly home alone, they got nothing to do. Adroitness provide a simple and safe exercise training for them. What it does It detects the gesture and the motion through the exercise. How we built it We build an Android Prototype with Beacon (Estimote). Challenges we ran into motion detection. Accomplishments that we’re proud of fulfill corporate social responsibility What we learned M2X, CC3200 Launch Pad...

<span title='2016-04-12 16:39:00 +0000 UTC'>April 12, 2016</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;Eric Cheung

Tech X Social Idea Generation Zone Competition, NGO Day 2015

This competition is organized by Microsoft Hong Kong and The Hong Kong Council of Social Service. It adds this year which young entrepreneurs and students from tertiary institutions have been invited to discuss different ways of using social media, online promotion and different ICT tools to promote stakeholder engagement. Four ISD Year 2 students (Pang Long Ting, Chan Ho Yam, Cheng Kai Hin, Cheung Yuk Kwan) used their group project in the course of AST20404 Information Systems in Business - “Come Here” for participating in preliminary round of the competition....

<span title='2015-06-01 16:28:00 +0000 UTC'>June 1, 2015</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;Eric Cheung