<?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>Dotclear Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/dotclear/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Wed, 17 Apr 2019 15:25:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.13</generator>
	<item>
		<title>How to install Dotclear on Ubuntu 18.04?</title>
		<link>https://www.osradar.com/how-to-install-dotclear-on-ubuntu-18-04/</link>
					<comments>https://www.osradar.com/how-to-install-dotclear-on-ubuntu-18-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 23 Apr 2019 04:00:24 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[Dotclear]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[web site]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11883</guid>

					<description><![CDATA[<p>There are a lot of tools to create and manage websites today. Websites very different from each other can be easily managed and created thanks to CMS. Of this great group of tools, WordPress stands out for its ease and popularity. However, there are many other alternatives, able to face it. Each of them, dedicated [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-dotclear-on-ubuntu-18-04/">How to install Dotclear on Ubuntu 18.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>There are a lot of tools to create and manage websites today. Websites very different from each other can be easily managed and created thanks to CMS. Of this great group of tools, WordPress stands out for its ease and popularity. However, there are many other alternatives, able to face it. Each of them, dedicated to a specific sector, but all with a common goal, provide everything you need to host a dynamic website without too much effort. So, in this post, I will show you how to install Dotclear on Ubuntu 18.04.</p>
<p><a href="https://dotclear.org">Dotclear</a> is an open-source web publishing software published in 2003 by Olivier Meunier. The project&#8217;s purpose is to provide a user-friendly tool allowing anyone to publish on the web, regardless of their technical skills. Dotclear possesses a rich functionality that makes it a high-quality publishing tool, equaling and even outperforming other similar tools in some aspects. For example:</p>
<ul>
<li>Easy publication.</li>
<li>Fully customizable theme.</li>
<li>User-friendly administration.</li>
<li>Media management.</li>
<li>Naturally optimized for search engine.</li>
<li>Complete trackback support.</li>
</ul>
<p>As you can see, there are many features that make it a serious alternative to our website.</p>
<p>So, let us start.</p>
<h2>Getting Dotclear on Ubuntu</h2>
<h3>1) Install LAMP</h3>
<p>The first step is to have a functional LAMP server. Because Dotclear is a web application that requires a database manager.</p>
<p>So you can read our post about <a href="https://www.osradar.com/how-to-install-lamp-on-ubuntu-18-04-lts/" rel="noopener">how to install LAMP on Ubuntu 18.04.</a></p>
<p>I will just point out that it&#8217;s necessary to install some extra PHP modules. They are:</p>
<pre>libapache2-mod-php7.2 php7.2-common php7.2-mysql php7.2-gmp php7.2-curl php7.2-intl php7.2-mbstring php7.2-xmlrpc php7.2-gd php7.2-xml php7.2-cli php7.2-zip</pre>
<p>To install them, just type:</p>
<pre>:~$ sudo apt install libapache2-mod-php7.2 php7.2-common php7.2-mysql php7.2-gmp php7.2-curl php7.2-intl php7.2-mbstring php7.2-xmlrpc php7.2-gd php7.2-xml php7.2-cli php7.2-zip</pre>
<h3>2) Configure PHP</h3>
<p>In order for Dotclear to work without any problems, it is necessary to modify some parameters of the PHP configuration. So you have to edit the configuration file:</p>
<pre>:~$ sudo nano /etc/php/7.2/apache2/php.ini</pre>
<p>Now, edit the following parameters.</p>
<pre>file_uploads = On
allow_url_fopen = On
short_open_tag = On
memory_limit = 256M
upload_max_filesize = 200M
max_execution_time = 360</pre>
<p>I&#8217;ll give you a little trick, use in nano the key combination CTRL + W to find the exact term and not waste time.</p>
<p>Next, restart Apache.</p>
<pre>:~$ sudo systemctl restart apache2</pre>
<h3>3) Creating the database for Dotclear</h3>
<p>Once we have all the components installed, it&#8217;s time to create the database dedicated to Dotclear.</p>
<p>So run the following command:</p>
<pre>:~$ sudo mysql -u root -p
CREATE DATABASE dotclear;
GRANT ALL PRIVILEGES ON dotclear.* TO 'dotclearuser'@'localhost' IDENTIFIED BY 'dotpss';
FLUSH PRIVILEGES;
exit;</pre>
<figure id="attachment_11884" aria-describedby="caption-attachment-11884" style="width: 904px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11884" src="https://www.osradar.com/wp-content/uploads/2019/04/1-11.png" alt="1.- Creating the database for Dotclear" width="904" height="421" srcset="https://www.osradar.com/wp-content/uploads/2019/04/1-11.png 904w, https://www.osradar.com/wp-content/uploads/2019/04/1-11-300x140.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/1-11-768x358.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/1-11-696x324.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/1-11-902x420.png 902w" sizes="(max-width: 904px) 100vw, 904px" /><figcaption id="caption-attachment-11884" class="wp-caption-text">1.- Creating the database for Dotclear</figcaption></figure>
<h3>4) Install Dotclear on Ubuntu 18.04</h3>
<p>Now you have to download Dotclear to install it. To do this, run the following commands:</p>
<pre>:~$ cd /tmp/
:~$ wget http://download.dotclear.org/latest.tar.gz</pre>
<figure id="attachment_11885" aria-describedby="caption-attachment-11885" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11885" src="https://www.osradar.com/wp-content/uploads/2019/04/2-10.png" alt="2.- Download Dotclear on Ubuntu 18.04" width="1365" height="387" srcset="https://www.osradar.com/wp-content/uploads/2019/04/2-10.png 1365w, https://www.osradar.com/wp-content/uploads/2019/04/2-10-300x85.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/2-10-768x218.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/2-10-1024x290.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/2-10-696x197.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/2-10-1068x303.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11885" class="wp-caption-text">2.- Download Dotclear on Ubuntu 18.04</figcaption></figure>
<p>Next, decompress it and move it to the Apache root folder.</p>
<pre>:~$ tar xvf latest.tar.gz
:~$ sudo mv dotclear /var/www/html/dotclear</pre>
<p>After that, it is necessary to set the proper permissions to the folder.</p>
<pre>:~$ sudo chown -R www-data:www-data /var/www/html/dotclear/
:~$ sudo chmod -R 755 /var/www/html/dotclear/</pre>
<figure id="attachment_11886" aria-describedby="caption-attachment-11886" style="width: 936px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11886" src="https://www.osradar.com/wp-content/uploads/2019/04/3-10.png" alt="3.- Set the permission to the folder" width="936" height="115" srcset="https://www.osradar.com/wp-content/uploads/2019/04/3-10.png 936w, https://www.osradar.com/wp-content/uploads/2019/04/3-10-300x37.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/3-10-768x94.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/3-10-696x86.png 696w" sizes="(max-width: 936px) 100vw, 936px" /><figcaption id="caption-attachment-11886" class="wp-caption-text">3.- Set the permission to the folder</figcaption></figure>
<p>Now you have to make a <a href="https://www.osradar.com/how-to-configure-an-apache-virtual-host-on-debian-9/" rel="noopener">virtual host</a> for Dotclear run correctly.</p>
<pre>:~$ sudo nano /etc/apache2/sites-available/dotclear.conf</pre>
<p>And add the following:</p>
<pre>&lt;VirtualHost *:80&gt;
     ServerAdmin admin@your-server.com
     DocumentRoot /var/www/html/dotclear
     ServerName your-server.com
     ServerAlias www.your-server.com

     &lt;Directory /var/www/html/dotclear/&gt;
          Options FollowSymlinks
          AllowOverride All
          Require all granted
     &lt;/Directory&gt;

     ErrorLog ${APACHE_LOG_DIR}/error.log
     CustomLog ${APACHE_LOG_DIR}/access.log combined
