0796.html 4.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Organizr - A Homelab Services Organizer/Dashboard - 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,Application Dashboard,Homelab Dashboard,Organizr Application Dashboard,Windows,Microsoft Windows,XAMPP,PHP,MySQL,Organizr,Organizr V2,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Organizr - A Homelab Services Organizer/Dashboard - on Windows">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="10/15/2023 09:15:50 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 Organizr - A Homelab Services Organizer/Dashboard - on Windows</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is Organizr?</h2>
  26. <blockquote><em>ORGANIZR aims to be your one stop shop for your Servers Frontend. Do you have quite a bit of services running on your computer or server? Do you have a lot of bookmarks or have to memorize a bunch of ip&rsquo;s and ports? Well, Organizr is here to help with that... -<a href="https://organizr.app/" target="_blank">https://organizr.app/</a></em></blockquote>
  27. <h2>Installation</h2>
  28. <ol>
  29. <li>Download XAMPP <a href="https://sourceforge.net/projects/xampp/files/XAMPP%20Windows/" target="_blank">Download</a></li>
  30. <li>Download Organizr <a href="https://github.com/causefx/Organizr" target="_blank">Download</a></li>
  31. <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>
  32. <li>Install Microsoft Visual C++</li>
  33. <li>Right click the downloaded XAMPP file &gt; Extract All...</li>
  34. <li>Right click the downloaded Organizr .zip file &gt; Extract All...</li>
  35. <li>Rename the extracted folder organizr</li>
  36. <li>Cut the organizr folder inside the XAMPP/htdocs directory</li>
  37. <li>Copy the extracted XAMPP directory to a safe location to run from, C:\Program Files for example</li>
  38. <li>Navigate into XAMPP/PHP and edit php.ini in a text editor</li>
  39. <li>Find the list of extensions and make sure the following are enabled by removing the ; at the start of the line
  40. <p>extension=pdo_sqlite<br />
  41. extension=curl<br />
  42. extension=sqlite3</p>
  43. </li>
  44. <li>Save the changes to php.ini</li>
  45. <li>Navigate into XAMPP/Apache/conf and edit httpd.conf in a text editor</li>
  46. <li>Search the file for <directory></directory></li>
  47. <li>Overwrite the existing values with the following
  48. <p>Options Indexes FollowSymLinks<br />
  49. AllowOverride All<br />
  50. Require all granted<br />
  51. RewriteEngine On<br />
  52. RewriteCond %{REQUEST_FILENAME} !-f<br />
  53. RewriteCond %{REQUEST_FILENAME} !-d<br />
  54. RewriteRule ^ /organizr/api/v2/index.php [QSA,L]</p>
  55. </li>
  56. <li>Run XAMPP/setup_xampp.bat to update the configuration files with the new server location</li>
  57. <li>Run XAMPP/xampp-control.exe</li>
  58. <li>Click the Start button next to Apache</li>
  59. <li>Back in File Explorer, while holding Shift, right click in the whitespace &gt; Open PowerShell window here</li>
  60. <li>Run the following command in the open PowerShell window to generate a random string
  61. <div class="codeBlock PS">[Convert]::ToBase64String((1..20|%{[byte](Get-Random -Max 256)}))</div>
  62. </li>
  63. <li>Open a web browser and navigate to http://DNSorIP/organizr</li>
  64. <li>Set the Installation Type to Personal &gt; Click Next</li>
  65. <li>Complete the registration form by entering a username, email address and password &gt; Click Next</li>
  66. <li>Copy the randomly generated string from PowerShell and paste it in the Hash Key field</li>
  67. <li>Enter a Registration Password &gt; Click Next</li>
  68. <li>Enter organizr.db as the Database Name and C:\Program Files\xampp\htdocs\organizr\data\ as the Database Path &gt; Click Test / Create Path &gt; Click Next</li>
  69. <li>Review the summary &gt; Click Finish</li>
  70. <li>Welcome to Organizr</li>
  71. </ol>
  72. <p>Source: <a href="https://docs.organizr.app/installation/prerequisites/installing-php" target="_blank">https://docs.organizr.app/installation/prerequisites/installing-php</a></p> </div>
  73. </div>
  74. </body>
  75. </html>