123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Install Kanboard Visual Todo and Tasks Management on Windows</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Browser Based,Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,Web Based Tools,Kanban,Kanboard,Task Management,Todo,Windows,Microsoft Windows,XAMPP,PHP Based Applications,MySQL,MariaDB,PHP Based Task Management,PHP Based Kanban Board,Kanban Board,Kanban Task Management,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Install Kanboard Visual Todo and Tasks Management on Windows">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="10/19/2024 06:11:29 AM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Install Kanboard Visual Todo and Tasks Management on Windows</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>What is Kanboard?</h2>
- <blockquote>
- <p><em>Kanboard is project management software that focuses on the Kanban methodology. -<a href="https://github.com/kanboard/kanboard" target="_blank">https://github.com/kanboard/kanboard</a></em></p>
- </blockquote>
- <h2>Installation</h2>
- <ol>
- <li>Download XAMPP <a href="https://sourceforge.net/projects/xampp/files/XAMPP%20Windows/" target="_blank">Download</a></li>
- <li>Download Kanboard <a href="https://github.com/kanboard/kanboard/releases/latest" target="_blank">Download</a></li>
- <li><label for="cb_li_917989_0">Download Microsoft Visual C++ </label><label for="cb_li_917989_0"><a href="https://aka.ms/vs/16/release/vc_redist.x64.exe" target="_blank">Download</a></label></li>
- <li>Install Microsoft Visual C++</li>
- <li>Right click the downloaded XAMPP file > Extract All...</li>
- <li>Right click the downloaded Kanboard .zip file > Extract All...</li>
- <li>Rename the extracted folder kanboard</li>
- <li>Cut the kanboard folder inside the XAMPP/htdocs directory</li>
- <li>Navigate into the kanboard folder</li>
- <li>Make a copy of the config.default.php and rename it config.php</li>
- <li>Edit config.php in a text editor</li>
- <li>Search for DB_DRIVER</li>
- <li>Set the DB_DRIVER value to mysql</li>
- <li>Set the DB_USERNAME value to kanboard_rw</li>
- <li>Set the DB_PASSWORD value to K@nb0r4!</li>
- <li>Save the changes to config.php and close the text editor</li>
- <li>Copy the extracted XAMPP directory to a safe location to run from, C:\Program Files for example</li>
- <li>Run XAMPP/setup_xampp.bat to update the configuration files with the new server location</li>
- <li>Navigate into XAMPP/PHP and edit php.ini in a text editor</li>
- <li>Find the list of extensions and make sure the following are enabled by removing the ; at the start of the line
- <p>extension=gd</p>
- </li>
- <li>Save the changes to php.ini and close the text editor</li>
- <li>Navigate back to XAMPP/ and run xampp-control.exe</li>
- <li>Click the Start button next to Apache and MySQL</li>
- <li>Navigate to XAMPP/mysql/bin</li>
- <li>Hold the SHIFT key and right click in the white space > Open PowerShell windows here...</li>
- <li>Type the following in the PowerShell window to setup the database
- <div class="codeBlock">.\mysql -u root<br />
- CREATE DATABASE kanboard DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;<br />
- CREATE USER 'kanboard_rw'@'localhost' IDENTIFIED BY 'K@nb0r4!';<br />
- GRANT ALL ON kanboard.* TO 'kanboard_rw'@'localhost';<br />
- FLUSH PRIVILEGES;<br />
- exit;<br />
- .\mysql -u kanboard_rw -pK@nb0r4! kanboard -e "source C:\Program Files\xampp\htdocs\kanboard\app\Schema\Sql\mysql.sql"</div>
- </li>
- <li>Open a web browser and navigate to http://DNSorIP/kanboard</li>
- <li>Login with the username admin and password admin</li>
- <li>Click the options carrot in the top right corner > My profile</li>
- <li>Click Edit profile from the left navigation</li>
- <li>Change the username and set a name and email as needed > Click Save</li>
- <li>Click Change password from the left navigation</li>
- <li>Enter admin as the Current password and enter and confirm a new secure password > Click Save</li>
- <li>Click the options carrot in the top right corner > Logout</li>
- <li>Log back in with the updated credentials</li>
- <li>Welcome to Kanboard</li>
- </ol> </div>
- </div>
- </body>
- </html>
-
|