0234.html 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install FreshRSS - RSS Feed Aggregator - 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,FreshRSS,FressRSS Installation Tutorial,Homelab,How To Install FreshRSS On Windows,MySQL,PHP,RSS Aggregator,RSS Feed Manager,Windows,Microsoft Windows,XAMPP,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install FreshRSS - RSS Feed Aggregator - on Windows">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="12/03/2024 09:37:16 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 FreshRSS - RSS Feed Aggregator - on Windows</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is FreshRSS?</h2>
  26. <blockquote><em>FreshRSS is a self-hosted RSS feed aggregator. It is lightweight, easy to work with, powerful, and customizable. -<a href="https://github.com/FreshRSS/FreshRSS" target="_blank">https://github.com/FreshRSS/FreshRSS</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 FreshRSS <a href="https://github.com/FreshRSS/FreshRSS/releases/latest" 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 FreshRSS.zip file &gt; Extract All...</li>
  35. <li>Rename the extracted folder freshrss</li>
  36. <li>Cut the freshrss 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>Run XAMPP/setup_xampp.bat to update the configuration files with the new server location</li>
  39. <li>Run XAMPP/xampp-control.exe</li>
  40. <li>Click the Start button next to Apache and MySQL</li>
  41. <li>Navigate to XAMPP/mysql/bin</li>
  42. <li>Hold the SHIFT key and right click in the white space &gt; Open PowerShell windows here...</li>
  43. <li>Type the following in the PowerShell window to setup the database
  44. <div class="codeBlock">.\mysql -u root<br />
  45. CREATE DATABASE freshrss DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;<br />
  46. CREATE USER &#39;freshrss_rw&#39;@&#39;localhost&#39; IDENTIFIED BY &#39;Fr3s4R$S!!&#39;;<br />
  47. GRANT ALL ON freshrss.* TO &#39;freshrss_rw&#39;@&#39;localhost&#39;;<br />
  48. FLUSH PRIVILEGES;<br />
  49. exit;</div>
  50. </li>
  51. <li>Open a web browser and navigate to http://DNSorIP:8089</li>
  52. <li>Select a Language &gt; Click Submit</li>
  53. <li>Click the Go to the next step button</li>
  54. <li>Complete the database configuration form as follows
  55. <p>Type of database: MySQL<br />
  56. Host: localhost<br />
  57. Database username: freshrss_rw<br />
  58. Database password: Fr3s4R$S!!<br />
  59. Database: freshrss<br />
  60. Table prefix:</p>
  61. </li>
  62. <li>Click the Go to the next step button</li>
  63. <li>Enter a username and password &gt; Click Submit</li>
  64. <li>Click the Complete Installation button</li>
  65. <li>Login with the username and password created earlier</li>
  66. <li>Welcome to FreshRSS</li>
  67. </ol> </div>
  68. </div>
  69. </body>
  70. </html>