0787.html 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Kanboard Visual Todo and Tasks Management on Windows</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <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">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Kanboard Visual Todo and Tasks Management on Windows">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="10/19/2024 06:11:29 AM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Install Kanboard Visual Todo and Tasks Management on Windows</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is Kanboard?</h2>
  26. <blockquote>
  27. <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>
  28. </blockquote>
  29. <h2>Installation</h2>
  30. <ol>
  31. <li>Download XAMPP <a href="https://sourceforge.net/projects/xampp/files/XAMPP%20Windows/" target="_blank">Download</a></li>
  32. <li>Download Kanboard <a href="https://github.com/kanboard/kanboard/releases/latest" target="_blank">Download</a></li>
  33. <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>
  34. <li>Install Microsoft Visual C++</li>
  35. <li>Right click the downloaded XAMPP file &gt; Extract All...</li>
  36. <li>Right click the downloaded Kanboard .zip file &gt; Extract All...</li>
  37. <li>Rename the extracted folder kanboard</li>
  38. <li>Cut the kanboard folder inside the XAMPP/htdocs directory</li>
  39. <li>Navigate into the kanboard folder</li>
  40. <li>Make a copy of the config.default.php and rename it config.php</li>
  41. <li>Edit config.php in a text editor</li>
  42. <li>Search for DB_DRIVER</li>
  43. <li>Set the DB_DRIVER value to mysql</li>
  44. <li>Set the DB_USERNAME value to kanboard_rw</li>
  45. <li>Set the DB_PASSWORD value to K@nb0r4!</li>
  46. <li>Save the changes to config.php and close the text editor</li>
  47. <li>Copy the extracted XAMPP directory to a safe location to run from, C:\Program Files for example</li>
  48. <li>Run XAMPP/setup_xampp.bat to update the configuration files with the new server location</li>
  49. <li>Navigate into XAMPP/PHP and edit php.ini in a text editor</li>
  50. <li>Find the list of extensions and make sure the following are enabled by removing the ; at the start of the line
  51. <p>extension=gd</p>
  52. </li>
  53. <li>Save the changes to php.ini and close the text editor</li>
  54. <li>Navigate back to XAMPP/ and run xampp-control.exe</li>
  55. <li>Click the Start button next to Apache and MySQL</li>
  56. <li>Navigate to XAMPP/mysql/bin</li>
  57. <li>Hold the SHIFT key and right click in the white space &gt; Open PowerShell windows here...</li>
  58. <li>Type the following in the PowerShell window to setup the database
  59. <div class="codeBlock">.\mysql -u root<br />
  60. CREATE DATABASE kanboard DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;<br />
  61. CREATE USER &#39;kanboard_rw&#39;@&#39;localhost&#39; IDENTIFIED BY &#39;K@nb0r4!&#39;;<br />
  62. GRANT ALL ON kanboard.* TO &#39;kanboard_rw&#39;@&#39;localhost&#39;;<br />
  63. FLUSH PRIVILEGES;<br />
  64. exit;<br />
  65. .\mysql -u kanboard_rw -pK@nb0r4! kanboard -e &quot;source C:\Program Files\xampp\htdocs\kanboard\app\Schema\Sql\mysql.sql&quot;</div>
  66. </li>
  67. <li>Open a web browser and navigate to http://DNSorIP/kanboard</li>
  68. <li>Login with the username admin and password admin</li>
  69. <li>Click the options carrot in the top right corner &gt; My profile</li>
  70. <li>Click Edit profile from the left navigation</li>
  71. <li>Change the username and set a name and email as needed &gt; Click Save</li>
  72. <li>Click Change password from the left navigation</li>
  73. <li>Enter admin as the Current password and enter and confirm a new secure password &gt; Click Save</li>
  74. <li>Click the options carrot in the top right corner &gt; Logout</li>
  75. <li>Log back in with the updated credentials</li>
  76. <li>Welcome to Kanboard</li>
  77. </ol> </div>
  78. </div>
  79. </body>
  80. </html>