We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a413667 commit b4eee6cCopy full SHA for b4eee6c
Doc/Install.md
@@ -11,10 +11,10 @@ To run the installer open
11
- Change the database connection settings inside of `Service/Config.php` to match your db settings.
12
These are stored in the following lines of code in `/OpenNote/Config.php`:
13
```php
14
- public static $dbUserName = "notebook";
15
- public static $dbPassword = "password";
16
- public static $dbServer = "localhost";
17
- public static $dbName = "notebook";
+ $dbUserName = "notebook";
+ $dbPassword = "password";
+ $dbServer = "127.0.0.1";
+ $dbName = "notebook";
18
```
19
20
- Now the site install is complete. You can now open the site by going to your webserver url +/OpenNote
0 commit comments