&lt;/VirtualHost&gt;</pre>
<figure id="attachment_11887" aria-describedby="caption-attachment-11887" style="width: 884px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11887" src="https://www.osradar.com/wp-content/uploads/2019/04/4-7.png" alt="4.- Create a new virtualhost for Dotclear" width="884" height="382" srcset="https://www.osradar.com/wp-content/uploads/2019/04/4-7.png 884w, https://www.osradar.com/wp-content/uploads/2019/04/4-7-300x130.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/4-7-768x332.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/4-7-696x301.png 696w" sizes="(max-width: 884px) 100vw, 884px" /><figcaption id="caption-attachment-11887" class="wp-caption-text">4.- Create a new virtual host for Dotclear</figcaption></figure>
<p>Save the changes and close the file.</p>
<p>Next, enable the new virtual host and the rewrite module. After that, restart Apache.</p>
<pre>:~$ sudo a2ensite dotclear.conf
:~$ sudo a2enmod rewrite
:~$ sudo systemctl restart apache2</pre>
<figure id="attachment_11888" aria-describedby="caption-attachment-11888" style="width: 817px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11888" src="https://www.osradar.com/wp-content/uploads/2019/04/5-5.png" alt="5.- Restarting Apache" width="817" height="248" srcset="https://www.osradar.com/wp-content/uploads/2019/04/5-5.png 817w, https://www.osradar.com/wp-content/uploads/2019/04/5-5-300x91.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/5-5-768x233.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/5-5-696x211.png 696w" sizes="(max-width: 817px) 100vw, 817px" /><figcaption id="caption-attachment-11888" class="wp-caption-text">5.- Restarting Apache</figcaption></figure>
<h3>5) Complete the installation</h3>
<p>Finally, open the web browser and go to the server to run Dotclear. You will see the following:</p>
<figure id="attachment_11889" aria-describedby="caption-attachment-11889" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11889" src="https://www.osradar.com/wp-content/uploads/2019/04/6-4.png" alt="6.- Install Dotclear on Ubuntu 18.04" width="1366" height="665" srcset="https://www.osradar.com/wp-content/uploads/2019/04/6-4.png 1366w, https://www.osradar.com/wp-content/uploads/2019/04/6-4-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/6-4-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/6-4-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/6-4-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/6-4-1068x520.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/6-4-863x420.png 863w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11889" class="wp-caption-text">6.- Install Dotclear on Ubuntu 18.04</figcaption></figure>
<p>Then, type your MariaDB credentials and press Continue.</p>
<figure id="attachment_11890" aria-describedby="caption-attachment-11890" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11890" src="https://www.osradar.com/wp-content/uploads/2019/04/7-4.png" alt="7.- Type the MariaDB credentials" width="1366" height="665" srcset="https://www.osradar.com/wp-content/uploads/2019/04/7-4.png 1366w, https://www.osradar.com/wp-content/uploads/2019/04/7-4-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/7-4-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/7-4-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/7-4-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/7-4-1068x520.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/7-4-863x420.png 863w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11890" class="wp-caption-text">7.- Type the MariaDB credentials</figcaption></figure>
<p>Now, create the admin account.</p>
<figure id="attachment_11891" aria-describedby="caption-attachment-11891" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11891" src="https://www.osradar.com/wp-content/uploads/2019/04/8-2.png" alt="8.- Create the admin account" width="1366" height="665" srcset="https://www.osradar.com/wp-content/uploads/2019/04/8-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/04/8-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/8-2-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/8-2-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/8-2-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/8-2-1068x520.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/8-2-863x420.png 863w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11891" class="wp-caption-text">8.- Create the admin account</figcaption></figure>
<p>If everything went right, you&#8217;ll see the following message.</p>
<figure id="attachment_11892" aria-describedby="caption-attachment-11892" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11892" src="https://www.osradar.com/wp-content/uploads/2019/04/9-1.png" alt="9.- All done" width="1366" height="665" srcset="https://www.osradar.com/wp-content/uploads/2019/04/9-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/04/9-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/9-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/9-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/9-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/9-1-1068x520.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/9-1-863x420.png 863w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11892" class="wp-caption-text">9.- All done</figcaption></figure>
<p>Now, you will see the admin panel.</p>
<figure id="attachment_11893" aria-describedby="caption-attachment-11893" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11893" src="https://www.osradar.com/wp-content/uploads/2019/04/10-1.png" alt="10.- Admin panel" width="1366" height="665" srcset="https://www.osradar.com/wp-content/uploads/2019/04/10-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/04/10-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/10-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/10-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/10-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/10-1-1068x520.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/10-1-863x420.png 863w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11893" class="wp-caption-text">10.- Admin panel</figcaption></figure>
<p>And that&#8217;s it.</p>
<h2>Conclusion</h2>
<p>As you can see, the installation of Dotclear is not complicated, but it opens a new possibility to manage our blog or website. So, this is a very competitive alternative in a market dominated by WordPress.</p>
<p>Please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-dotclear-on-ubuntu-18-04/">How to install Dotclear on Ubuntu 18.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/how-to-install-dotclear-on-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
