Bläddra i källkod

0787: Install Kanboard Visual Todo and Tasks Management on Windows

i12bretro 2 år sedan
förälder
incheckning
0cf3483e03
1 ändrade filer med 79 tillägg och 0 borttagningar
  1. 79 0
      0787.html

+ 79 - 0
0787.html

@@ -0,0 +1,79 @@
+    <!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="08/12/2022 07:58:55 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 &gt; Extract All...</li>
+	<li>Right click the downloaded Kanboard .zip file &gt; 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>Run XAMPP/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 &gt; 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 &#39;kanboard_rw&#39;@&#39;localhost&#39; IDENTIFIED BY &#39;K@nb0r4!&#39;;<br />
+	GRANT ALL ON kanboard.* TO &#39;kanboard_rw&#39;@&#39;localhost&#39;;<br />
+	FLUSH PRIVILEGES;<br />
+	exit;<br />
+	.\mysql -u kanboard_rw -pK@nb0r4! kanboard -e &quot;source C:\Program Files\xampp\htdocs\kanboard\app\Schema\Sql\mysql.sql&quot;</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 &gt; My profile</li>
+	<li>Click Edit profile from the left navigation</li>
+	<li>Change the username and set a name and email as needed &gt; 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 &gt; Click Save</li>
+	<li>Click the options carrot in the top right corner &gt; Logout</li>
+	<li>Log back in with the updated credentials</li>
+	<li>Welcome to Kanboard</li>
+</ol>          </div>
+        </div>
+      </body>
+    </html>
+