<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>BluditCMS Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/bluditcms/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Fri, 21 May 2021 18:12:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to install Bludit CMS on Ubuntu 20.04?</title>
		<link>https://www.osradar.com/install-bludit-cms-ubuntu/</link>
					<comments>https://www.osradar.com/install-bludit-cms-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 25 May 2021 23:45:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[BluditCMS]]></category>
		<category><![CDATA[cms]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=30253</guid>

					<description><![CDATA[<p>Hello, friends. In this post, you will learn how to install Bludit CMS on Ubuntu 20.04 so you will have another alternative to create your website or blog. Bludit is a fairly simple CMS that we can use to deploy a blog or website quickly. One of the main characteristics of this CMS is that [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-bludit-cms-ubuntu/">How to install Bludit CMS on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. In this post, you will learn how to <strong>install Bludit CMS on Ubuntu 20.04</strong> so you will have another alternative to create your website or blog.</p>



<p><strong><a href="https://www.bludit.com/" target="_blank" rel="noreferrer noopener">Bludit</a> is a fairly simple CMS that we can use to deploy a blog or website quickly</strong>. One of the main characteristics of this CMS is that it uses files in JSON format to store the content. So, <strong>you don’t need to install or configure a database.</strong></p>



<p>Being a modern CMS, it is expected to support Plugins that extend its functionality. There are many so you may find what you need quickly.</p>



<p>Also, Bludit incorporates all the SEO tools to improve your ranking in all the search engines and social networks.</p>



<p>So, it is a good light and fast alternative to other more complete CMS <a href="https://www.osradar.com/how-to-install-wordpress-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">like WordPress</a>.</p>



<h2 id="install-bludit-cms-on-ubuntu-20.04"><a href="#install-bludit-cms-on-ubuntu-20.04" name="install-bludit-cms-on-ubuntu-20.04"></a>Install Bludit CMS on Ubuntu 20.04</h2>



<p>Being a CMS created with PHP we need that in our computer are properly configured the webserver and PHP. You could run <a href="https://www.osradar.com/install-lamp-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">the LAMP stack on Ubuntu 20.04</a> but Bludit does not require a database driver so it is not necessary.</p>



<p>To install Apache and PHP along with some extra modules and packages, just open a terminal or connect to the server via SSH and run</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt install php-cli php-fpm php-fpm php-common php-mbstring php-gd php-xml php-json apache2 libapache2-mod-php unzip git</pre>



<p>This way, we will have the packages installed and we will be able to start the installation of Bludit</p>



<h3 id="download-and-install-bludit-cms"><a href="#download-and-install-bludit-cms" name="download-and-install-bludit-cms"></a>Download and install Bludit CMS</h3>



<p>First, create the folder in the path where you want to install it. In this case, I have chosen <code>/var/www/bludit</code>.</p>



<pre class="wp-block-preformatted">sudo mkdir -p /var/www/bludit</pre>



<p>And now go to <code>/tmp/</code> and from there with the help of the wget command perform the download.</p>



<pre class="wp-block-preformatted">cd /tmp
wget https://www.bludit.com/releases/bludit-3-13-1.zip
--2021-05-17 23:37:47--  https://www.bludit.com/releases/bludit-3-13-1.zip
Resolving www.bludit.com (www.bludit.com)... 2606:4700:3035::6815:5322, 2606:4700:3032::ac43:d323, 172.67.211.35, ...
Connecting to www.bludit.com (www.bludit.com)|2606:4700:3035::6815:5322|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1917816 (1.8M) [application/zip]
Saving to: ‘bludit-3-13-1.zip’

bludit-3-13-1.zip                          100%[=====================================================================================&gt;]   1.83M  --.-KB/s    in 0.1s    

2021-05-17 23:37:47 (13.5 MB/s) - ‘bludit-3-13-1.zip’ saved [1917816/1917816]</pre>



<p><strong>Note: at the time of this post, the latest stable version is <code>3.13.1</code> to know which is the latest version available you have to go to the Bludit website</strong>.</p>



<p>After this, unzip the file</p>



<pre class="wp-block-preformatted">sudo unzip bludit-3-13-1.zip</pre>



<p>And now the unzipped content, move it to the directory you created for this purpose.</p>



<pre class="wp-block-preformatted">sudo mv bludit-3-13-1/* /var/www/bludit/</pre>



<p>Make the <code>bludit</code> folder belong to Apache.</p>



<pre class="wp-block-preformatted">sudo chown -R www-data:www-data /var/www/bludit</pre>



<p>Next, you need to create a new VirtualHost for Bludit.</p>



<pre class="wp-block-preformatted">sudo nano /etc/apache2/sites-available/bludit.conf</pre>



<p>And add the following configuration:</p>



<pre class="wp-block-preformatted">&lt;VirtualHost *:80&gt;
    ServerName bludit.osradar.test
    DocumentRoot /var/www/bludit
    &lt;Directory /var/www/bludit&gt;
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow from all
    &lt;/Directory&gt;
&lt;/VirtualHost&gt;</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="924" height="236" src="https://www.osradar.com/wp-content/uploads/2021/05/1-7.png" alt="1.- Creating a new VirtualHost for Bludit CMS" class="wp-image-30255" srcset="https://www.osradar.com/wp-content/uploads/2021/05/1-7.png 924w, https://www.osradar.com/wp-content/uploads/2021/05/1-7-300x77.png 300w, https://www.osradar.com/wp-content/uploads/2021/05/1-7-768x196.png 768w, https://www.osradar.com/wp-content/uploads/2021/05/1-7-696x178.png 696w" sizes="(max-width: 924px) 100vw, 924px" /><figcaption>1.- Creating a new VirtualHost for Bludit CMS</figcaption></figure>



<p>Replace the value of <code>ServerName</code> with the value of your domain. Save the changes and close the text editor.</p>



<p>To apply the changes, disable the default VirtualHost, enable the newly created one for Bludit, enable the <code>rewrite</code> module of Apache and restart it.</p>



<pre class="wp-block-preformatted">sudo a2dissite 000-default.conf
sudo a2ensite bludit.conf
sudo a2enmod rewrite
sudo systemctl restart apache2</pre>



<h2 id="complete-the-bludit-cms-installation"><a href="#complete-the-bludit-cms-installation" name="complete-the-bludit-cms-installation"></a>Complete the Bludit CMS installation</h2>



<p>Now, open a web browser of your choice and go to <code>http://your-domain/install</code> where you will see the initial installer screen.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2021/05/2-3-1024x502.png" alt="2.- Bludit CMS installer" class="wp-image-30258" srcset="https://www.osradar.com/wp-content/uploads/2021/05/2-3-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/05/2-3-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/05/2-3-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/05/2-3-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/05/2-3-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/05/2-3.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Bludit CMS installer</figcaption></figure>



<p>Next, set a password for the <code>admin</code> user and press the <code>Install</code> button.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2021/05/3-2-1024x502.png" alt="3.- Installing Bludit CMS " class="wp-image-30260" srcset="https://www.osradar.com/wp-content/uploads/2021/05/3-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/05/3-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/05/3-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/05/3-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/05/3-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/05/3-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Installing Bludit CMS </figcaption></figure>



<p>And the Bludit CMS instance will be ready on your server.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2021/05/4-2-1024x506.png" alt="4.- Main screen" class="wp-image-30261" srcset="https://www.osradar.com/wp-content/uploads/2021/05/4-2-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2021/05/4-2-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2021/05/4-2-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2021/05/4-2-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2021/05/4-2-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2021/05/4-2.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Main screen</figcaption></figure>



<p>From there you will be able to access the Admin Panel</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2021/05/5-3-1024x506.png" alt="5.- Bludit CMS on Ubuntu 20.04" class="wp-image-30262" srcset="https://www.osradar.com/wp-content/uploads/2021/05/5-3-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2021/05/5-3-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2021/05/5-3-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2021/05/5-3-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2021/05/5-3-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2021/05/5-3.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- Bludit CMS on Ubuntu 20.04</figcaption></figure>



<p>Now you just have to give it a try and make the most of it.</p>



<h2 id="conclusion"><a href="#conclusion" name="conclusion"></a>Conclusion</h2>



<p>This simple and powerful CMS is a sample of the number of alternatives that exist today to create a fully functional website. With Bludit CMS you don’t need a database manager which further lowers your computer requirements.</p>



<p></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-bludit-cms-ubuntu/">How to install Bludit CMS on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-bludit-cms-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
