0816.html 5.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Invoice Plane - Invoice and Payment Manager - 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="Home Lab,Browser Based,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,Web Based Tools,Accounting,Accounting Software,Income Tracking,Homelab,Invoice,Invoicing Software,MariaDB,Microsoft Windows,MySQL,PHP,PHP Based Application,Payment Manager,WAMP,Windows,XAMPP,Invoice Plane,How To Install Invoice Plane On Windows,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Invoice Plane - Invoice and Payment Manager - On Windows">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="10/01/2023 02:23:32 PM" />
  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 Invoice Plane - Invoice and Payment Manager - On Windows</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is Invoice Plane?</h2>
  26. <blockquote>
  27. <p><em>[Invoice Plane is a] self-hosted open source application for managing your invoices, clients and payments.-<a href="https://www.invoiceplane.com/" target="_blank">https://www.invoiceplane.com/</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 Invoice Plane <a href="https://github.com/InvoicePlane/InvoicePlane/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 Invoice Plane .zip file &gt; Extract All...</li>
  37. <li>Rename the extracted folder invoiceplane</li>
  38. <li>Cut the invoiceplane folder inside the XAMPP/htdocs directory</li>
  39. <li>Copy the extracted XAMPP directory to a safe location to run from, C:\Program Files for example</li>
  40. <li>Navigate into the XAMPP/htdocs/invoiceplane folder</li>
  41. <li>Make a copy of the ipconfig.php.example and rename it ipconfig.php</li>
  42. <li>Edit ipconfig.php in a text editor</li>
  43. <li>Set the IP_URL value to http://DNSorIP/invoiceplane
  44. <p>IP_URL=http://localhost/invoiceplane</p>
  45. </li>
  46. <li>Save the changes to ipconfig.php and close the text editor</li>
  47. <li>Run XAMPP/setup_xampp.bat to update the configuration files with the new server location</li>
  48. <li>Run XAMPP/xampp-control.exe</li>
  49. <li>Click the Start button next to Apache and MySQL</li>
  50. <li>Navigate to XAMPP/mysql/bin</li>
  51. <li>Hold the SHIFT key and right click in the white space &gt; Open PowerShell windows here...</li>
  52. <li>Type the following in the PowerShell window to setup the database
  53. <div class="codeBlock PS">.\mysql -u root<br />
  54. CREATE DATABASE invoice_plane;<br />
  55. CREATE USER &#39;invoice_plane_rw&#39;@&#39;localhost&#39; IDENTIFIED BY &#39;Inv0!c3Pl@n3!&#39;;<br />
  56. GRANT ALL ON invoice_plane.* TO &#39;invoice_plane_rw&#39;@&#39;localhost&#39;;<br />
  57. FLUSH PRIVILEGES;<br />
  58. exit;<br />
  59. exit</div>
  60. </li>
  61. </ol>
  62. <h2>Invoice Plane Web Installer</h2>
  63. <ol>
  64. <li>Open a web browser and navigate to http://DNSorIP/invoiceplane</li>
  65. <li>The Invoice Plane Installation web installer should be load</li>
  66. <li>Click the Setup button</li>
  67. <li>Select a Language &gt; Click Continue</li>
  68. <li>Click Continue on the Prerequisites page</li>
  69. <li>Complete the Database Details form as follows
  70. <p>Hostname: localhost<br />
  71. Port: 3306<br />
  72. Username: invoice_plane_rw<br />
  73. Password: Inv0!c3Pl@n3!<br />
  74. Database: invoice_plane</p>
  75. </li>
  76. <li>Click the Try Again button then click Continue</li>
  77. <li>Complete the Create User Account form &gt; Click Continue</li>
  78. <li>Back in File Explorer, navigate to XAMPP/htdocs/invoiceplane and edit ipconfig.php</li>
  79. <li>Find the DISABLE_SETUP setting and change the value to true</li>
  80. <li>Save the changes to ipconfig.php and close the text editor</li>
  81. <li>Back in the browser, click the Login button</li>
  82. <li>Login with the Email and Password setup during the installation</li>
  83. <li>Welcome to Invoice Plane</li>
  84. </ol>
  85. <p>Source: <a href="https://wiki.invoiceplane.com/en/1.0/getting-started/installation" target="_blank">https://wiki.invoiceplane.com/en/1.0/getting-started/installation</a></p> </div>
  86. </div>
  87. </body>
  88. </html>