<?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>e-commerce Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/e-commerce/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Wed, 26 Feb 2020 12:16:25 +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 Shopware on Debian 10?</title>
		<link>https://www.osradar.com/how-to-install-shopware-debian-10/</link>
					<comments>https://www.osradar.com/how-to-install-shopware-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 29 Feb 2020 00:11:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[shopware]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=18433</guid>

					<description><![CDATA[<p>Hello, folks. In this post, I will show you how to install Shopware on Debian 10 Buster. Shopware is a business-oriented application. With it you will be able to deploy an e-commerce platform professionally and above all quickly. It is used by many of the best known brands in the world. However, it is not [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-shopware-debian-10/">How to install Shopware on Debian 10?</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, folks. In this post, I will show you how to install Shopware on Debian 10 Buster.</p>
<p><a href="https://en.shopware.com/" target="_blank" rel="noopener noreferrer">Shopware</a> is a business-oriented application. With it you will be able to deploy an e-commerce platform professionally and above all quickly. It is used by many of the best known brands in the world. However, it is not entirely free, but has a community version that we can use for our small business or just to test.</p>
<p>In the same sense, Shopware is a web application, so having a LAMP server installed is an indispensable requirement.</p>
<h2>Install Shopware on Debian 10</h2>
<h3>Install LAMP on Debian 10</h3>
<p>Shopware is a web application. Therefore it requires a LAMP server installed and functional on the server.</p>
<p>So, installing LAMP on Debian 10 is the first step in this tutorial. Read our post about it.</p>
<p><a href="https://www.osradar.com/install-lamp-on-debian-10/" target="_blank" rel="noopener noreferrer">How to install LAMP on Debian 10?</a></p>
<p>Once installed, install these PHP modules as well:</p>
<pre>php7.3 php7.3-bcmath php7.3-cgi php7.3-cli php7.3-common php-curl php7.3-dba php7.3-enchant php7.3-fpm php7.3-gd php7.3-imap php7.3-intl php7.3-ldap php7.3-mbstring php7.3-mysql php7.3-opcache php-imagick php-memcache php7.3-soap php7.3-tidy php7.3-xml php7.3-zip libapache2-mod-php7.3</pre>
<p>Now we can continue.</p>
<h3>Create the database and user for Shopware</h3>
<p>Now the next step is to create a new database in MariaDB for Shopware. We will also take the opportunity to create a user to work with the application.</p>
<p>So, open the MariaDB console and type the following commands:</p>
<pre>:~$ sudo mysql -u root -p<br>&gt; CREATE DATABASE shopwaredb;<br>&gt; GRANT ALL PRIVILEGES ON shopwaredb.* TO 'shopwareuser'@'localhost' IDENTIFIED BY 'shoppss';<br>&gt; FLUSH PRIVILEGES;<br>&gt; exit;</pre>
<figure id="attachment_18462" aria-describedby="caption-attachment-18462" style="width: 1013px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-18462" src="https://www.osradar.com/wp-content/uploads/2020/02/1-15.png" alt="1.- Creating the new database for Shopware" width="1013" height="456" srcset="https://www.osradar.com/wp-content/uploads/2020/02/1-15.png 1013w, https://www.osradar.com/wp-content/uploads/2020/02/1-15-300x135.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/1-15-768x346.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/1-15-696x313.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/1-15-933x420.png 933w" sizes="(max-width: 1013px) 100vw, 1013px" /><figcaption id="caption-attachment-18462" class="wp-caption-text">1.- Creating the new database for Shopware</figcaption></figure>
<p>When you exit the console, you can start the Shopware download.</p>
<h3>Download and install Shopware on Debian 10 (I)</h3>
<p>Now we can download the application. To do this we will use the wget command.</p>
<p>So, go to the /tmp folder and download it from there:</p>
<pre>:~$ cd /tmp/<br>:~$ wget -c https://www.shopware.com/en/Download/redirect/file/install_6.1.3_1582123990.zip<br>--2020-02-22 09:30:36--  https://www.shopware.com/en/Download/redirect/file/install_6.1.3_1582123990.zip<br>Resolving www.shopware.com (www.shopware.com)... 128.65.211.34<br>Connecting to www.shopware.com (www.shopware.com)|128.65.211.34|:443... connected.<br>HTTP request sent, awaiting response... 302 Found<br>Location: https://releases.shopware.com/sw6/install_6.1.3_1582123990.zip [following]<br>--2020-02-22 09:30:39--  https://releases.shopware.com/sw6/install_6.1.3_1582123990.zip<br>Resolving releases.shopware.com (releases.shopware.com)... 13.32.85.45, 13.32.85.91, 13.32.85.85, ...<br>Connecting to releases.shopware.com (releases.shopware.com)|13.32.85.45|:443... connected.<br>HTTP request sent, awaiting response... 200 OK<br>Length: 82792104 (79M) [application/zip]<br>Saving to: 'install_6.1.3_1582123990.zip'<br>install_6.1.3_1582123990.zip               100%[=====================================================================================&gt;]  78.96M   851KB/s    in 86s <br>2020-02-22 09:32:11 (945 KB/s) - 'install_6.1.3_1582123990.zip' saved [82792104/82792104]</pre>
<figure id="attachment_18463" aria-describedby="caption-attachment-18463" style="width: 1343px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-18463" src="https://www.osradar.com/wp-content/uploads/2020/02/2-14.png" alt="2.- Download Shopware on Debian 10" width="1343" height="351" srcset="https://www.osradar.com/wp-content/uploads/2020/02/2-14.png 1343w, https://www.osradar.com/wp-content/uploads/2020/02/2-14-300x78.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/2-14-1024x268.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/2-14-768x201.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/2-14-696x182.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/2-14-1068x279.png 1068w" sizes="(max-width: 1343px) 100vw, 1343px" /><figcaption id="caption-attachment-18463" class="wp-caption-text">2.- Download Shopware on Debian 10</figcaption></figure>
<p>Once you have completed the download, create a folder for Shopware.</p>
<pre>:~$ mkdir shopware</pre>
<p>Access it and from there decompress the downloaded file.</p>
<pre>:~$ cd shopware/<br>~$ unzip ../install_6.1.3_1582123990.zip</pre>
<p>Then, return to the previous directory and move the Shopware folder to the Apache root directory.</p>
<pre>:~$ cd ..<br>:~$ sudo mv shopware/ /var/www/html/</pre>
<p>And change the owner of the folder as well as the permissions on it.</p>
<pre>:~$ sudo chown -R www-data:www-data /var/www/html/shopware/<br>:~$ sudo chmod -R 775 /var/www/html/shopware</pre>
<p>Next, we have to make a new virtualhost for Shopware. So create a new file for this and add the following:</p>
<pre>:~$ sudo nano /etc/apache2/sites-available/shopware.conf</pre>
<pre>&lt;VirtualHost *:80&gt;<br>     DocumentRoot /var/www/html/shopware/public<br>     ServerName your-domain.com<br><br>    &lt;Directory /var/www/html/shopware/public&gt;<br>        Options FollowSymlinks<br>        AllowOverride All<br>        Require all granted<br>     &lt;/Directory&gt;<br><br>     ErrorLog ${APACHE_LOG_DIR}/shopware_error.log<br>     CustomLog ${APACHE_LOG_DIR}/shopware_access.log combined<br><br>&lt;/VirtualHost&gt;</pre>
<p>Of course, replace your-domain.com with yours. Once you&#8217;ve done that, save the changes and close the file.</p>
<p>Now, you have to enable the new Virtualhost and restart Apache.</p>
<pre>sudo a2ensite shopware.conf<br>sudo a2enmod rewrite<br>sudo systemctl reload apache2</pre>
<p>Now, we can start the installation using the web interface.</p>
<h3>Install Shopware on Debian 10 (II)</h3>
<p>Now open your favorite web browser and go to http://your-server/ and you will see the following:</p>
<figure id="attachment_18465" aria-describedby="caption-attachment-18465" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-18465" src="https://www.osradar.com/wp-content/uploads/2020/02/4-11.png" alt="4.- Shopware on Debian 10" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/02/4-11.png 1354w, https://www.osradar.com/wp-content/uploads/2020/02/4-11-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/4-11-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/4-11-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/4-11-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/02/4-11-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/4-11-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/4-11-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-18465" class="wp-caption-text">4.- Shopware on Debian 10</figcaption></figure>
<p>The installer will then check your server to see if it is suitable.</p>
<figure id="attachment_18466" aria-describedby="caption-attachment-18466" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-18466" src="https://www.osradar.com/wp-content/uploads/2020/02/5-11.png" alt="5.- System ready for Shopware" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/02/5-11.png 1354w, https://www.osradar.com/wp-content/uploads/2020/02/5-11-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/5-11-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/5-11-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/5-11-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/02/5-11-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/5-11-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/5-11-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-18466" class="wp-caption-text">5.- System ready for Shopware</figcaption></figure>
<p>Next, accept the license terms.</p>
<figure id="attachment_18467" aria-describedby="caption-attachment-18467" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-18467" src="https://www.osradar.com/wp-content/uploads/2020/02/6-9.png" alt="6.- License terms" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/02/6-9.png 1354w, https://www.osradar.com/wp-content/uploads/2020/02/6-9-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/6-9-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/6-9-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/6-9-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/02/6-9-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/6-9-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/6-9-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-18467" class="wp-caption-text">6.- License terms</figcaption></figure>
<p>So, now you have to type the database credentials.</p>
<figure id="attachment_18468" aria-describedby="caption-attachment-18468" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-18468" src="https://www.osradar.com/wp-content/uploads/2020/02/7-4.png" alt="7.- Database configuration" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/02/7-4.png 1354w, https://www.osradar.com/wp-content/uploads/2020/02/7-4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/7-4-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/7-4-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/7-4-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/02/7-4-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/7-4-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/7-4-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-18468" class="wp-caption-text">7.- Database configuration</figcaption></figure>
<p>Then the loading of the database will begin.</p>
<figure id="attachment_18470" aria-describedby="caption-attachment-18470" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-18470" src="https://www.osradar.com/wp-content/uploads/2020/02/8-5.png" alt="8.- Shopware installation" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/02/8-5.png 1354w, https://www.osradar.com/wp-content/uploads/2020/02/8-5-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/8-5-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/8-5-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/8-5-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/02/8-5-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/8-5-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/8-5-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-18470" class="wp-caption-text">8.- Shopware installation</figcaption></figure>
<p>If everything was OK, you will see this:</p>
<figure id="attachment_18471" aria-describedby="caption-attachment-18471" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-18471" src="https://www.osradar.com/wp-content/uploads/2020/02/9-4.png" alt="9.- Installation Succesful" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/02/9-4.png 1354w, https://www.osradar.com/wp-content/uploads/2020/02/9-4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/9-4-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/9-4-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/9-4-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/02/9-4-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/9-4-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/9-4-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-18471" class="wp-caption-text">9.- Installation Succesful</figcaption></figure>
<p>Finally, set up your new shopping site. There you have to fill in the data you prefer. On this screen you will also create the administrator account.</p>
<figure id="attachment_18472" aria-describedby="caption-attachment-18472" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-18472" src="https://www.osradar.com/wp-content/uploads/2020/02/10-4.png" alt="10.- Configuring Shopware on Debian 10" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/02/10-4.png 1354w, https://www.osradar.com/wp-content/uploads/2020/02/10-4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/10-4-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/10-4-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/10-4-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/02/10-4-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/10-4-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/10-4-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-18472" class="wp-caption-text">10.- Configuring Shopware on Debian 10</figcaption></figure>
<p>Now just finish the installation and access the dashboard and that&#8217;s it.</p>
<h2>Conclusion</h2>
<p>Ecommerce is something fundamental in our world so having this kind of tools at hand is very useful. So today you know how to install it on a Debian 10 server.</p>
<p>Please share this post and join <a href="https://t.me/osradar" target="_blank" rel="noopener noreferrer">our Telegram channel</a>.</p>


<p></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-shopware-debian-10/">How to install Shopware on Debian 10?</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-shopware-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Cezerin platform on Ubuntu 18.04?</title>
		<link>https://www.osradar.com/install-cezerin-platform-ubuntu-18-04/</link>
					<comments>https://www.osradar.com/install-cezerin-platform-ubuntu-18-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 25 Aug 2019 23:11:25 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[cezerin]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[NodeJS]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=13163</guid>

					<description><![CDATA[<p>Today much of the trade remains traditional, but every time the trend is turned to the Internet. In this sense, companies large and small, need applications and tools to help promote their products. In addition, create all the infrastructure to conduct E-commerce. So, Linux is outlined as the ideal system to be the system behind [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-cezerin-platform-ubuntu-18-04/">How to install Cezerin platform 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>Today much of the trade remains traditional, but every time the trend is turned to the Internet. In this sense, companies large and small, need applications and tools to help promote their products. In addition, create all the infrastructure to conduct E-commerce. So, Linux is outlined as the ideal system to be the system behind the entire infrastructure. Today, I will show you how to install Cezerin on Ubuntu 18.04. With Cezerin you can deploy an e-commerce platform quickly and easily.</p>
<h2>What is Cezerin?</h2>
<p><a href="https://github.com/cezerin/cezerin" rel="noopener">Cezerin</a> is React and Node.js based eCommerce platform. Allows creating Progressive Web Apps.</p>
<p>In other words, you can make a commercial site in a few minutes with this application.</p>
<p>Of course, Cezerin is open source and has the basic operations to make your online store. Although it is simple, it has many features:</p>
<ul>
<li>Products (options, variants, attributes).</li>
<li>Product categories.</li>
<li>Inventory and stock management.</li>
<li>Customers.</li>
<li>Customer groups.</li>
<li>Orders.</li>
<li>Order custom statuses.</li>
</ul>
<p>So, let us get to work.</p>
<h2>Install Cezerin on Ubuntu 18.04</h2>
<p>To install Cezerin it is necessary to have an Ubuntu 18.04 server that has the sudo command available.</p>
<p>On the other hand, since the application is built with NodeJS, it needs to be installed correctly. In addition, to manage the application data use the database manager NoSQL MongoDB. In other words, you have to install them both.</p>
<h3>1) Install NodeJS on Ubuntu 18.04</h3>
<p>The first step is to install NodeJS on Ubuntu 18.04. For that, we have a detailed tutorial that will make you achieve this goal.</p>
<p>Read <a href="https://www.osradar.com/how-to-install-nodejs-on-ubuntu-18-04-lts-linux-mint-19/" rel="noopener">How to install NodeJS on Ubuntu 18.04?</a></p>
<p>Once you have finished, you will be able to continue with the guide.</p>
<h3>2) Install MongoDB on Ubuntu 18.04</h3>
<p>Now it is MongoDB&#8217;s turn. For this, we will use the version available in the official repository of the project. So add it and then install MongoDB.</p>
<p>First, open a terminal and run the following command to add the GPG key of the repository.</p>
<pre>:~$ wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add -</pre>
<p><figure id="attachment_13183" aria-describedby="caption-attachment-13183" style="width: 749px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13183" src="https://www.osradar.com/wp-content/uploads/2019/08/1-16.jpeg" alt="1.-Adding the GPG key for the repository" width="749" height="91" srcset="https://www.osradar.com/wp-content/uploads/2019/08/1-16.jpeg 749w, https://www.osradar.com/wp-content/uploads/2019/08/1-16-300x36.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/1-16-696x85.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/1-16-741x91.jpeg 741w" sizes="(max-width: 749px) 100vw, 749px" /><figcaption id="caption-attachment-13183" class="wp-caption-text">1.-Adding the GPG key for the repository</figcaption></figure></p>
<p>It then adds the repository as such to the list of software origins.</p>
<pre>:~$ echo "deb http://repo.mongodb.org/apt/debian stretch/mongodb-org/4.2 main" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.2.list</pre>
<p>After this, refresh the APT cache.</p>
<pre>:~$ sudo apt update</pre>
<p>Install MongoDB on Ubuntu with the following command:</p>
<pre>:~$ sudo apt install mongodb-org mongodb-org-shell mongodb-org-server mongodb-org-mongos libcurl3</pre>
<p><figure id="attachment_13184" aria-describedby="caption-attachment-13184" style="width: 920px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13184" src="https://www.osradar.com/wp-content/uploads/2019/08/2-14.jpeg" alt="2.- Install MongoDB on Ubuntu 18.04" width="920" height="233" srcset="https://www.osradar.com/wp-content/uploads/2019/08/2-14.jpeg 920w, https://www.osradar.com/wp-content/uploads/2019/08/2-14-300x76.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/2-14-768x195.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/2-14-696x176.jpeg 696w" sizes="(max-width: 920px) 100vw, 920px" /><figcaption id="caption-attachment-13184" class="wp-caption-text">2.- Install MongoDB on Ubuntu 18.04</figcaption></figure></p>
<p>Check the installed version:</p>
<pre>:~$ mongod -version
db version v4.2.0
git version: a4b751dcf51dd249c5865812b390cfd1c0129c30
OpenSSL version: OpenSSL 1.1.1  11 Sep 2018
allocator: tcmalloc
modules: none
build environment:
distmod: debian92
distarch: x86_64
target_arch: x86_64</pre>
<h3>3) Install Cezerin on Ubuntu 18.04</h3>
<p>After installing the pre-requirements, we will be able to install Cezerin. To do this, navigate to your personal folder and download the source code using git.</p>
<pre>:~$ cd ~
:~$ git clone https://github.com/cezerin/cezerin.git cezerin</pre>
<p><figure id="attachment_13185" aria-describedby="caption-attachment-13185" style="width: 844px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13185" src="https://www.osradar.com/wp-content/uploads/2019/08/3-15.jpeg" alt="3.- Downloading Cezering using git" width="844" height="175" srcset="https://www.osradar.com/wp-content/uploads/2019/08/3-15.jpeg 844w, https://www.osradar.com/wp-content/uploads/2019/08/3-15-300x62.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/3-15-768x159.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/3-15-696x144.jpeg 696w" sizes="(max-width: 844px) 100vw, 844px" /><figcaption id="caption-attachment-13185" class="wp-caption-text">3.- Downloading Cezering using git</figcaption></figure></p>
<p>Then, navigate into the folder and run:</p>
<pre>:~$ cd cezerin
:~$ sudo npm install
:~$ sudo npm run build</pre>
<p><figure id="attachment_13186" aria-describedby="caption-attachment-13186" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13186" src="https://www.osradar.com/wp-content/uploads/2019/08/4-13.jpeg" alt="4.- Installing Cezerin on Ubuntu 18.04" width="1366" height="707" srcset="https://www.osradar.com/wp-content/uploads/2019/08/4-13.jpeg 1366w, https://www.osradar.com/wp-content/uploads/2019/08/4-13-300x155.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/4-13-768x397.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/4-13-1024x530.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/08/4-13-696x360.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/4-13-1068x553.jpeg 1068w, https://www.osradar.com/wp-content/uploads/2019/08/4-13-811x420.jpeg 811w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13186" class="wp-caption-text">4.- Installing Cezerin on Ubuntu 18.04</figcaption></figure></p>
<p>Once the &#8220;compilation&#8221; has been completed, the application must be installed as such. To do this, simply use the following:</p>
<pre>:~$ sudo npm run setup</pre>
<p><figure id="attachment_13187" aria-describedby="caption-attachment-13187" style="width: 663px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13187" src="https://www.osradar.com/wp-content/uploads/2019/08/5-7.jpeg" alt="5.- Install Cezerin on Ubuntu 18.04" width="663" height="370" srcset="https://www.osradar.com/wp-content/uploads/2019/08/5-7.jpeg 663w, https://www.osradar.com/wp-content/uploads/2019/08/5-7-300x167.jpeg 300w" sizes="(max-width: 663px) 100vw, 663px" /><figcaption id="caption-attachment-13187" class="wp-caption-text">5.- Install Cezerin on Ubuntu 18.04</figcaption></figure></p>
<p>Now you can start the program by using the following command:</p>
<pre>:~$ sudo npm start</pre>
<p><figure id="attachment_13188" aria-describedby="caption-attachment-13188" style="width: 825px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13188" src="https://www.osradar.com/wp-content/uploads/2019/08/6-4.jpeg" alt="6.- Starting the application" width="825" height="329" srcset="https://www.osradar.com/wp-content/uploads/2019/08/6-4.jpeg 825w, https://www.osradar.com/wp-content/uploads/2019/08/6-4-300x120.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/6-4-768x306.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/6-4-696x278.jpeg 696w" sizes="(max-width: 825px) 100vw, 825px" /><figcaption id="caption-attachment-13188" class="wp-caption-text">6.- Starting the application</figcaption></figure></p>
<p>Now, open your web browser and go to <code>http://Server-ip:3000</code>. Remember to open the port on the firewall.</p>
<p><figure id="attachment_13189" aria-describedby="caption-attachment-13189" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13189" src="https://www.osradar.com/wp-content/uploads/2019/08/7-8.png" alt="7.- Cezering running on Ubuntu 18.04" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/7-8.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/7-8-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/7-8-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/7-8-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/7-8-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/7-8-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/7-8-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13189" class="wp-caption-text">7.- Cezering running on Ubuntu 18.04</figcaption></figure></p>
<p>If you want to manage Cezerin as a systemd service, run the following commands:</p>
<pre>:~$ sudo nano /etc/systemd/system/cezerin.service</pre>
<p>And add the following:</p>
<pre>[Unit]
Description=Cezerin

[Service]
ExecStart=/usr/bin/npm start
WorkingDirectory=/opt/cezerin
Restart=always
RestartSec=10
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=nodejs-example

[Install]
WantedBy=multi-user.target</pre>
<p><figure id="attachment_13190" aria-describedby="caption-attachment-13190" style="width: 889px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13190" src="https://www.osradar.com/wp-content/uploads/2019/08/8.jpeg" alt="8.- Make Cezering a systemd service" width="889" height="299" srcset="https://www.osradar.com/wp-content/uploads/2019/08/8.jpeg 889w, https://www.osradar.com/wp-content/uploads/2019/08/8-300x101.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/8-768x258.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/8-696x234.jpeg 696w" sizes="(max-width: 889px) 100vw, 889px" /><figcaption id="caption-attachment-13190" class="wp-caption-text">8.- Make Cezering a systemd service</figcaption></figure></p>
<p>To apply the changes, reload systemd.</p>
<pre>:~$ sudo systemctl daemon-reload</pre>
<p>Now, you can start it, enable it or stop it easily.</p>
<p>And that is it.</p>
<h2>Conclusion</h2>
<p>As you can see, it is quite simple to deploy an E-Commerce platform with Cezerin. Of course, the potential of the application makes the possibilities unimaginable.</p>
<p>So, share this post and please join <a href="https://t.me/osradar">our Telegram channel.</a></p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-cezerin-platform-ubuntu-18-04/">How to install Cezerin platform 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/install-cezerin-platform-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install Prestashop on Debian 10</title>
		<link>https://www.osradar.com/install-prestashop-on-debian-10/</link>
					<comments>https://www.osradar.com/install-prestashop-on-debian-10/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 14 Aug 2019 22:06:34 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[PrestaShop]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12987</guid>

					<description><![CDATA[<p>It is fair to say that the Internet has revolutionized world trade. Now large and small businesses have access to technologies that allow them to deploy a website to show what they offer. Some of these technologies allow them to transact with each other. On the other hand, the great advantage of using Linux is [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-prestashop-on-debian-10/">Install Prestashop on Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>It is fair to say that the Internet has revolutionized world trade. Now large and small businesses have access to technologies that allow them to deploy a website to show what they offer. Some of these technologies allow them to transact with each other. On the other hand, the great advantage of using Linux is that many of these tools have versions for this system. One of them is Prestashop. This interesting tool allows you to create websites with E-commerce management for any business. In this post, you will learn how to install Prestashop on Debian 10, Buster.</p>
<h2>Prestashop ideal for the E-commerce</h2>
<p><a href="https://www.prestashop.com" rel="noopener">Prestashop</a> is an open-source web application, written in PHP that allows you to create and deploy a website for a business. To some extent, it is similar to WordPress but Prestashop adds unique features for a business.</p>
<p>Some of its features are:</p>
<ul>
<li>Allows you to create a catalog of products</li>
<li>With Prestashop, you can deploy a payment system</li>
<li>Customer Service System</li>
<li>You can manage shipments of products.</li>
</ul>
<p>So, let us start.</p>
<h2>Install Prestashop on Debian 10</h2>
<h3>1) Install LAMP on Debian 10</h3>
<p>The first step to install Prestashop is to have a functional LAMP server. To do this, we invite you to read our post about it.</p>
<p>Read <a href="https://www.osradar.com/install-lamp-on-debian-10/" rel="noopener">How to install LAMP on Debian 10?</a></p>
<p>Just pay attention to install the following PHP modules.</p>
<pre>php7.3 php7.3-gd php7.3-mbstring php7.3-mysql php7.3-curl php-xml php-cli php7.3-intl php7.3-zip</pre>
<h3>2) Create the database and the MariaDB user</h3>
<p>Now that the LAMP server is running, it is necessary to create a new database and a user for Prestashop. So go to the MariaDB console and do the process. Use the root user.</p>
<pre>:~# mysql -u root -p
&gt; CREATE DATABASE presta;
&gt; GRANT ALL PRIVILEGES ON presta.* TO 'prestauser'@'localhost' IDENTIFIED BY 'prestapss';
&gt; FLUSH PRIVILEGES;
&gt; exit;</pre>
<p><figure id="attachment_13001" aria-describedby="caption-attachment-13001" style="width: 838px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13001" src="https://www.osradar.com/wp-content/uploads/2019/08/1-7.jpeg" alt="1.- Creating the new MariaDB user and database for Prestashop" width="838" height="366" srcset="https://www.osradar.com/wp-content/uploads/2019/08/1-7.jpeg 838w, https://www.osradar.com/wp-content/uploads/2019/08/1-7-300x131.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/1-7-768x335.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/1-7-696x304.jpeg 696w" sizes="(max-width: 838px) 100vw, 838px" /><figcaption id="caption-attachment-13001" class="wp-caption-text">1.- Creating the new MariaDB user and database for Prestashop</figcaption></figure></p>
<h3>3) Install Prestashop on Debian 10</h3>
<p>Now we can install Prestashop on Debian 10. To do this, download the latest version available from Github. To do this, use <code>wget</code> and then use <code>unzip</code> to decompress it. Therefore, it is necessary to install them previously.</p>
<pre>:~# apt install wget unzip
:~# cd /tmp/
:~# wget -c https://github.com/PrestaShop/PrestaShop/releases/download/1.7.6.0/prestashop_1.7.6.0.zip</pre>
<p><figure id="attachment_13002" aria-describedby="caption-attachment-13002" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13002" src="https://www.osradar.com/wp-content/uploads/2019/08/2-7.jpeg" alt="2.- Download and install Prestashop on Debian 10" width="1366" height="386" srcset="https://www.osradar.com/wp-content/uploads/2019/08/2-7.jpeg 1366w, https://www.osradar.com/wp-content/uploads/2019/08/2-7-300x85.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/2-7-768x217.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/2-7-1024x289.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/08/2-7-696x197.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/2-7-1068x302.jpeg 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13002" class="wp-caption-text">2.- Download and install Prestashop on Debian 10</figcaption></figure></p>
<p>Then, create a new folder and decompress the file on it.</p>
<pre>:~# mkdir prestashop
:~# unzip prestashop_1.7.6.0.zip -d prestashop/
:~# cd prestashop &amp;&amp; unzip prestashop.zip</pre>
<p>After that, move it to the Apache document root. Next, changes the folder owner and set the right permissions.</p>
<pre>:~# cd ..
:~# mv prestashop /var/www/html/
:~# chown -R www-data:www-data /var/www/html/prestashop/
:~# chmod -R 755 /var/www/html/prestashop</pre>
<p>Now, create a new Virtualhost for Prestashop.</p>
<pre>:~# nano /etc/apache2/sites-available/prestashop.conf</pre>
<p>And add the following:</p>
<pre>&lt;VirtualHost *:80&gt;
     ServerAdmin admin@your_domain.com
      DocumentRoot /var/www/html/prestashop
     ServerName your-domain.com

     &lt;Directory /var/www/html/prestashop&gt;
          Options FollowSymlinks
          AllowOverride All
          Require all granted
     &lt;/Directory&gt;

     ErrorLog ${APACHE_LOG_DIR}/your-domain.com_error.log
     CustomLog ${APACHE_LOG_DIR}/your-domain.com_access.log combined

&lt;/VirtualHost&gt;</pre>
<p><figure id="attachment_13003" aria-describedby="caption-attachment-13003" style="width: 984px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13003" src="https://www.osradar.com/wp-content/uploads/2019/08/3-7.jpeg" alt="3.- Creating a new virtualhost for Prestashop" width="984" height="296" srcset="https://www.osradar.com/wp-content/uploads/2019/08/3-7.jpeg 984w, https://www.osradar.com/wp-content/uploads/2019/08/3-7-300x90.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/3-7-768x231.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/3-7-696x209.jpeg 696w" sizes="(max-width: 984px) 100vw, 984px" /><figcaption id="caption-attachment-13003" class="wp-caption-text">3.- Creating a new virtualhost for Prestashop</figcaption></figure></p>
<p>On ServerName type your server name.</p>
<p>Save the changes and close the file.</p>
<p>Then, enable the new Virtualhost, the Apache Rewrite module and restart Apache.</p>
<pre>:~# ln -s /etc/apache2/sites-available/prestashop.conf /etc/apache2/sites-enabled/prestashop.conf
:~# a2enmod rewrite
:~# systemctl restart apache2</pre>
<h3>4) Install Prestashop on Debian 10 (II)</h3>
<p>Now open your web browser and go to your server to complete the installation. You will see the following screen.</p>
<p><figure id="attachment_13004" aria-describedby="caption-attachment-13004" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13004" src="https://www.osradar.com/wp-content/uploads/2019/08/4.png" alt="4.- Install Prestashop on Debian 10" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/4.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/4-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/4-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/4-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/4-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/4-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/4-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13004" class="wp-caption-text">4.- Install Prestashop on Debian 10</figcaption></figure></p>
<p>Next, accept the License terms.</p>
<p><figure id="attachment_13005" aria-describedby="caption-attachment-13005" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13005" src="https://www.osradar.com/wp-content/uploads/2019/08/5-2.png" alt="5.- License terms" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/5-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/5-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/5-2-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/5-2-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/5-2-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/5-2-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/5-2-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13005" class="wp-caption-text">5.- License terms</figcaption></figure></p>
<p>Then, type the site information.</p>
<p><figure id="attachment_13006" aria-describedby="caption-attachment-13006" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13006" src="https://www.osradar.com/wp-content/uploads/2019/08/6.png" alt="6.- Site information" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/6-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/6-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/6-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/6-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/6-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/6-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13006" class="wp-caption-text">6.- Site information</figcaption></figure></p>
<p>Next, test the database connection. In this step, you have to type the credentials.</p>
<p><figure id="attachment_13007" aria-describedby="caption-attachment-13007" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13007" src="https://www.osradar.com/wp-content/uploads/2019/08/7-1.png" alt="7.- Database connection" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/7-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/7-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/7-1-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/7-1-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/7-1-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/7-1-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/7-1-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13007" class="wp-caption-text">7.- Database connection</figcaption></figure></p>
<p>Finally, wait some time and that is it.</p>
<p><figure id="attachment_13008" aria-describedby="caption-attachment-13008" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13008" src="https://www.osradar.com/wp-content/uploads/2019/08/8-1.png" alt="8.- Installing Prestashop" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/8-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/8-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/8-1-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/8-1-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/8-1-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/8-1-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/8-1-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13008" class="wp-caption-text">8.- Installing Prestashop</figcaption></figure></p>
<h2>Conclusion</h2>
<p>Prestashop is ideal for deploying websites focused on businesses and trades. This way it is possible to install it in Debian 10 in a very fast and easy way. All this with a robust application with many important features for the sector. Today you have learned to install it in Debian 10.</p>
<p>Please share this post with your friends and join <a href="https://t.me/osradar">our Telegram channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-prestashop-on-debian-10/">Install Prestashop on Debian 10</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-prestashop-on-debian-10/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Open Classifieds on Ubuntu 18.04?</title>
		<link>https://www.osradar.com/install-open-classifieds-on-ubuntu-18-04/</link>
					<comments>https://www.osradar.com/install-open-classifieds-on-ubuntu-18-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 27 Jun 2019 01:07:05 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[classifieds]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[Open Classifieds]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12498</guid>

					<description><![CDATA[<p>On many occasions, it is necessary to have a classified platform. Ideal if we have an SME and need the publication of some commercial requirements that essence is classified. in the light of this, Linux each time has many applications oriented to commercial productivity. In other words, there is an application that does this to [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-open-classifieds-on-ubuntu-18-04/">How to install Open Classifieds 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>On many occasions, it is necessary to have a classified platform. Ideal if we have an SME and need the publication of some commercial requirements that essence is classified. in the light of this, Linux each time has many applications oriented to commercial productivity. In other words, there is an application that does this to you without much effort on our server. In this post, I will show you how to install Open Classifieds on Ubuntu 18.04.</p>
<p><a href="https://yclas.com/" rel="noopener noreferrer">Open Classifieds</a> is the form name of Yclas. It is an application written using PHP language and requires a database manager that allows you to deploy a classified website for our company. One of the great advantages of Open Classifieds is that it is quite light and fast but this does not take away its power. Today the application is a reference in its area. On the other hand, it is open source which makes it possible for us to examine your source code for potential vulnerabilities.</p>
<p>So, let us install Open Classifieds on Ubuntu.</p>
<h2>Install Open Classifieds on Ubuntu 18.04</h2>
<p>We will now begin the installation process. For this, we require <a href="https://www.osradar.com/tag/apache/" rel="noopener noreferrer">Apache</a> web server, <a href="https://www.osradar.com/tag/mariadb/" rel="noopener noreferrer">MariaDB</a> and <a href="https://www.osradar.com/tag/php/" rel="noopener noreferrer">PHP</a>. Then, we will download the Open Classifieds installer.</p>
<h3>1.- Install Apache2 and PHP 7.2</h3>
<p>Open Classifieds requires a web server to run. It is logical if we take into account that it is a web application. At the same time, we will have to install PHP for its running. We can do this with the following command:</p>
<pre>:~$ sudo apt install apache2 php7.2 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-soap php7.2-xml php7.2-cli php7.2-zip</pre>
<p><figure id="attachment_12500" aria-describedby="caption-attachment-12500" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12500" src="https://www.osradar.com/wp-content/uploads/2019/06/1-15.png" alt="1.- Install Apache and PHP on Ubuntu 18.04" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/06/1-15.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/1-15-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/1-15-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/1-15-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/1-15-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/1-15-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/1-15-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12500" class="wp-caption-text">1.- Install Apache and PHP on Ubuntu 18.04</figcaption></figure></p>
<p>At the end of the installation, it is necessary to modify some PHP configuration parameters. This to ensure that the application runs correctly.</p>
<pre>:~$ sudo nano /etc/php/7.2/apache2/php.ini</pre>
<p>In this file, you change the following parameters.</p>
<pre>file_uploads = On
allow_url_fopen = On
short_open_tag = On
memory_limit = 256M
upload_max_filesize = 100M
max_execution_time = 360</pre>
<p>Note: You can use CTRL + W to find the lines quickly.</p>
<p>Next, press CTRL + O to save the changes and CTRL + X to close it.</p>
<p>Then, it is time to test PHP. To do it, create a new file on <code>/var/www/html/</code> called <code>test.php</code> and add the following.</p>
<pre>:~$ sudo nano /var/www/html/test.php
&lt;?php
phpinfo();
?&gt;</pre>
<p><figure id="attachment_12501" aria-describedby="caption-attachment-12501" style="width: 808px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12501" src="https://www.osradar.com/wp-content/uploads/2019/06/2-12.png" alt="2.- PHP info" width="808" height="144" srcset="https://www.osradar.com/wp-content/uploads/2019/06/2-12.png 808w, https://www.osradar.com/wp-content/uploads/2019/06/2-12-300x53.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/2-12-768x137.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/2-12-696x124.png 696w" sizes="(max-width: 808px) 100vw, 808px" /><figcaption id="caption-attachment-12501" class="wp-caption-text">2.- PHP info</figcaption></figure></p>
<p>Finally, open the file using the web browser. http://your-server/test.php</p>
<p><figure id="attachment_12502" aria-describedby="caption-attachment-12502" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12502" src="https://www.osradar.com/wp-content/uploads/2019/06/3-9.png" alt="3.- PHP working on Ubuntu 18.04" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/3-9.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/3-9-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/3-9-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/3-9-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/3-9-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/3-9-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/3-9-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/3-9-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12502" class="wp-caption-text">3.- PHP working on Ubuntu 18.04</figcaption></figure></p>
<p>So, PHP is working.</p>
<h3>2.- Install MariaDB</h3>
<p>MariaDB is a MySQL fork. Practically 100% compatible but with better community support and by Linux distributions today.</p>
<pre>:~$ sudo apt install mariadb-server</pre>
<p><figure id="attachment_12503" aria-describedby="caption-attachment-12503" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12503" src="https://www.osradar.com/wp-content/uploads/2019/06/4-7.png" alt="4.- Install MariaBD on Ubuntu 18.04" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/06/4-7.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/4-7-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/4-7-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/4-7-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/4-7-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/4-7-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/4-7-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12503" class="wp-caption-text">4.- Install MariaDB on Ubuntu 18.04</figcaption></figure></p>
<p>Next, set the root password for MariaDB.</p>
<pre>:~$ sudo mysql_secure_installation</pre>
<p>However, not only the root password can be defined, but also other settings as you can see in the image.</p>
<p><figure id="attachment_12504" aria-describedby="caption-attachment-12504" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12504" src="https://www.osradar.com/wp-content/uploads/2019/06/5-5.png" alt="5.- Using mysql_secure_installation script" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/06/5-5.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/5-5-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/5-5-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/5-5-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/5-5-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/5-5-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/5-5-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12504" class="wp-caption-text">5.- Using mysql_secure_installation script</figcaption></figure></p>
<p>Now you have to create the user and the database dedicated to Open Classifieds. To do this we must enter the MariaDB console.</p>
<pre>:~$ sudo mysql -u root -p
&gt; CREATE DATABASE openclassifieds;
&gt; GRANT ALL PRIVILEGES ON openclassifieds.* TO 'openuser'@'localhost' IDENTIFIED BY 'openpss';
&gt; FLUSH PRIVILEGES;
exit;</pre>
<p><figure id="attachment_12505" aria-describedby="caption-attachment-12505" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12505" src="https://www.osradar.com/wp-content/uploads/2019/06/6-4.png" alt="6.- Creating the user and database for Open Classifieds" width="1365" height="419" srcset="https://www.osradar.com/wp-content/uploads/2019/06/6-4.png 1365w, https://www.osradar.com/wp-content/uploads/2019/06/6-4-300x92.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/6-4-768x236.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/6-4-1024x314.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/6-4-696x214.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/6-4-1068x328.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12505" class="wp-caption-text">6.- Creating the user and database for Open Classifieds</figcaption></figure></p>
<p>Now, we can install Open Classifieds.</p>
<h3>3.- Install Open Classifieds (I)</h3>
<p>Now, we can install the free version of the application. These features are enough for most users.</p>
<pre>:~$ cd /tmp/
:~$ wget https://github.com/yclas/yclas/archive/master.zip</pre>
<p>&nbsp;</p>
<p><figure id="attachment_12506" aria-describedby="caption-attachment-12506" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12506" src="https://www.osradar.com/wp-content/uploads/2019/06/7-3.png" alt="7.- Download and install Open Classifieds on Ubuntu 18.04" width="1365" height="376" srcset="https://www.osradar.com/wp-content/uploads/2019/06/7-3.png 1365w, https://www.osradar.com/wp-content/uploads/2019/06/7-3-300x83.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/7-3-768x212.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/7-3-1024x282.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/7-3-696x192.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/7-3-1068x294.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12506" class="wp-caption-text">7.- Download and install Open Classifieds on Ubuntu 18.04</figcaption></figure></p>
<p>Then, decompress it. And move it to the Apache folder.</p>
<p>&nbsp;</p>
<pre>:~$ sudo apt install unzip -y
:~$ unzip master.zip
:~$ sudo mv yclas-master /var/www/html/yclas</pre>
<p>After that, you have to set the right permissions to the application.</p>
<pre>:~$ sudo chown -R www-data:www-data /var/www/html/yclas/
:~$ sudo chmod -R 755 /var/www/html/yclas/</pre>
<p>Now, we need to create a new virtual host for Open Classifieds.</p>
<pre>:~$ sudo nano /etc/apache2/sites-available/yclas.conf</pre>
<p>And add the following:</p>
<pre>&lt;VirtualHost&gt;
ServerAdmin admin@your-domain.com
DocumentRoot /var/www/html/yclas
ServerName your-domain.com
ServerAlias www.your-domain.com
     &lt;Directory /var/www/html/yclas/&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>
<p><figure id="attachment_12507" aria-describedby="caption-attachment-12507" style="width: 893px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12507" src="https://www.osradar.com/wp-content/uploads/2019/06/8-3.png" alt="8.- Creating a new virtualhost" width="893" height="348" srcset="https://www.osradar.com/wp-content/uploads/2019/06/8-3.png 893w, https://www.osradar.com/wp-content/uploads/2019/06/8-3-300x117.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/8-3-768x299.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/8-3-696x271.png 696w" sizes="(max-width: 893px) 100vw, 893px" /><figcaption id="caption-attachment-12507" class="wp-caption-text">8.- Creating a new virtualhost</figcaption></figure></p>
<p>Do not forget to replace &#8220;your-domain&#8221; with yours. Then, save the changes and close the file.</p>
<p>After that, enable the new virtualhost, the Apache rewrite module and restart the Apache service.</p>
<pre>:~$ sudo a2ensite yclas
:~$ sudo a2enmod rewrite
:~$ sudo systemctl restart apache2</pre>
<p>Now, complete the installation using the web interface.</p>
<h3>4.- Install Open Classified using the web interface (II)</h3>
<p>Open your web browser and go to your server to complete the installation. First, the installer will check for the requirements.</p>
<p><figure id="attachment_12508" aria-describedby="caption-attachment-12508" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12508" src="https://www.osradar.com/wp-content/uploads/2019/06/9-2.png" alt="9.- Install Open Classified on Ubuntu 18.04" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/9-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/9-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/9-2-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/9-2-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/9-2-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/9-2-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/9-2-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/9-2-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12508" class="wp-caption-text">9.- Install Open Classified on Ubuntu 18.04</figcaption></figure></p>
<p>Then, type the MariaDB credentials.</p>
<p><figure id="attachment_12509" aria-describedby="caption-attachment-12509" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12509" src="https://www.osradar.com/wp-content/uploads/2019/06/10-1.png" alt="10.- Type your MariaDB credentials" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/10-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/10-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/10-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/10-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/10-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/10-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/10-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/10-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12509" class="wp-caption-text">10.- Type your MariaDB credentials</figcaption></figure></p>
<p>Now, configure the site.</p>
<p><figure id="attachment_12510" aria-describedby="caption-attachment-12510" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12510" src="https://www.osradar.com/wp-content/uploads/2019/06/11-1.png" alt="11.- Configuring the new site" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/11-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/11-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/11-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/11-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/11-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/11-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/11-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/11-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12510" class="wp-caption-text">11.- Configuring the new site</figcaption></figure></p>
<p>At the end of the installation, you will be able to visit the site and log in.</p>
<p><figure id="attachment_12511" aria-describedby="caption-attachment-12511" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12511" src="https://www.osradar.com/wp-content/uploads/2019/06/12-1.png" alt="12.- Installation complete" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/12-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/12-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/12-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/12-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/12-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/12-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/12-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/12-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12511" class="wp-caption-text">12.- Installation complete</figcaption></figure></p>
<p>So, you can check your new site.</p>
<p><figure id="attachment_12512" aria-describedby="caption-attachment-12512" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12512" src="https://www.osradar.com/wp-content/uploads/2019/06/13-1.png" alt="13.- Open Classifieds is correctly installed" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/13-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/13-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/13-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/13-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/13-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/13-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/13-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/13-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12512" class="wp-caption-text">13.- Open Classifieds is correctly installed</figcaption></figure></p>
<p>So, enjoy it.</p>
<h2>Conclusion</h2>
<p>Open Classifieds is a great tool aimed at providing solutions to companies of many sizes. However, the installation is not complicated at all and we can take advantage of the application to deploy our classified page quickly and easily.</p>
<p>Please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-open-classifieds-on-ubuntu-18-04/">How to install Open Classifieds 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/install-open-classifieds-on-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install Shopware CE on Debian 9</title>
		<link>https://www.osradar.com/install-shopware-ce-on-debian-9/</link>
					<comments>https://www.osradar.com/install-shopware-ce-on-debian-9/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 17 May 2019 23:12:21 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[shopware]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12127</guid>

					<description><![CDATA[<p>In this post, I will show you how to install Shopware CE on Debian 9. Starting from a base system installed that does not have the LAMP server installed. So it will be a detailed guide until the installation is a success. Shopware is a business-oriented application. With it you will be able to deploy [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-shopware-ce-on-debian-9/">Install Shopware CE on Debian 9</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In this post, I will show you how to install Shopware CE on Debian 9. Starting from a base system installed that does not have the LAMP server installed. So it will be a detailed guide until the installation is a success.</p>
<p><a href="https://en.shopware.com/" target="_blank" rel="noopener noreferrer">Shopware</a> is a business-oriented application. With it you will be able to deploy an e-commerce platform professionally and above all quickly. It is used by many of the best known brands in the world. However, it is not entirely free, but has a community version that we can use for our small business or just to test.</p>
<p>In the same sense, Shopware is a web application, so having a LAMP server installed is an indispensable requirement.</p>
<p>So let&#8217;s install Shopware CE on <a href="https://www.osradar.com/tag/debian/" target="_blank" rel="noopener noreferrer">Debian</a> 9.</p>
<h2>Install Shopware CE on Debian &#8211; LAMP</h2>
<h3>1.- Install Apache and PHP</h3>
<p>The first step is to install <a href="https://www.osradar.com/tag/apache/" target="_blank" rel="noopener noreferrer">Apache</a> and <a href="https://www.osradar.com/tag/php/" target="_blank" rel="noopener noreferrer">PHP</a>. With them, we will have the most basic to be able to execute the application correctly.</p>
<p>So open a terminal or connect to your server. Then, start the installation with Apache.</p>
<pre>:~$ su
:~# apt install apache2</pre>
<p><figure id="attachment_12131" aria-describedby="caption-attachment-12131" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12131" src="https://www.osradar.com/wp-content/uploads/2019/05/1-8.png" alt="1.- Install Apache web server" width="1365" height="290" srcset="https://www.osradar.com/wp-content/uploads/2019/05/1-8.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/1-8-300x64.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/1-8-768x163.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/1-8-1024x218.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/1-8-696x148.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/1-8-1068x227.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12131" class="wp-caption-text">1.- Install Apache web server</figcaption></figure></p>
<p>Then, open your web browser en go to http://Your-server/. You will see this.</p>
<p><figure id="attachment_12132" aria-describedby="caption-attachment-12132" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12132" src="https://www.osradar.com/wp-content/uploads/2019/05/2-8.png" alt="2.- Apache default page" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/2-8.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/2-8-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/2-8-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/2-8-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/2-8-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/2-8-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/2-8-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/2-8-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12132" class="wp-caption-text">2.- Apache default page</figcaption></figure></p>
<p>Now, install PHP from the Debian repository.</p>
<pre>:~# apt install php7.0 php7.0-cli php7.0-common php7.0-mysql php7.0-curl php7.0-json php7.0-zip php7.0-gd php7.0-xml php7.0-mbstring php7.0-opcache</pre>
<p><figure id="attachment_12133" aria-describedby="caption-attachment-12133" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12133" src="https://www.osradar.com/wp-content/uploads/2019/05/3-7.png" alt="3.- Install PHP" width="1365" height="323" srcset="https://www.osradar.com/wp-content/uploads/2019/05/3-7.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/3-7-300x71.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/3-7-768x182.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/3-7-1024x242.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/3-7-696x165.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/3-7-1068x253.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12133" class="wp-caption-text">3.- Install PHP</figcaption></figure></p>
<p>Then make sure that PHP is being interpreted correctly. Create a file in <code>/var/www/html/</code> called <code>test.php</code> and add the following:</p>
<pre>:~# nano /var/www/html/test.php
&lt;?php
phpinfo();
?&gt;</pre>
<p><figure id="attachment_12134" aria-describedby="caption-attachment-12134" style="width: 840px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12134" src="https://www.osradar.com/wp-content/uploads/2019/05/4-7.png" alt="4.- test PHP" width="840" height="155" srcset="https://www.osradar.com/wp-content/uploads/2019/05/4-7.png 840w, https://www.osradar.com/wp-content/uploads/2019/05/4-7-300x55.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/4-7-768x142.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/4-7-696x128.png 696w" sizes="(max-width: 840px) 100vw, 840px" /><figcaption id="caption-attachment-12134" class="wp-caption-text">4.- test PHP</figcaption></figure></p>
<p>Next, restart the Apache service.</p>
<pre>:~# systemctl restart apache2</pre>
<p>After that, open it using the web browser. You will see this.</p>
<p><figure id="attachment_12135" aria-describedby="caption-attachment-12135" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12135" src="https://www.osradar.com/wp-content/uploads/2019/05/5-2.png" alt="5.- PHP info" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/5-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/5-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/5-2-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/5-2-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/5-2-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/5-2-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/5-2-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/5-2-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12135" class="wp-caption-text">5.- PHP info</figcaption></figure></p>
<p>So, Apache and PHP are working properly.</p>
<h3>2) Install and configure MariaDB</h3>
<p>We already have the basics done, but Shopware also requires a database manager. In this case, I will use <a href="https://www.osradar.com/tag/mariadb/" target="_blank" rel="noopener noreferrer">MariaDB</a> for this tutorial. It is free, MySQL compatible and easy to install.</p>
<pre>:~# apt install mariadb-server</pre>
<p><figure id="attachment_12136" aria-describedby="caption-attachment-12136" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12136" src="https://www.osradar.com/wp-content/uploads/2019/05/6-1.png" alt="6.- Install MariaDB server" width="1365" height="408" srcset="https://www.osradar.com/wp-content/uploads/2019/05/6-1.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/6-1-300x90.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/6-1-768x230.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/6-1-1024x306.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/6-1-696x208.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/6-1-1068x319.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12136" class="wp-caption-text">6.- Install MariaDB server</figcaption></figure></p>
<p>Then, set a root password using the <code>mysql_secure_installation</code> script.</p>
<pre>:~# mysql_secure_installation</pre>
<p>Then, you will be asked the following configuration questions. You can answer as you like, but it is advisable to read them well and make the decisions that best suit you.</p>
<pre>Remove anonymous users?: Y
Disallow root login remotely?: N
Remove test database and access to it?: Y
Reload privilege tables now? : Y</pre>
<p><figure id="attachment_12137" aria-describedby="caption-attachment-12137" style="width: 1125px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12137" src="https://www.osradar.com/wp-content/uploads/2019/05/7-1.png" alt="7.- Configuring MariaDB" width="1125" height="671" srcset="https://www.osradar.com/wp-content/uploads/2019/05/7-1.png 1125w, https://www.osradar.com/wp-content/uploads/2019/05/7-1-300x179.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/7-1-768x458.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/7-1-1024x611.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/7-1-696x415.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/7-1-1068x637.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/7-1-704x420.png 704w" sizes="(max-width: 1125px) 100vw, 1125px" /><figcaption id="caption-attachment-12137" class="wp-caption-text">7.- Configuring MariaDB</figcaption></figure></p>
<p>Now it is necessary to create a database dedicated to Shopware. In addition to a new MariaDB user. so type the following commands:</p>
<pre>:~# mysql -u root -p
CREATE DATABASE shopwaredb;
GRANT ALL PRIVILEGES ON shopwaredb.* TO 'shopwareuser'@'localhost' IDENTIFIED BY 'shoppss';
FLUSH PRIVILEGES;
exit;</pre>
<p><figure id="attachment_12138" aria-describedby="caption-attachment-12138" style="width: 1126px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12138" src="https://www.osradar.com/wp-content/uploads/2019/05/8.png" alt="8.- Creating the new user for Shopware" width="1126" height="415" srcset="https://www.osradar.com/wp-content/uploads/2019/05/8.png 1126w, https://www.osradar.com/wp-content/uploads/2019/05/8-300x111.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/8-768x283.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/8-1024x377.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/8-696x257.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/8-1068x394.png 1068w" sizes="(max-width: 1126px) 100vw, 1126px" /><figcaption id="caption-attachment-12138" class="wp-caption-text">8.- Creating the new user for Shopware</figcaption></figure></p>
<p>So, you can install Shopware.</p>
<h3>3) Install Shopware CE on Debian 9</h3>
<p>Now, we can download Shopware and install it.</p>
<pre>:~# cd /tmp/
:~# wget https://releases.shopware.com/install_5.5.7_f785facc70e39f2ca4292e78739457417f19fbcf.zip?_ga=2.110917381.1678735926.1552879434-1860898197.1552787146 -O shopware.zip</pre>
<p><figure id="attachment_12139" aria-describedby="caption-attachment-12139" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12139" src="https://www.osradar.com/wp-content/uploads/2019/05/9.png" alt="9.- Download Shopware" width="1365" height="347" srcset="https://www.osradar.com/wp-content/uploads/2019/05/9.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/9-300x76.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/9-768x195.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/9-1024x260.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/9-696x177.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/9-1068x271.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12139" class="wp-caption-text">9.- Download Shopware</figcaption></figure></p>
<p>Next, unzip the file.</p>
<pre>:~# mkdir shopware
:~# cd shopware/
:~# unzip ../shopware.zip</pre>
<p><em><strong>Note: In case you do not have unzip installed, you can do it using apt install unzip.</strong></em></p>
<p>Next, move the folder to the Apache folder and set the permissions.</p>
<pre>:~# cd ..
:~# mv shopware/ /var/www/html/
:~# chown -R www-data:www-data /var/www/html/shopware/
:~# chmod -R 775 /var/www/html/shopware</pre>
<p><figure id="attachment_12140" aria-describedby="caption-attachment-12140" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12140" src="https://www.osradar.com/wp-content/uploads/2019/05/10.png" alt="10.- Install shopware ce on Debian" width="1365" height="164" srcset="https://www.osradar.com/wp-content/uploads/2019/05/10.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/10-300x36.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/10-768x92.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/10-1024x123.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/10-696x84.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/10-1068x128.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12140" class="wp-caption-text">10.- Install shopware ce on Debian</figcaption></figure></p>
<p>Now it is necessary to make a new virtualhost for shopware.</p>
<pre>:~# nano /etc/apache2/sites-available/shopware.conf</pre>
<p>And add the following:</p>
<pre>&lt;VirtualHost *:80&gt;
     DocumentRoot /var/www/html/shopware
     ServerName your-domain.com

    &lt;Directory /var/www/html/shopware/&gt;
        Options FollowSymlinks
        AllowOverride All
        Require all granted
     &lt;/Directory&gt;

     ErrorLog ${APACHE_LOG_DIR}/shopware_error.log
     CustomLog ${APACHE_LOG_DIR}/shopware_access.log combined

&lt;/VirtualHost&gt;</pre>
<p><figure id="attachment_12141" aria-describedby="caption-attachment-12141" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12141" src="https://www.osradar.com/wp-content/uploads/2019/05/11.png" alt="11.- New virtual host for Shopware" width="1365" height="324" srcset="https://www.osradar.com/wp-content/uploads/2019/05/11.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/11-300x71.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/11-768x182.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/11-1024x243.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/11-696x165.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/11-1068x254.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12141" class="wp-caption-text">11.- New virtual host for Shopware</figcaption></figure></p>
<p>Save the changes and close the file.</p>
<p>After that, enable the new site, the rewrite module and restart Apache.</p>
<pre>:~# a2ensite shopware.conf
:~# a2enmod rewrite
:~# systemctl reload apache2</pre>
<p><figure id="attachment_12142" aria-describedby="caption-attachment-12142" style="width: 1042px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12142" src="https://www.osradar.com/wp-content/uploads/2019/05/12.png" alt="12.- Setting the final configurations on Apache for Shopware" width="1042" height="235" srcset="https://www.osradar.com/wp-content/uploads/2019/05/12.png 1042w, https://www.osradar.com/wp-content/uploads/2019/05/12-300x68.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/12-768x173.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/12-1024x231.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/12-696x157.png 696w" sizes="(max-width: 1042px) 100vw, 1042px" /><figcaption id="caption-attachment-12142" class="wp-caption-text">12.- Setting the final configurations on Apache for Shopware</figcaption></figure></p>
<p>Now we can complete the installation</p>
<h3>Complete the installation</h3>
<p>Now, go to your web browser and access your server http://your-server.</p>
<p><figure id="attachment_12143" aria-describedby="caption-attachment-12143" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12143" src="https://www.osradar.com/wp-content/uploads/2019/05/13.png" alt="13.- Start the Installation" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/13.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/13-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/13-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/13-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/13-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/13-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/13-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/13-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12143" class="wp-caption-text">13.- Start the Installation</figcaption></figure></p>
<p>Next, the installer will check for the requisites.</p>
<p><figure id="attachment_12144" aria-describedby="caption-attachment-12144" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12144" src="https://www.osradar.com/wp-content/uploads/2019/05/14.png" alt="14.- Check for the requirements" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/14.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/14-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/14-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/14-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/14-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/14-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/14-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/14-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12144" class="wp-caption-text">14.- Check for the requirements</figcaption></figure></p>
<p>After that, accept the Terms of service.</p>
<p><figure id="attachment_12145" aria-describedby="caption-attachment-12145" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12145" src="https://www.osradar.com/wp-content/uploads/2019/05/15.png" alt="15.- Terms of service" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/15.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/15-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/15-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/15-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/15-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/15-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/15-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/15-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12145" class="wp-caption-text">15.- Terms of service</figcaption></figure></p>
<p>After that, configure the databases. Type the parameters of the database.</p>
<p><figure id="attachment_12146" aria-describedby="caption-attachment-12146" style="width: 1366px" class="wp-caption aligncenter"><img loading="lazy" class="size-full wp-image-12146" src="https://www.osradar.com/wp-content/uploads/2019/05/16.png" alt="16.- Configure the databases" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/16.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/16-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/16-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/16-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/16-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/16-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/16-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/16-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12146" class="wp-caption-text">16.- Configure the databases</figcaption></figure></p>
<p>Then, start the installation.</p>
<p><figure id="attachment_12147" aria-describedby="caption-attachment-12147" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12147" src="https://www.osradar.com/wp-content/uploads/2019/05/17.png" alt="17.- Install Shopware ce on Debian" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/17.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/17-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/17-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/17-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/17-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/17-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/17-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/17-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12147" class="wp-caption-text">17.- Install Shopware ce on Debian</figcaption></figure></p>
<p><figure id="attachment_12148" aria-describedby="caption-attachment-12148" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12148" src="https://www.osradar.com/wp-content/uploads/2019/05/18.png" alt="18.- Installation Finished" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/18.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/18-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/18-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/18-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/18-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/18-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/18-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/18-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12148" class="wp-caption-text">18.- Installation Finished</figcaption></figure></p>
<p>Then, choose the license. In this case, it is the Community Edition.</p>
<p><figure id="attachment_12149" aria-describedby="caption-attachment-12149" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12149" src="https://www.osradar.com/wp-content/uploads/2019/05/19.png" alt="19.- Shopware license" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/19.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/19-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/19-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/19-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/19-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/19-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/19-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/19-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12149" class="wp-caption-text">19.- Shopware license</figcaption></figure></p>
<p>After that, set the shop settings.</p>
<p><figure id="attachment_12150" aria-describedby="caption-attachment-12150" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12150" src="https://www.osradar.com/wp-content/uploads/2019/05/20.png" alt="20.- Shop settings" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/20.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/20-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/20-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/20-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/20-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/20-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/20-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/20-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12150" class="wp-caption-text">20.- Shop settings</figcaption></figure></p>
<p>After that, you will see the following:</p>
<p><figure id="attachment_12151" aria-describedby="caption-attachment-12151" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12151" src="https://www.osradar.com/wp-content/uploads/2019/05/21.png" alt="21.- Everything is OK" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/21.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/21-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/21-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/21-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/21-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/21-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/21-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/21-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12151" class="wp-caption-text">21.- Everything is OK</figcaption></figure></p>
<p>So, you can log in now.</p>
<p><figure id="attachment_12152" aria-describedby="caption-attachment-12152" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12152" src="https://www.osradar.com/wp-content/uploads/2019/05/22.png" alt="22.- Log in" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/22.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/22-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/22-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/22-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/22-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/22-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/22-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/22-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12152" class="wp-caption-text">22.- Log in</figcaption></figure></p>
<p>So, enjoy it.</p>
<h2>Conclusion</h2>
<p>Shopware is a professional tool for companies looking to set up their e-commerce platform. That way, you can improve your revenue so it&#8217;s a very useful application.</p>
<p>Tell us, do you like Shopware? Have you used it? in your business use it? please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-shopware-ce-on-debian-9/">Install Shopware CE on Debian 9</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-shopware-ce-on-debian-9/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install PrestaShop in Debian 9 and Ubuntu 18.04</title>
		<link>https://www.osradar.com/how-to-install-prestashop-in-debian-9/</link>
					<comments>https://www.osradar.com/how-to-install-prestashop-in-debian-9/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Fri, 01 Jun 2018 09:41:41 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[PrestaShop]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=3646</guid>

					<description><![CDATA[<p>In today&#8217;s world, the Internet is vital for the business world, and it is not possible to conceive that a store that opens its doors to offer its products does so without the help of mass dissemination and E-Commerce. PrestaShop is an e-commerce solution that allows us to create our own online store. Yeah, just [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-prestashop-in-debian-9/">How to install PrestaShop in Debian 9 and 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>In today&#8217;s world, the Internet is vital for the business world, and it is not possible to conceive that a store that opens its doors to offer its products does so without the help of mass dissemination and E-Commerce.</p>
<p>PrestaShop is an e-commerce solution that allows us to create our own online store. Yeah, just like you read it, our own store.</p>
<p>Among its features we have:</p>
<ul>
<li>Store Templates: You can choose from hundreds of themes to create your online store, you&#8217;ll find the perfect template for your business.</li>
<li>Store builder:  Create the online store of your dreams without size and scope limits and sell online.</li>
<li>Adaptive desig: perfectly adapts to all types of screens and devices</li>
<li>Online payment:we can choose from over 50 world-class payment solutions and payment gateways for your online sales.</li>
<li>International expansion</li>
</ul>
<p>Among many others. It also has an active community that helps to improve the experience of using the application. Today we will learn how to install it on our Debian9 server.</p>
<p>How to install PrestaShop in Debian 9 ?</p>
<h3><strong>Installing PrestaShop: Upgrading the system and installing Apache</strong></h3>
<p>As I always say, before installing or working on production, the first thing to do is to update the system, this allows us to always have the latest packages available, including security patches.</p>
<pre><strong>           apt update &amp;&amp; sudo apt -y upgrade
</strong></pre>
<p><figure id="attachment_3649" aria-describedby="caption-attachment-3649" style="width: 720px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3649" src="https://www.osradar.com/wp-content/uploads/2018/06/2.png" alt="ap upgrade" width="720" height="400" srcset="https://www.osradar.com/wp-content/uploads/2018/06/2.png 720w, https://www.osradar.com/wp-content/uploads/2018/06/2-300x167.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/2-696x387.png 696w" sizes="(max-width: 720px) 100vw, 720px" /><figcaption id="caption-attachment-3649" class="wp-caption-text">apt upgrade</figcaption></figure></p>
<p><img loading="lazy" class="alignnone size-full wp-image-3673" src="https://www.osradar.com/wp-content/uploads/2018/06/101.png" alt="" width="658" height="450" srcset="https://www.osradar.com/wp-content/uploads/2018/06/101.png 658w, https://www.osradar.com/wp-content/uploads/2018/06/101-300x205.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/101-218x150.png 218w, https://www.osradar.com/wp-content/uploads/2018/06/101-614x420.png 614w" sizes="(max-width: 658px) 100vw, 658px" /></p>
<p>After having the system updated, we need to install apache:</p>
<pre><strong>          apt install apache2
</strong></pre>
<p><figure id="attachment_3674" aria-describedby="caption-attachment-3674" style="width: 658px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3674" src="https://www.osradar.com/wp-content/uploads/2018/06/102.png" alt="apt install apache2" width="658" height="450" srcset="https://www.osradar.com/wp-content/uploads/2018/06/102.png 658w, https://www.osradar.com/wp-content/uploads/2018/06/102-300x205.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/102-218x150.png 218w, https://www.osradar.com/wp-content/uploads/2018/06/102-614x420.png 614w" sizes="(max-width: 658px) 100vw, 658px" /><figcaption id="caption-attachment-3674" class="wp-caption-text">apt install apache2</figcaption></figure></p>
<p>We enabled apache mod_rewrite</p>
<pre><strong>           a2enmod rewrite</strong></pre>
<h3>Installing and configuring MariaDB</h3>
<p>Like Apache, we must install it:</p>
<pre><strong>           apt install mariadb-server-10.1
</strong></pre>
<p><strong> </strong></p>
<p><figure id="attachment_3676" aria-describedby="caption-attachment-3676" style="width: 660px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3676" src="https://www.osradar.com/wp-content/uploads/2018/06/103.png" alt="mariadb" width="660" height="416" srcset="https://www.osradar.com/wp-content/uploads/2018/06/103.png 660w, https://www.osradar.com/wp-content/uploads/2018/06/103-300x189.png 300w" sizes="(max-width: 660px) 100vw, 660px" /><figcaption id="caption-attachment-3676" class="wp-caption-text">mariabd</figcaption></figure></p>
<p>With MariaDB installed we have to run your Scritp configuration where we will define the root password and other options. To all these questions we will answer yes.</p>
<pre><strong>          /usr/bin/mysql_secure_installation</strong></pre>
<p><figure id="attachment_3677" aria-describedby="caption-attachment-3677" style="width: 660px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3677" src="https://www.osradar.com/wp-content/uploads/2018/06/104.png" alt="mysql_secure_installation" width="660" height="416" srcset="https://www.osradar.com/wp-content/uploads/2018/06/104.png 660w, https://www.osradar.com/wp-content/uploads/2018/06/104-300x189.png 300w" sizes="(max-width: 660px) 100vw, 660px" /><figcaption id="caption-attachment-3677" class="wp-caption-text">mysql_secure_installation</figcaption></figure></p>
<p><figure id="attachment_3678" aria-describedby="caption-attachment-3678" style="width: 660px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3678" src="https://www.osradar.com/wp-content/uploads/2018/06/105.png" alt="myslq_secure_installation" width="660" height="416" srcset="https://www.osradar.com/wp-content/uploads/2018/06/105.png 660w, https://www.osradar.com/wp-content/uploads/2018/06/105-300x189.png 300w" sizes="(max-width: 660px) 100vw, 660px" /><figcaption id="caption-attachment-3678" class="wp-caption-text">myslq_secure_installation</figcaption></figure></p>
<p><figure id="attachment_3679" aria-describedby="caption-attachment-3679" style="width: 660px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3679" src="https://www.osradar.com/wp-content/uploads/2018/06/107.png" alt="final mysql_scure_installation" width="660" height="416" srcset="https://www.osradar.com/wp-content/uploads/2018/06/107.png 660w, https://www.osradar.com/wp-content/uploads/2018/06/107-300x189.png 300w" sizes="(max-width: 660px) 100vw, 660px" /><figcaption id="caption-attachment-3679" class="wp-caption-text">final mysql_scure_installation</figcaption></figure></p>
<p>Now we must access MariaDB from the terminal to create the database and the specific user for the use of prestashop</p>
<pre><strong>           mysql -u root -p</strong></pre>
<p>Once inside, we proceed to create the database.</p>
<p><figure id="attachment_3680" aria-describedby="caption-attachment-3680" style="width: 660px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3680" src="https://www.osradar.com/wp-content/uploads/2018/06/108.png" alt="using mariadb" width="660" height="416" srcset="https://www.osradar.com/wp-content/uploads/2018/06/108.png 660w, https://www.osradar.com/wp-content/uploads/2018/06/108-300x189.png 300w" sizes="(max-width: 660px) 100vw, 660px" /><figcaption id="caption-attachment-3680" class="wp-caption-text">using mariadb</figcaption></figure></p>
<p><strong>CREATE DATABASE prestashop;</strong></p>
<p><figure id="attachment_3681" aria-describedby="caption-attachment-3681" style="width: 660px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3681" src="https://www.osradar.com/wp-content/uploads/2018/06/109.png" alt="Creating the database" width="660" height="416" srcset="https://www.osradar.com/wp-content/uploads/2018/06/109.png 660w, https://www.osradar.com/wp-content/uploads/2018/06/109-300x189.png 300w" sizes="(max-width: 660px) 100vw, 660px" /><figcaption id="caption-attachment-3681" class="wp-caption-text">Creating the database</figcaption></figure></p>
<p>And now we create the user dedicated to prestashop:</p>
<p><figure id="attachment_3682" aria-describedby="caption-attachment-3682" style="width: 660px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3682" src="https://www.osradar.com/wp-content/uploads/2018/06/110.png" alt="creating the user" width="660" height="416" srcset="https://www.osradar.com/wp-content/uploads/2018/06/110.png 660w, https://www.osradar.com/wp-content/uploads/2018/06/110-300x189.png 300w" sizes="(max-width: 660px) 100vw, 660px" /><figcaption id="caption-attachment-3682" class="wp-caption-text">creating the user</figcaption></figure></p>
<ul>
<li>prestashop is the name of the database</li>
<li>prestauser refers to mariadb user name for prestashop</li>
<li>prestapss is the assigned password.</li>
</ul>
<p>You can modify these parameters for your own. We refreshed the privileges and left MariaDB.</p>
<pre><strong>FLUSH PRIVILEGES;</strong>

<strong>exit</strong></pre>
<h3>Installation of php</h3>
<p>To complete the LAMP server, we need php and several of its extensions, we proceed to install them as follows:</p>
<pre><strong>      apt install php7.0 php7.0-gd php7.0-mbstring php7.0-mcrypt php7.0-mysql php7.0-curl php-xml php-cli php7.0-intl
</strong></pre>
<p><figure id="attachment_3692" aria-describedby="caption-attachment-3692" style="width: 660px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3692" src="https://www.osradar.com/wp-content/uploads/2018/06/200.png" alt="installing php" width="660" height="416" srcset="https://www.osradar.com/wp-content/uploads/2018/06/200.png 660w, https://www.osradar.com/wp-content/uploads/2018/06/200-300x189.png 300w" sizes="(max-width: 660px) 100vw, 660px" /><figcaption id="caption-attachment-3692" class="wp-caption-text">Installing php</figcaption></figure></p>
<p>We must restart the apache and mariadb services to take over the php installation.</p>
<p><strong>          systemctl restart apache2.service mysql.service</strong></p>
<p><figure id="attachment_3684" aria-describedby="caption-attachment-3684" style="width: 660px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3684" src="https://www.osradar.com/wp-content/uploads/2018/06/113.png" alt="Restarting the services" width="660" height="416" srcset="https://www.osradar.com/wp-content/uploads/2018/06/113.png 660w, https://www.osradar.com/wp-content/uploads/2018/06/113-300x189.png 300w" sizes="(max-width: 660px) 100vw, 660px" /><figcaption id="caption-attachment-3684" class="wp-caption-text">Restarting the services</figcaption></figure></p>
<h3>Download and installation of prestashop</h3>
<p>We are located in the root folder and from there we start the download with wget. At the time of this tutorial, the latest stable version of prestashop is 1.7.3.3</p>
<pre><strong>cd  ~</strong></pre>
<pre><strong>wget https://www.prestashop.com/download/old/prestashop_1.7.3.3.zip</strong></pre>
<p><figure id="attachment_3685" aria-describedby="caption-attachment-3685" style="width: 660px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3685" src="https://www.osradar.com/wp-content/uploads/2018/06/114.png" alt="Downloading prestashop" width="660" height="416" srcset="https://www.osradar.com/wp-content/uploads/2018/06/114.png 660w, https://www.osradar.com/wp-content/uploads/2018/06/114-300x189.png 300w" sizes="(max-width: 660px) 100vw, 660px" /><figcaption id="caption-attachment-3685" class="wp-caption-text">Downloading prestashop</figcaption></figure></p>
<p>Create a folder called prestashop, place yourself in it and unzip the downloaded file. Then move the folder to /var/www/html/</p>
<pre><strong>mkdir prestashop</strong>
<strong> cd prestashop</strong>
<strong>unzip ../prestashop_1.7.3.3.zip</strong></pre>
<p><figure id="attachment_3686" aria-describedby="caption-attachment-3686" style="width: 660px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3686" src="https://www.osradar.com/wp-content/uploads/2018/06/115.png" alt="unzip prestashop" width="660" height="416" srcset="https://www.osradar.com/wp-content/uploads/2018/06/115.png 660w, https://www.osradar.com/wp-content/uploads/2018/06/115-300x189.png 300w" sizes="(max-width: 660px) 100vw, 660px" /><figcaption id="caption-attachment-3686" class="wp-caption-text">unzip prestashop</figcaption></figure></p>
<pre><strong>          cd ..</strong></pre>
<pre><strong>mv prestashop /var/www/html/</strong></pre>
<p><figure id="attachment_3687" aria-describedby="caption-attachment-3687" style="width: 660px" class="wp-caption aligncenter"><img loading="lazy" class="wp-image-3687 size-full" src="https://www.osradar.com/wp-content/uploads/2018/06/116.png" alt="moving the folder prestashop" width="660" height="416" srcset="https://www.osradar.com/wp-content/uploads/2018/06/116.png 660w, https://www.osradar.com/wp-content/uploads/2018/06/116-300x189.png 300w" sizes="(max-width: 660px) 100vw, 660px" /><figcaption id="caption-attachment-3687" class="wp-caption-text">moving the folder prestashop</figcaption></figure></p>
<p>After this we give you permission to run, read and write to the prestashop folder and you&#8217;re done!</p>
<pre><strong>chmod 777 -R /var/www/html/prestashop/</strong></pre>
<h3>Accessing from the web browser to complete the installation</h3>
<p>At this point of the installation, if everything has gone correctly, we must complete the installation from the web browser, accessing it with the ip address of the server:</p>
<p><strong>            </strong><strong>http://[ip]/prestashop</strong></p>
<p><figure id="attachment_3689" aria-describedby="caption-attachment-3689" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3689" src="https://www.osradar.com/wp-content/uploads/2018/06/117-1.png" alt="first screen - prestashop" width="1366" height="626" srcset="https://www.osradar.com/wp-content/uploads/2018/06/117-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/117-1-300x137.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/117-1-768x352.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/117-1-1024x469.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/117-1-696x319.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/117-1-1068x489.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/117-1-916x420.png 916w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3689" class="wp-caption-text">first screen &#8211; prestashop</figcaption></figure></p>
<p>Complete the installation, it&#8217;s simple, just enter the data you request and click next.</p>
<p>We accept the license terms</p>
<p><figure id="attachment_3690" aria-describedby="caption-attachment-3690" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3690" src="https://www.osradar.com/wp-content/uploads/2018/06/118.png" alt="installation" width="1366" height="626" srcset="https://www.osradar.com/wp-content/uploads/2018/06/118.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/118-300x137.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/118-768x352.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/118-1024x469.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/118-696x319.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/118-1068x489.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/118-916x420.png 916w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3690" class="wp-caption-text">installation</figcaption></figure></p>
<p>The program starts to scan the compatibility with the server, if everything is OK, the following will appear.</p>
<p><figure id="attachment_3693" aria-describedby="caption-attachment-3693" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3693" src="https://www.osradar.com/wp-content/uploads/2018/06/119.png" alt="Installation" width="1366" height="626" srcset="https://www.osradar.com/wp-content/uploads/2018/06/119.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/119-300x137.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/119-768x352.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/119-1024x469.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/119-696x319.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/119-1068x489.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/119-916x420.png 916w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3693" class="wp-caption-text">Installation</figcaption></figure></p>
<p>Then he asks us for store information and a user account.</p>
<p><figure id="attachment_3694" aria-describedby="caption-attachment-3694" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3694" src="https://www.osradar.com/wp-content/uploads/2018/06/120.png" alt="Store information" width="1366" height="626" srcset="https://www.osradar.com/wp-content/uploads/2018/06/120.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/120-300x137.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/120-768x352.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/120-1024x469.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/120-696x319.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/120-1068x489.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/120-916x420.png 916w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3694" class="wp-caption-text">Store information</figcaption></figure></p>
<p>After that, you have to configure the database parameters that you have already done.</p>
<p><figure id="attachment_3695" aria-describedby="caption-attachment-3695" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3695" src="https://www.osradar.com/wp-content/uploads/2018/06/121.png" alt="database parameters" width="1366" height="626" srcset="https://www.osradar.com/wp-content/uploads/2018/06/121.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/121-300x137.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/121-768x352.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/121-1024x469.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/121-696x319.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/121-1068x489.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/121-916x420.png 916w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3695" class="wp-caption-text">database parameters</figcaption></figure></p>
<p><figure id="attachment_3696" aria-describedby="caption-attachment-3696" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3696" src="https://www.osradar.com/wp-content/uploads/2018/06/122.png" alt="database connected!" width="1366" height="626" srcset="https://www.osradar.com/wp-content/uploads/2018/06/122.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/122-300x137.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/122-768x352.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/122-1024x469.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/122-696x319.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/122-1068x489.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/122-916x420.png 916w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3696" class="wp-caption-text">database connected!</figcaption></figure></p>
<p>Then it&#8217;s time to finish the installation and be able to use it.</p>
<p><figure id="attachment_3697" aria-describedby="caption-attachment-3697" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3697" src="https://www.osradar.com/wp-content/uploads/2018/06/123.png" alt="finished" width="1366" height="626" srcset="https://www.osradar.com/wp-content/uploads/2018/06/123.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/123-300x137.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/123-768x352.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/123-1024x469.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/123-696x319.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/123-1068x489.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/123-916x420.png 916w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3697" class="wp-caption-text">finished</figcaption></figure></p>
<p>As a recommendation, once the process is finished, the installation files should be removed.</p>
<pre><strong>        </strong> <strong>   rm /var/www/html/prestashop/Install_PrestaShop.html</strong></pre>
<p>As a conclusion we can say that there are open source solutions for e-commerce, of high quality and with a good community behind them to respond to the needs of small and medium enterprises trying to make a name for themselves in this busy world of business. Doing that without the internet and without the support of software that allows you to take your product everywhere is simply impossible.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-prestashop-in-debian-9/">How to install PrestaShop in Debian 9 and 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-prestashop-in-debian-9/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
