![]() |
How to install Mybb forum in Debian/unbuntu - Printable Version +- Post4VPS Forum | Free VPS Provider (https://post4vps.com) +-- Forum: VPS Discussion (https://post4vps.com/Forum-VPS-Discussion) +--- Forum: Tutorials (https://post4vps.com/Forum-Tutorials) +--- Thread: How to install Mybb forum in Debian/unbuntu (/Thread-How-to-install-Mybb-forum-in-Debian-unbuntu) |
How to install Mybb forum in Debian/unbuntu - kabir145 - 04-05-2017 The first thing you have to do when trying to get this software first of all you will have to install lamp because it is important thing for installing mybb . What is Lamp? LAMP is an Open Source Web development platform that uses Linux as the operating system, Apache as the Web server, Mysql as the relational database management system and PHP as the object-oriented scripting language. (Sometimes Perls or Python is used instead of PHP. So now we will start installing Lamp On Vps First of all we need to install Apache for installing apache we need to type that in command in terminal Code: sudo apt-get update Code: sudo apt-get install apache2 next step is to install mysql mysql is an database management system which is reponsible for storing database to install mybb forum we need to install mysql because we will need to save user data in it for installing mysql we will need to type the following commands in terminal Code: sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql Now we have to install php because it is an important thing for install mybb forum for PHP forum we have to type the following commands Code: sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt Code: Now we will secure mysql database management system by typing the following commands CREATE DATABASE kabir; CREATE USER 'kabir'@'localhost' IDENTIFIED BY 'kabir'; GRANT ALL PRIVILEGES ON kabir.* TO 'kabir'@'localhost' IDENTIFIED BY 'kabir'; Code: FLUSH PRIVILEGES; Code: exit Code: wget https://resources.mybb.com/downloads/mybb_1811.zip sudo apt-get install unzipnow we can install it by typing the following command Code: unzip [font=monospace]mybb_1811.zip Now we just need to configure few files permissions then we will be able to configure forum correctly Code: sudo chmod a+rw inc/settings.php if you get any problems please post here i will be happy to help u out[/code] RE: How to install Mybb forum in Debian/unbuntu - Zorono - 12-28-2017 Great Tutorial @kabir145 ![]() Note: please Change your bold fonts as its annoying RE: How to install Mybb forum in Debian/unbuntu - Arkiven4 - 01-02-2018 Maybe in other way is installing a control panel with softcalous inside and install mybb forum from there xD RE: How to install Mybb forum in Debian/unbuntu - youssefbasha - 01-02-2018 (01-02-2018, 01:04 AM)Arkiven4 Wrote: Maybe in other way is installing a control panel with softcalous inside and install mybb forum from there xD I don't support auto installers and softcalous because they just give free license without any benefits as when i tried to install mybb at the free version it told me you cant install mybb with a free license please contact your hosting provider to buy a license. |