0933.html 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install MyBB - Open Source Forum Software - 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,Bulletin Board,Forum,Homelab,Install MyBB On Debian Linux,MariaDB,MyBB,MySQL,PHP,PHP Based Application,PHP Based Forum,Self-Hosted Forum,Windows,Microsoft Windows,XAMPP,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install MyBB - Open Source Forum Software - on Windows">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="04/16/2024 08:00:55 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 MyBB - Open Source Forum Software - on Windows</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is MyBB?</h2>
  26. <blockquote>MyBB is the free and open source forum software powering thousands of engaging, vibrant, and unique communities across the internet.<i> - <a href="https://mybb.com/" target="_blank">https://mybb.com/</a></i></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 MyBB <a href="https://github.com/mybb/mybb/releases" 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 .zip file &gt; Extract All...</li>
  34. <li>Right click the downloaded MyBB .zip file &gt; Extract All...</li>
  35. <li>Navigate into the extracted mybb folder structure</li>
  36. <li>Rename the Upload directory to mybb</li>
  37. <li>Cut the mybb folder inside the extracted XAMPP/htdocs directory</li>
  38. <li>Copy the extracted XAMPP directory to a safe location to run from, C:\Program Files for example</li>
  39. <li>Run XAMPP/setup_xampp.bat to update the configuration files with the new server location</li>
  40. <li>Run XAMPP/xampp-control.exe</li>
  41. <li>Click the Start button next to Apache and MySQL</li>
  42. <li>Navigate to XAMPP/mysql/bin</li>
  43. <li>Hold the SHIFT key and right click in the white space &gt; Open PowerShell window here...</li>
  44. <li>Type the following in the PowerShell window to setup the MyBB database
  45. <div class="codeBlock PS">.\mysql -u root<br />
  46. CREATE DATABASE mybb;<br />
  47. GRANT ALL ON mybb.* TO &#39;mybb_rw&#39;@&#39;localhost&#39; IDENTIFIED BY &#39;My44_rw$&#39;;<br />
  48. FLUSH PRIVILEGES;<br />
  49. EXIT;<br />
  50. exit</div>
  51. </li>
  52. </ol>
  53. <h2>MyBB Web Installer</h2>
  54. <ol>
  55. <li>Open a web browser and navigate to http://DNSorIP/mybb</li>
  56. <li>Click Next at the Welcome screen</li>
  57. <li>Click Next at the License Agreement</li>
  58. <li>Click Next at the Requirements Check</li>
  59. <li>Complete the Database Configuration as shown below
  60. <p>Database Engine: MySQL Improved<br />
  61. <br />
  62. Database Server Hostname: localhost<br />
  63. Database Username: mybb_rw<br />
  64. Database Password: My44_rw$<br />
  65. Database Name: mybb<br />
  66. <br />
  67. Table Prefix: mybb_</p>
  68. </li>
  69. <li>Click Next after the table creation completes</li>
  70. <li>Click Next to complete the Table Population</li>
  71. <li>Click Next at the Theme Insertion screen</li>
  72. <li>Modify the Board Configuration form as needed &gt; Click Next</li>
  73. <li>Create an administrator account by entering a Username, Password and Email Address &gt; Click Next</li>
  74. <li>Click the Admin Control Panel link</li>
  75. <li>Login with the administrator username and password created earlier</li>
  76. <li>Welcome to MyBB</li>
  77. </ol>
  78. <p>Source: <a href="https://docs.mybb.com/1.8/install/" target="_blank">https://docs.mybb.com/1.8/install/</a></p> </div>
  79. </div>
  80. </body>
  81. </html>