<?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>shopware Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/shopware/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>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>
	</channel>
</rss>
