-
Notifications
You must be signed in to change notification settings - Fork 23
1.3 Quick Start
Christophe Avonture edited this page Mar 27, 2017
·
3 revisions
For clarity, this quick start is for a localhost system.
The last version of the program can be found here : https://github.com/cavo789/marknotes
- Copy this repository (by downloading the ZIP archive f.i.) onto your computer,
- Keep only the dist folder (which contains distribution files),
- Create f.i. a folder called
marknotes
and unzip the archive there, - If needed, create an alias that will point to that folder (let's say
[http://localhost/marknotes](http://localhost/marknotes)
), - Be sure to enable PHP 7 for that site,
- Access to
[http://localhost/marknotes](http://localhost/marknotes)
to check that configuration is OK : the application should display his interface.
If everything goes fine, you'll see something like this (the screen and/or text can be a small different depending of the application's version)
Possible problems
- if, by accessing the URL, the index.php file is being download and not displayed, this is because you're not using PHP 7 so, please force PHP 7 for that site
- if, the version was well PHP 7, edit the
.htaccess
that you'll find in the root folder and remove the first line i.e.AddHandler application/x-httpd-php70 .php
Christophe Avonture