My own note-taking software made with 5 programming languages (screenshots below).
More screenshots here.
UNotes is a small note-taking software, which can be installed locally to take offline notes. I made this with html, css (Bootstrap!), a bit of JavaScript (Bootstrap too!), PHP & mySQL. The purpose of this project is to build a small note-taking website/software like Evernote using PHP (for the backend) and mySQL (for the databases) without building an actual application using programming languages like Java or Python. I've chosen PHP for this project, because I am learning that language at the moment.
- 3 Different user accounts with different permissions: normal, premium & admin,
Normal user: unlimited notes, 3 notebooks, no premium features
Premium user: unlimited notes, unlimited notebooks, premium crown on 'all users' page and more
Admin user: All of the above, permission to add new users, respond to questions and more - Take notes and save them in different notebooks to keep them seperated,
- Bookmark your most important notes to keep them at the top of the notes page,
- Let normal users use the built-in support panel for their questions and let admins respond to them,
- Users can change most of their information (like username, password and other information) on their own,
- User status shows when a user is Online/Offline just by logging in.
- The UNotes project has 2 main domains:
unotes.me
andmy.unotes.me
. The first domain acts like a homepage with the register new account option, about us page and more. Themy.unotes.me
page has a login page and is the place to take your notes. - This project contains two databases (called
UNotesMAIN
andUNotesDAT
). TheUNotesMAIN
database contains 4 tables: new users (from /register page), questions (from the support panel), users (with all active users) and usersclosed (with all deleted accounts). TheUNotesDAT
database contains 2 tables per user: thenotes.#id#
andnotebook.#id#
. - There are 3 different account types with different perks and permissions:
Normal user
: This type of user has the basic features and would not have to pay for this service.
Premium user
: This type of user has all of the features available would need to pay a subscription fee.
Admin user
: This type of user helps maintaining the website and is able to add new users and edit their information. - Feel free to add/remove any user except the admin account (with userid 1 in the
UNotesMAIN
database), because this will create big problems with new user accounts. - It's recommended (for security reasons) to change the (password hashing) salt after installation on the
my.unotes.me
domain. - It's recommended to change the administrator account password (with userid 1), because this account can add/remove other accounts and other admins.
If you want to install this project locally, please follow the following steps:
- Download the latest version of this project (by using the 'Clone' option or the 'download from cloud' button on this page).
- Make sure your system has apache, php and mysql installed (I'm using AMPPS because it has them all in one place).
- Extract the two main folders (domains) called
unotes.me
andmy.unotes.me
to your localhost folder. - For optimal performance (and easier access) add the two entries below to your
.hosts
file:
(This will let you use a custom url instead oflocalhost/unotes.me
andlocalhost/my.unotes.me
)
127.0.0.1 unotes.me 127.0.0.1 my.unotes.me
- Go to your PHPMyAdmin configuration (default:
http://localhost/phpmyadmin/
) and add 2 new databases (calledUNotesDAT
andUNotesMAIN
) and add a user (calledUNotes
with passwordUNotes
).
For more information about the PHP connections and the password configuration go to the_inc/dbconn.php
file. - Import the
UNotesDAT.sql
file to the 'UNotesDAT' database. - Import the
UNotesMAIN.sql
file to the 'UNotesMAIN' database. - Make sure the
UNotes
database user has permission to view/edit both databases.
This can be done on the users page (Users
>Edit Privileges
>Database
>Add privileges on the following database(s)
) - Go to the homepage or login page and sign in using the following credentials:
Username: admin (the administrator account), password: admin Username: premium (the premium account), password: premium Username: normal (the normal account), password: normal