<?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>PrestaShop Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/prestashop/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sun, 17 May 2020 21:46:21 +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 Prestashop on Ubuntu 20.04?</title>
		<link>https://www.osradar.com/install-prestashop-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/install-prestashop-ubuntu-20-04/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 17 May 2020 23:32:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[e commerce]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[PrestaShop]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=20375</guid>

					<description><![CDATA[<p>If there&#8217;s one thing the Internet has revolutionized, it&#8217;s commerce. Now almost any store needs a website to offer its products and services, but it also needs to be able to function as an online store where you can purchase right there. This is why I taught you how to install Prestashop on Ubuntu 20.04. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-prestashop-ubuntu-20-04/">How to install Prestashop on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>If there&#8217;s one thing the Internet has revolutionized, it&#8217;s commerce. Now almost any store needs a website to offer its products and services, but it also needs to be able to function as an online store where you can purchase right there. This is why I taught you <strong>how to install Prestashop on Ubuntu 20.04</strong>. Because Prestashop allows you to deploy an online store in a very comfortable way.</p>



<h2>Prestashop ideal for the E-commerce</h2>



<p><a href="https://www.prestashop.com/" target="_blank" rel="noreferrer noopener">Prestashop</a> is an open-source web application, written in <a href="https://www.osradar.com/how-to-install-php-7-4-on-ubuntu-18-04-19-04-19-10/" target="_blank" rel="noreferrer noopener">PHP</a> 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 Ubuntu 20.04</h2>



<p>Prestashop is managed from a web interface created in PHP. Therefore, a functional web server is required along with a real database manager such as MariaDB or MySQL.</p>



<p>In any case, Prestashop is quite flexible and can also be used in conjunction with Nginx or PostgreSQL.</p>



<p>So, to install LAMP on Ubuntu 20.04 read our post about it.</p>



<p><a href="https://www.osradar.com/install-lamp-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">How to install LAMP on Ubuntu 20.04</a></p>



<p>However, you also have to install some PHP modules for Prestashop to work properly.</p>



<pre class="wp-block-preformatted">php7.4 php7.4-gd php7.4-mbstring php7.4-mysql php7.4-curl php-xml php-cli php7.4-intl php7.4-zip</pre>



<p>Once these modules are installed correctly, you can continue.</p>



<h3>Creating a new database for Prestashop</h3>



<p>Prestashop requires a database created to store all the information generated by the application.</p>



<p>So, open the MariaDB shell:</p>



<pre class="wp-block-preformatted">:~$ sudo mysql -u root -p</pre>



<p>And then, it creates the database, the user along with the appropriate permissions.</p>



<pre class="wp-block-preformatted">&gt; CREATE DATABASE prestadb;
&gt; GRANT ALL PRIVILEGES ON prestadb.* TO 'prestauser'@'localhost' IDENTIFIED BY 'prestapss';
&gt; FLUSH PRIVILEGES;
&gt; exit;</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="965" height="404" src="https://www.osradar.com/wp-content/uploads/2020/05/1-11.png" alt="1.- Create a new database for Prestahop" class="wp-image-20377" srcset="https://www.osradar.com/wp-content/uploads/2020/05/1-11.png 965w, https://www.osradar.com/wp-content/uploads/2020/05/1-11-300x126.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/1-11-768x322.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/1-11-696x291.png 696w" sizes="(max-width: 965px) 100vw, 965px" /><figcaption>1.- Create a new database for Prestahop</figcaption></figure>



<p>So, you can continue.</p>



<h3>Download Prestashop on Ubuntu 20.04</h3>



<p>Prestashop requires a database created to store all the information generated by the application.</p>



<p>To download Prestashop it is necessary to install some necessary packages such as <a href="https://www.osradar.com/the-wget-command/" target="_blank" rel="noreferrer noopener">wget</a> and unzip.</p>



<pre class="wp-block-preformatted">:~$ sudo apt install wget unzip</pre>



<p>Now, you do proceed with the download:</p>



<pre class="wp-block-preformatted">~$ cd /tmp/<br>:~$ wget -c https://github.com/PrestaShop/PrestaShop/releases/download/1.7.6.5/prestashop_1.7.6.5.zip</pre>



<p><strong>At the time of writing, the latest version of Prestashop is 1.7.6.5</strong></p>



<p>When the download is finished, decompress the file with the unzip command in a new folder called Prestashop.</p>



<pre class="wp-block-preformatted">:~$ mkdir prestashop<br>:~$ unzip prestashop_1.7.6.5.zip -d prestashop/<br>:~$ prestashop cd &amp;&amp; unzip prestashop.zip</pre>



<p>Then, go back to the previous folder and move the entire <code>prestashop</code> folder into the Apache root directory.</p>



<pre class="wp-block-preformatted">:~$ cd ..<br>:~$ sudo mv prestashop /var/www/html/</pre>



<p>Then assign the folder the necessary permissions and make Apache the new owner of the folder.</p>



<pre class="wp-block-preformatted">:~$ sudo chown -R www-data:www-data /var/www/html/prestashop/<br>:~$ sudo chmod -R 755 /var/www/html/prestashop</pre>



<p>Now create a new Virtualhost for Prestashop.</p>



<pre class="wp-block-preformatted">:~$ sudo nano /etc/apache2/sites-available/prestashop.conf</pre>



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



<pre class="wp-block-preformatted">&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
</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="939" height="299" src="https://www.osradar.com/wp-content/uploads/2020/05/2-14.png" alt="2.- Creating a new Virtualhost for Prestashop" class="wp-image-20378" srcset="https://www.osradar.com/wp-content/uploads/2020/05/2-14.png 939w, https://www.osradar.com/wp-content/uploads/2020/05/2-14-300x96.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/2-14-768x245.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/2-14-696x222.png 696w" sizes="(max-width: 939px) 100vw, 939px" /><figcaption>2.- Creating a new Virtualhost for Prestashop</figcaption></figure>



<p>Replace &#8220;shop.osradar.test&#8221; with yours. So, save the changes and close the file.</p>



<p>Now, enable the new Virtualhost and the rewrite modulo. To apply these changes, restart the Apache service.</p>



<pre class="wp-block-preformatted">:~$ sudo ln -s /etc/apache2/sites-available/prestashop.conf /etc/apache2/sites-enabled/prestashop.conf
:~$ sudo a2enmod rewrite
:~$ sudo systemctl restart apache2</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="140" src="https://www.osradar.com/wp-content/uploads/2020/05/3-12-1024x140.png" alt="3.- Configuring the new Virtualhost for Prestashop" class="wp-image-20379" srcset="https://www.osradar.com/wp-content/uploads/2020/05/3-12-1024x140.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/3-12-300x41.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/3-12-768x105.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/3-12-696x95.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/3-12.png 1031w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Configuring the new Virtualhost for Prestashop</figcaption></figure>



<p>Now complete the installation.</p>



<h3>Install Prestashop on Ubuntu 20.04</h3>



<p>Now it is necessary to complete the installation of Prestashop from the web interface. So, open a web browser and go to http://your-domain and you will see the following:</p>



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



<p>There you will have to select the language of the installation.</p>



<p>On this screen, you will be shown the terms of the license. If you accept, you can continue.</p>



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



<p>Then, you will have to define the information about your store. Also, here you will create the new administrator account.</p>



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



<p>Now, it&#8217;s the turn to define the database connection, for this you have to write the credentials previously created.</p>



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



<p>Then you will start the installation. However, in order to access the login page, you must delete the installation folder.</p>



<pre class="wp-block-preformatted">:~$ cd /var/www/html/prestashop/
:~$ sudo rm -r install/</pre>



<p>Now you&#8217;ll see the Logbook screen.</p>



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



<p>Log in with your credentials and you will see the administration panel.</p>



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



<p>So, enjoy it.</p>



<h2>Conclusion</h2>



<p>Having an oonline dyke can relaunch your business. And for this, there is nothing better than Prestashop that will allow you to have everything you need to do it yourself.</p>



<p>Please share this post and join <a href="https://t.me/osradar" target="_blank" rel="noreferrer noopener">our Telegram channel</a>. If you like our work you can also buy us a coffee.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-prestashop-ubuntu-20-04/">How to install Prestashop on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-prestashop-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>1</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 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>
