<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Sentora Support Forums - Community Guides & How-To's v1.0.x]]></title>
		<link>https://senforums.mach-hosting.com/</link>
		<description><![CDATA[Sentora Support Forums - https://senforums.mach-hosting.com]]></description>
		<pubDate>Sat, 22 Aug 2026 14:52:10 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Ubuntu 18.04 or 20.04]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=12112</link>
			<pubDate>Thu, 19 Mar 2020 13:16:17 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=14136">Kangarooo</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=12112</guid>
			<description><![CDATA[When could be Sentora available again? On DigitalOcean cant install Droplet with old Ubuntu like 14.04.<br />
<a href="https://www.digitalocean.com/community/tutorials/how-to-install-the-sentora-web-hosting-control-panel-on-ubuntu-14-04" target="_blank" rel="noopener" class="mycode_url">https://www.digitalocean.com/community/t...untu-14-04</a>]]></description>
			<content:encoded><![CDATA[When could be Sentora available again? On DigitalOcean cant install Droplet with old Ubuntu like 14.04.<br />
<a href="https://www.digitalocean.com/community/tutorials/how-to-install-the-sentora-web-hosting-control-panel-on-ubuntu-14-04" target="_blank" rel="noopener" class="mycode_url">https://www.digitalocean.com/community/t...untu-14-04</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Secure Sentora With SSLForFree]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=11223</link>
			<pubDate>Sun, 21 Apr 2019 20:23:10 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=309">Chris L</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=11223</guid>
			<description><![CDATA[I have written a quick tutorial on how to secure your Sentora Control Panel with SSLForFree SSL Certificates.<br />
<br />
This is a quick tutorial and im just demostrating how i use these certificates for my panel and websites and the tutorial is designed for CentOS 6 Minimal If ive missed anything let me know as i was rushed.<br />
<br />
Securing Sentora Panel via SSLForFree<br />
<br />
This guide is designed for CentOS 6 Minimal<br />
<br />
Step 1: Install Sentora once installed follow this guide.<br />
<br />
Step 2: Login to your server via SSH using Putty<br />
<br />
Step 3: Install OpenSSL and Mod_SSL using the following commands:<br />
<br />
OpenSSL: yum install openssl<br />
<br />
Mod_SSL: yum install mod_ssl<br />
<br />
Once this is complete resart apache using service httpd restart<br />
<br />
Step 4: Login to your server using FlashFXP or SFTP using FTP/SSH port 22 with your servers root username and password<br />
<br />
Step 5: Once logged in go to /etc/sentora/panel/ and create a new folder named .well-known inside this folder create another folder called acme-challenge.<br />
<br />
Once this is comple your full path should be /etc/sentora/pane/.well-known/acme-challenge/<br />
<br />
Step 6: Go to <a href="https://www.sslforfree.com" target="_blank" rel="noopener" class="mycode_url">https://www.sslforfree.com</a> and create a new domain ie:panel.domain.com (yourdomain.com/panel) and click Manual Verfication and download your verification key (do not close your browser window).<br />
<br />
Step 7: Upload this downloaded verification key to /etc/sentora/panel/.well-known/acme-challenge/ once this is done go back to the start SSL Page and click the verification link, Upon clicking this link it should take you to panel.yourdomain.com/obsecureverificationkey (random letters and numbers)<br />
<br />
Step 8: Once step 7 is complete download your SSL Certificate and extract the SSLforFree.zip file, Inside this folder you will have three (3) files one cerificate, one private and one bundle (we are only going to use the Cerificate.crt and Private.key files)<br />
<br />
For ease of use please rename the certificate.crt and private.key files to panel_domain_com_certificate.crt and panel_domain_com_private.key this is to just keep others ssl certificates seperate and easier to find when you add more later.<br />
<br />
Step 9: With these files downloaded and renamed upload the panel_domain_com.crt to /etc/pki/tls/certs/ and upload the panel_domain_com_private.key to /etc/pki/tls/private/<br />
<br />
Then go to /etc/httpd/conf.d/ and download your ssl.conf file.<br />
<br />
Step 10: Open your newly downloaded ssl.conf file with WordPanel and scroll down to the bottom and add the following replacing with your details:<br />
<br />
NameVirtualHost serverip:443<br />
<br />
&lt;VirtualHost serverip:443&gt;<br />
 ServerName panel.domain.com<br />
 ServerAlias panel.domain.com<br />
 DocumentRoot /etc/sentora/panel/<br />
 SSLEngine on<br />
 SSLCertificateFile /etc/pki/tls/certs/panel_domain_com_certificate.crt<br />
 SSLCertificateKeyFile /etc/pki/tls/private/panel_domain_com_private.key<br />
&lt;/VirtualHost&gt;<br />
<br />
and save your new ssl.conf and reupload replacing your current ssl.conf file.<br />
<br />
Step 11: go back to putty and restart your apache with service httpd restart if everything went well your with an OK resart once done open your browser and go to <a href="https://panel.domain.com" target="_blank" rel="noopener" class="mycode_url">https://panel.domain.com</a> and your panel should be secured via SSL]]></description>
			<content:encoded><![CDATA[I have written a quick tutorial on how to secure your Sentora Control Panel with SSLForFree SSL Certificates.<br />
<br />
This is a quick tutorial and im just demostrating how i use these certificates for my panel and websites and the tutorial is designed for CentOS 6 Minimal If ive missed anything let me know as i was rushed.<br />
<br />
Securing Sentora Panel via SSLForFree<br />
<br />
This guide is designed for CentOS 6 Minimal<br />
<br />
Step 1: Install Sentora once installed follow this guide.<br />
<br />
Step 2: Login to your server via SSH using Putty<br />
<br />
Step 3: Install OpenSSL and Mod_SSL using the following commands:<br />
<br />
OpenSSL: yum install openssl<br />
<br />
Mod_SSL: yum install mod_ssl<br />
<br />
Once this is complete resart apache using service httpd restart<br />
<br />
Step 4: Login to your server using FlashFXP or SFTP using FTP/SSH port 22 with your servers root username and password<br />
<br />
Step 5: Once logged in go to /etc/sentora/panel/ and create a new folder named .well-known inside this folder create another folder called acme-challenge.<br />
<br />
Once this is comple your full path should be /etc/sentora/pane/.well-known/acme-challenge/<br />
<br />
Step 6: Go to <a href="https://www.sslforfree.com" target="_blank" rel="noopener" class="mycode_url">https://www.sslforfree.com</a> and create a new domain ie:panel.domain.com (yourdomain.com/panel) and click Manual Verfication and download your verification key (do not close your browser window).<br />
<br />
Step 7: Upload this downloaded verification key to /etc/sentora/panel/.well-known/acme-challenge/ once this is done go back to the start SSL Page and click the verification link, Upon clicking this link it should take you to panel.yourdomain.com/obsecureverificationkey (random letters and numbers)<br />
<br />
Step 8: Once step 7 is complete download your SSL Certificate and extract the SSLforFree.zip file, Inside this folder you will have three (3) files one cerificate, one private and one bundle (we are only going to use the Cerificate.crt and Private.key files)<br />
<br />
For ease of use please rename the certificate.crt and private.key files to panel_domain_com_certificate.crt and panel_domain_com_private.key this is to just keep others ssl certificates seperate and easier to find when you add more later.<br />
<br />
Step 9: With these files downloaded and renamed upload the panel_domain_com.crt to /etc/pki/tls/certs/ and upload the panel_domain_com_private.key to /etc/pki/tls/private/<br />
<br />
Then go to /etc/httpd/conf.d/ and download your ssl.conf file.<br />
<br />
Step 10: Open your newly downloaded ssl.conf file with WordPanel and scroll down to the bottom and add the following replacing with your details:<br />
<br />
NameVirtualHost serverip:443<br />
<br />
&lt;VirtualHost serverip:443&gt;<br />
 ServerName panel.domain.com<br />
 ServerAlias panel.domain.com<br />
 DocumentRoot /etc/sentora/panel/<br />
 SSLEngine on<br />
 SSLCertificateFile /etc/pki/tls/certs/panel_domain_com_certificate.crt<br />
 SSLCertificateKeyFile /etc/pki/tls/private/panel_domain_com_private.key<br />
&lt;/VirtualHost&gt;<br />
<br />
and save your new ssl.conf and reupload replacing your current ssl.conf file.<br />
<br />
Step 11: go back to putty and restart your apache with service httpd restart if everything went well your with an OK resart once done open your browser and go to <a href="https://panel.domain.com" target="_blank" rel="noopener" class="mycode_url">https://panel.domain.com</a> and your panel should be secured via SSL]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ADD SSL TO WINDOWS SENTORA]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=10725</link>
			<pubDate>Mon, 05 Nov 2018 10:40:39 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=7753">khir</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=10725</guid>
			<description><![CDATA[Hi<br />
need <span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: arial, sans-serif;" class="mycode_font">guide to add ssl to windows sentora 1.0</span></span></span><br />
<span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: arial, sans-serif;" class="mycode_font">tnx</span></span></span>]]></description>
			<content:encoded><![CDATA[Hi<br />
need <span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: arial, sans-serif;" class="mycode_font">guide to add ssl to windows sentora 1.0</span></span></span><br />
<span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: arial, sans-serif;" class="mycode_font">tnx</span></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Help me! how to remove ssl certificate]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=4667</link>
			<pubDate>Wed, 04 Jul 2018 22:46:27 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=7229">longhb</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=4667</guid>
			<description><![CDATA[Hi,<br />
<br />
I install module ssl for VPS use Sentora...however, after install module, Sentora not run and service httpd not start. please help me? thank<br />
<br />
this error: <br />
<br />
[root@zpanel ~]# service httpd status<br />
Redirecting to /bin/systemctl status httpd.service<br />
● httpd.service - The Apache HTTP Server<br />
   Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)<br />
   Active: failed (Result: exit-code) since Wed 2018-07-04 07:03:49 UTC; 18h ago<br />
     Docs: man:httpd(8)<br />
           man:apachectl(8)<br />
  Process: 2451 ExecStop=/bin/kill -WINCH &#36;{MAINPID} (code=exited, status=1/FAILURE)<br />
  Process: 2450 ExecStart=/usr/sbin/httpd &#36;OPTIONS -DFOREGROUND (code=exited, status=1/FAILURE)<br />
 Main PID: 2450 (code=exited, status=1/FAILURE)<br />
<br />
Jul 04 07:03:49 zpanel.devfastpro.com systemd[1]: Starting The Apache HTTP Server...<br />
Jul 04 07:03:49 zpanel.devfastpro.com httpd[2450]: AH00526: Syntax error on line 57 of /etc/sentora/configs/apache/httpd-vhosts.conf:<br />
Jul 04 07:03:49 zpanel.devfastpro.com httpd[2450]: SSLCertificateKeyFile: file '/devfastpro.com/ssl/certificate/private.key' does not exist or is empty<br />
Jul 04 07:03:49 zpanel.devfastpro.com systemd[1]: httpd.service: main process exited, code=exited, status=1/FAILURE<br />
Jul 04 07:03:49 zpanel.devfastpro.com kill[2451]: kill: cannot find process ""<br />
Jul 04 07:03:49 zpanel.devfastpro.com systemd[1]: httpd.service: control process exited, code=exited status=1<br />
Jul 04 07:03:49 zpanel.devfastpro.com systemd[1]: Failed to start The Apache HTTP Server.<br />
Jul 04 07:03:49 zpanel.devfastpro.com systemd[1]: Unit httpd.service entered failed state.<br />
Jul 04 07:03:49 zpanel.devfastpro.com systemd[1]: httpd.service failed.]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I install module ssl for VPS use Sentora...however, after install module, Sentora not run and service httpd not start. please help me? thank<br />
<br />
this error: <br />
<br />
[root@zpanel ~]# service httpd status<br />
Redirecting to /bin/systemctl status httpd.service<br />
● httpd.service - The Apache HTTP Server<br />
   Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)<br />
   Active: failed (Result: exit-code) since Wed 2018-07-04 07:03:49 UTC; 18h ago<br />
     Docs: man:httpd(8)<br />
           man:apachectl(8)<br />
  Process: 2451 ExecStop=/bin/kill -WINCH &#36;{MAINPID} (code=exited, status=1/FAILURE)<br />
  Process: 2450 ExecStart=/usr/sbin/httpd &#36;OPTIONS -DFOREGROUND (code=exited, status=1/FAILURE)<br />
 Main PID: 2450 (code=exited, status=1/FAILURE)<br />
<br />
Jul 04 07:03:49 zpanel.devfastpro.com systemd[1]: Starting The Apache HTTP Server...<br />
Jul 04 07:03:49 zpanel.devfastpro.com httpd[2450]: AH00526: Syntax error on line 57 of /etc/sentora/configs/apache/httpd-vhosts.conf:<br />
Jul 04 07:03:49 zpanel.devfastpro.com httpd[2450]: SSLCertificateKeyFile: file '/devfastpro.com/ssl/certificate/private.key' does not exist or is empty<br />
Jul 04 07:03:49 zpanel.devfastpro.com systemd[1]: httpd.service: main process exited, code=exited, status=1/FAILURE<br />
Jul 04 07:03:49 zpanel.devfastpro.com kill[2451]: kill: cannot find process ""<br />
Jul 04 07:03:49 zpanel.devfastpro.com systemd[1]: httpd.service: control process exited, code=exited status=1<br />
Jul 04 07:03:49 zpanel.devfastpro.com systemd[1]: Failed to start The Apache HTTP Server.<br />
Jul 04 07:03:49 zpanel.devfastpro.com systemd[1]: Unit httpd.service entered failed state.<br />
Jul 04 07:03:49 zpanel.devfastpro.com systemd[1]: httpd.service failed.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to Update PHP 5.5.9 To 5.6]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=4338</link>
			<pubDate>Wed, 31 Jan 2018 20:34:24 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=6552">elmucho</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=4338</guid>
			<description><![CDATA[How to Update PHP 5.5.9 To 5.6 ? i just installed sentora yesterday night on my ubuntu vps everything works fine but i need to update my php file how can i update it ?]]></description>
			<content:encoded><![CDATA[How to Update PHP 5.5.9 To 5.6 ? i just installed sentora yesterday night on my ubuntu vps everything works fine but i need to update my php file how can i update it ?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ClipBucket V.4]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=4324</link>
			<pubDate>Mon, 22 Jan 2018 17:07:43 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=6424">CMs222</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=4324</guid>
			<description><![CDATA[Has anyone installed <span style="color: #0099cc;" class="mycode_color">ClipBucket<br />
</span><br />
wondering if its possible &amp; will it mess up Sentora ?]]></description>
			<content:encoded><![CDATA[Has anyone installed <span style="color: #0099cc;" class="mycode_color">ClipBucket<br />
</span><br />
wondering if its possible &amp; will it mess up Sentora ?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Following Lets Encrypt guide ERROR]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=4299</link>
			<pubDate>Mon, 15 Jan 2018 07:11:40 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=6424">CMs222</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=4299</guid>
			<description><![CDATA[<a href="http://forums.sentora.org/showthread.php?tid=3297" target="_blank" rel="noopener" class="mycode_url">http://forums.sentora.org/showthread.php?tid=3297</a><br />
<br />
followed this guide everything double checked as i went through it<br />
Now i've lost access to my <a href="https://panel.cmshosting.ml" target="_blank" rel="noopener" class="mycode_url">https://panel.cmshosting.ml</a>  or  <a href="http://panel.cmshosting.ml" target="_blank" rel="noopener" class="mycode_url">http://panel.cmshosting.ml</a><br />
how can i get back into it <img src="https://senforums.mach-hosting.com/images/smilies/sad.gif" alt="Sad" title="Sad" class="smilie smilie_8" />  to change anything ???<br />
<br />
is this caused by PORT 443 not being open ???]]></description>
			<content:encoded><![CDATA[<a href="http://forums.sentora.org/showthread.php?tid=3297" target="_blank" rel="noopener" class="mycode_url">http://forums.sentora.org/showthread.php?tid=3297</a><br />
<br />
followed this guide everything double checked as i went through it<br />
Now i've lost access to my <a href="https://panel.cmshosting.ml" target="_blank" rel="noopener" class="mycode_url">https://panel.cmshosting.ml</a>  or  <a href="http://panel.cmshosting.ml" target="_blank" rel="noopener" class="mycode_url">http://panel.cmshosting.ml</a><br />
how can i get back into it <img src="https://senforums.mach-hosting.com/images/smilies/sad.gif" alt="Sad" title="Sad" class="smilie smilie_8" />  to change anything ???<br />
<br />
is this caused by PORT 443 not being open ???]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to install mod_pagespeed on Sentora]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=4228</link>
			<pubDate>Sat, 25 Nov 2017 15:23:35 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=5657">testing</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=4228</guid>
			<description><![CDATA[First of all, I would like to tell you, I have used mod pagespeed and have installed on VPS so I would point out how to do it. I only did for Centos 6 for apache server. I highly recommend that first you take backup of your website so if anything gets messed up, you have everything in your hand to make your site work again. <br />
<br />
Precaution : KVM - if you have SSL installated with 443 port ( needed in apache setting), you might probably see error while restarting your httpd. So I recommend mod_pagespeed installation on sentora just after sentora installation. It will take your whole server down. <br />
<br />
I didn't face above issue with OpenVZ server even when SSL was already installed. ( but better install it just after fresh sentora installation before you upload your contents)<br />
<br />
Method: <br />
<br />
Visit <a href="https://www.modpagespeed.com/doc/download" target="_blank" rel="noopener" class="mycode_url">https://www.modpagespeed.com/doc/download</a> ( download the file according to your vps setting ) <br />
<br />
2. Upload the downloaded file to "root" folder of your server.<br />
<br />
3. Run the following command : <br />
<br />
<span style="color: #37474f;" class="mycode_color">sudo yum install at <br />
sudo rpm -U mod-pagespeed-*.rpm </span><br />
<br />
<span style="color: #37474f;" class="mycode_color">In case your installation shows key missing error. Use this command : <span style="color: #222222;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Arial, Helvetica, sans-serif;" class="mycode_font">sudo rpm --import </span></span></span><a href="https://dl-ssl.google.com/linux/linux_signing_key.pub" target="_blank" rel="noopener" class="mycode_url"><span style="color: #6611cc;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Arial, Helvetica, sans-serif;" class="mycode_font">https://dl-ssl.google.com/linux/linux_signing_key.pub</span></span></span></a></span><br />
<br />
<span style="color: #37474f;" class="mycode_color">4.  Run the  following command : <span style="color: #37474f;" class="mycode_color">sudo /etc/init.d/httpd restart</span></span><br />
<br />
<br />
<span style="color: #37474f;" class="mycode_color"><span style="color: #37474f;" class="mycode_color">You are done. </span></span>]]></description>
			<content:encoded><![CDATA[First of all, I would like to tell you, I have used mod pagespeed and have installed on VPS so I would point out how to do it. I only did for Centos 6 for apache server. I highly recommend that first you take backup of your website so if anything gets messed up, you have everything in your hand to make your site work again. <br />
<br />
Precaution : KVM - if you have SSL installated with 443 port ( needed in apache setting), you might probably see error while restarting your httpd. So I recommend mod_pagespeed installation on sentora just after sentora installation. It will take your whole server down. <br />
<br />
I didn't face above issue with OpenVZ server even when SSL was already installed. ( but better install it just after fresh sentora installation before you upload your contents)<br />
<br />
Method: <br />
<br />
Visit <a href="https://www.modpagespeed.com/doc/download" target="_blank" rel="noopener" class="mycode_url">https://www.modpagespeed.com/doc/download</a> ( download the file according to your vps setting ) <br />
<br />
2. Upload the downloaded file to "root" folder of your server.<br />
<br />
3. Run the following command : <br />
<br />
<span style="color: #37474f;" class="mycode_color">sudo yum install at <br />
sudo rpm -U mod-pagespeed-*.rpm </span><br />
<br />
<span style="color: #37474f;" class="mycode_color">In case your installation shows key missing error. Use this command : <span style="color: #222222;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Arial, Helvetica, sans-serif;" class="mycode_font">sudo rpm --import </span></span></span><a href="https://dl-ssl.google.com/linux/linux_signing_key.pub" target="_blank" rel="noopener" class="mycode_url"><span style="color: #6611cc;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Arial, Helvetica, sans-serif;" class="mycode_font">https://dl-ssl.google.com/linux/linux_signing_key.pub</span></span></span></a></span><br />
<br />
<span style="color: #37474f;" class="mycode_color">4.  Run the  following command : <span style="color: #37474f;" class="mycode_color">sudo /etc/init.d/httpd restart</span></span><br />
<br />
<br />
<span style="color: #37474f;" class="mycode_color"><span style="color: #37474f;" class="mycode_color">You are done. </span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[How To] Update phpMyAdmin to latest version 4.7.4]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=4132</link>
			<pubDate>Tue, 17 Oct 2017 13:04:16 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=5644">betatester3.0</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=4132</guid>
			<description><![CDATA[Before we begin. The required update to phpMyAdmin 4.7.4, you will HAVE to update your php to version 5.5 or above here is a thread that can help you get to php5.6.31 with suhosin patch. <br />
<br />
Install php version 5.6.31 --&gt; #4131<br />
After you have successfully update to php version 5.6.31 you can now update your phpMyAdmin to v4.7.4<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>//first goto apps directory
cd /etc/sentora/panel/etc/apps 
//then we grab the latest phpmyadmin from there site
wget https://files.phpmyadmin.net/phpMyAdmin/4.7.4/phpMyAdmin-4.7.4-all-languages.zip
//now we unzip it
unzip -q phpMyAdmin-4-*
//before we go any further we MUST copy the current config.inc.php file to our home dir
cp /etc/sentora/panel/etc/apps/phpmyadmin/config.inc.php /home/
// delete the phpmyadmin folder 
cd ../
rm -rf phpmyadmin
//now mv the phpMyAdmin-4.7.4-all-languages folder to phpmyadmin:
mv /etc/sentora/panel/etc/apps/phpMyAdmin-4.7.4-all-languages /etc/sentora/panel/etc/apps/phpmyadmin</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">Now login to your phpmyadmin and the version should be the same as the below image:</span><br />
 <img src="https://i.imgur.com/vFCaLi3.png" loading="lazy"  alt="[Image: vFCaLi3.png]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[Before we begin. The required update to phpMyAdmin 4.7.4, you will HAVE to update your php to version 5.5 or above here is a thread that can help you get to php5.6.31 with suhosin patch. <br />
<br />
Install php version 5.6.31 --&gt; #4131<br />
After you have successfully update to php version 5.6.31 you can now update your phpMyAdmin to v4.7.4<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>//first goto apps directory
cd /etc/sentora/panel/etc/apps 
//then we grab the latest phpmyadmin from there site
wget https://files.phpmyadmin.net/phpMyAdmin/4.7.4/phpMyAdmin-4.7.4-all-languages.zip
//now we unzip it
unzip -q phpMyAdmin-4-*
//before we go any further we MUST copy the current config.inc.php file to our home dir
cp /etc/sentora/panel/etc/apps/phpmyadmin/config.inc.php /home/
// delete the phpmyadmin folder 
cd ../
rm -rf phpmyadmin
//now mv the phpMyAdmin-4.7.4-all-languages folder to phpmyadmin:
mv /etc/sentora/panel/etc/apps/phpMyAdmin-4.7.4-all-languages /etc/sentora/panel/etc/apps/phpmyadmin</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">Now login to your phpmyadmin and the version should be the same as the below image:</span><br />
 <img src="https://i.imgur.com/vFCaLi3.png" loading="lazy"  alt="[Image: vFCaLi3.png]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[How To] Update from PHP v5.4.16 to v5.6.31 (Includes suhosin patch) [CentOS]]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=4131</link>
			<pubDate>Tue, 17 Oct 2017 12:46:55 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=5644">betatester3.0</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=4131</guid>
			<description><![CDATA[Lets begin by logging into your panel using ssh, then enter the following commands:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>//check current version
php -v
// install epel &amp;&amp; update
yum install epel* &amp;&amp; yumupdate
//Add CentOS 7 repo
wget http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
//run it &amp;&amp; update
sudo rpm -Uvh remi-release-7*.rpm &amp;&amp; yum update
//update php to 5.6
yum --enablerepo=remi,remi-php56 update</code></div></div><br />
Now the above handles the installation of php5.6, although the following is the main part and is A MUST for Sentora Panel.<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">Rebuild Suhosin</span></span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cd /tmp
wget -nv -O suhosin.zip https://github.com/stefanesser/suhosin/archive/suhosin-0.9.37.zip
unzip -q suhosin.zip
cd suhosin-suhosin-0.9.37
phpize &amp;&gt; /dev/null
./configure &amp;&gt; /dev/null
make &amp;&gt; /dev/null
make install
// now reboot using
reboot
//after reboot do
php -v</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">You should get the following output:</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: medium;" class="mycode_size"><img src="https://i.imgur.com/U6hbjoM.png" loading="lazy"  alt="[Image: U6hbjoM.png]" class="mycode_img" /></span></span>]]></description>
			<content:encoded><![CDATA[Lets begin by logging into your panel using ssh, then enter the following commands:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>//check current version
php -v
// install epel &amp;&amp; update
yum install epel* &amp;&amp; yumupdate
//Add CentOS 7 repo
wget http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
//run it &amp;&amp; update
sudo rpm -Uvh remi-release-7*.rpm &amp;&amp; yum update
//update php to 5.6
yum --enablerepo=remi,remi-php56 update</code></div></div><br />
Now the above handles the installation of php5.6, although the following is the main part and is A MUST for Sentora Panel.<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">Rebuild Suhosin</span></span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cd /tmp
wget -nv -O suhosin.zip https://github.com/stefanesser/suhosin/archive/suhosin-0.9.37.zip
unzip -q suhosin.zip
cd suhosin-suhosin-0.9.37
phpize &amp;&gt; /dev/null
./configure &amp;&gt; /dev/null
make &amp;&gt; /dev/null
make install
// now reboot using
reboot
//after reboot do
php -v</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">You should get the following output:</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: medium;" class="mycode_size"><img src="https://i.imgur.com/U6hbjoM.png" loading="lazy"  alt="[Image: U6hbjoM.png]" class="mycode_img" /></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[How-To] Install the perfect Sentora server using CentOS 7]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=4130</link>
			<pubDate>Tue, 17 Oct 2017 10:55:05 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=5644">betatester3.0</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=4130</guid>
			<description><![CDATA[<span style="text-decoration: underline;" class="mycode_u">NOTES</span>: I will be using a virtual machine for this installation process, if you bought a dedicated server then simply login to your account and install <span style="font-weight: bold;" class="mycode_b"><span style="text-decoration: underline;" class="mycode_u">CentOS 7 Minimal</span></span>. That's if they support <span style="font-weight: bold;" class="mycode_b">CentOS</span>.<br />
<br />
How to install CentOS 7 (<span style="font-weight: bold;" class="mycode_b">for new users</span>):<br />
<span style="font-weight: bold;" class="mycode_b">CentOS 7:</span><ul class="mycode_list"><li>Download CentOS 7 Minimal from <a href="http://centos.mirror.ac.za/7/isos/x86_64/CentOS-7-x86_64-Minimal-1708.iso" target="_blank" rel="noopener" class="mycode_url">http://centos.mirror.ac.za/7/isos/x86_64...l-1708.iso</a><br />
</li>
</ul>
<span style="font-weight: bold;" class="mycode_b">Installation:</span><br />
<span style="font-size: large;" class="mycode_size">1: Select the appropriate language </span><br />
<img src="https://i.imgur.com/YrkriKj.png" loading="lazy"  alt="[Image: YrkriKj.png]" class="mycode_img" /><br />
<br />
<span style="font-size: large;" class="mycode_size">2: Fix any issues, Enable your network and set the date&amp;time.</span><br />
<img src="https://i.imgur.com/A3yemou.png" loading="lazy"  alt="[Image: A3yemou.png]" class="mycode_img" /><br />
<br />
<span style="font-size: medium;" class="mycode_size">Secure your server with a secure and lengthy password (try to make it as random as possible).</span><br />
<img src="https://i.imgur.com/caAXrrq.png" loading="lazy"  alt="[Image: caAXrrq.png]" class="mycode_img" /><br />
<br />
3: Login to your server.<br />
4: Now we need to set a static ip for the server.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>//before we set the static ip lets get a few essentials 
sudo yum install nano openssh -y
//now the fun part setting up a static IP for your server
sudo nmcli dev
//that should display either display "eth0" or"enpos3"
//I am using enp0s3
//jump to the network scripts folder
cd /etc/sysconfig/network-scripts/
ls
//do ls and it will display the file we are going to edit "ifcfg-enp0s3"
nano ifcfg-enp0s3</code></div></div><br />
SIDE NOTE: if you are going use it in a Virtual Machine you will NEED to set the network type to "bridged adapter".<br />
<br />
Now edit the following in the ifcfg-enp0s3 file:<br />
<br />
Previous: BOOTPROTO="dhcp"<br />
Change To: BOOTPROTO="static"<br />
Hit Enter and in the next line enter your details<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>IPADDR=192.168.x.x
NETMASK=255.255.255.0
NETWORK=192.168.x.x
GATEWAY=192.168.x.x
DNS1=8.8.8.8
DNS2=8.8.4.4
NM_CONTROLLED=no //must be set as NO</code></div></div>NOTE: to save and exit changes use CTRL+x and then type y and hit enter it will save and close<br />
FYI: DNS ip addresses are for googles dns <br />
<br />
End result should look something like this but obviously on your network as I have multiple, I will be using my first network 192.168.1.0 for this as its used for demos etc.<br />
<br />
<img src="https://i.imgur.com/W0Zody7.png" loading="lazy"  alt="[Image: W0Zody7.png]" class="mycode_img" /><br />
<br />
now you need to restart your network for those changes we made to take effect.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>systemctl restart network
//then type 
ip add
//the output will show you if your ip has been set my one displayed 192.168.1.11 as I set it to .11</code></div></div><br />
I usually test if I am able to resolve both domain names as well as ip's<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>ping google.com
//if request timed out , something went wrong
ping 8.8.8.8
//same as previous comment</code></div></div><br />
If they both are able to send and receive data, congratulations you have a static ip<br />
<br />
Finally, we can begin installing sentora panel.<br />
<br />
Step 1: goto the <a href="http://docs.sentora.org/?node=22" target="_blank" rel="noopener" class="mycode_url">Docs</a> and grab the auto install script. <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>//double check the below url with the above link
bash &lt;(curl -L -Ss http://sentora.org/install)</code></div></div><br />
<br />
Step 2: login to your panel using ssh or even directly(VM users).<br />
paste the link in the terminal and hit enter <br />
<ul class="mycode_list"><li>INSTALLATION PROMPTS:<ul class="mycode_list"><li>1st Prompt: "Please select a continent or ocean."<br />
2nd Prompt: "Please select a country."<br />
3rd Prompt: "Is the above information OK?"<br />
4th Prompt: "Enter the sub-domain you want to access Sentora panel:" //Please Enter the corrent domain name eg: panel.site.tld or sen.site.tld or whateveryouwant.site.tld<br />
</li>
</ul>
</li>
</ul>
<br />
If you are able to set the cname as well as the ip you would get "All is ok. Do you want to install Sentora now (y/n)? y"<br />
<br />
if your panel does not resolve because you are going to use the current server for your domain and dns management simply force the install when it prompts you to force continue installation.<br />
<br />
Give it up to 10+ minutes (depends on internet speed, usually its less than 10minutes) for it to complete.<br />
you will then get the last prompt after it has been installed:<br />
"Restart your server now to complete the install (y/n)?"<br />
enter y and hit enter.<br />
<br />
<span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">You should now have successfully installed Sentora v1.0.3 using CentOS 7, we are not yet done.</span></span><br />
<img src="https://i.imgur.com/RJtzKnf.png" loading="lazy"  alt="[Image: RJtzKnf.png]" class="mycode_img" /><br />
<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Login to your panel using the details in /root/passwords.txt</span><br />
<br />
<img src="https://i.imgur.com/JqnMVCY.png" loading="lazy"  alt="[Image: JqnMVCY.png]" class="mycode_img" /><br />
<br />
Now locate to Domains and add your domain. Note it will not go live until you do the next step.<br />
Goto Dns Manager-&gt;select_a_domain_&amp;_hit_enter-&gt;click_on"Create Records". //If your dns is managed by cloudflare or any other dns manager this might cause issues.<br />
<br />
if you go back to "Domains" in a couple of minutes you should see that your domain is "Live";<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #3333cc;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size">Congratulations, You have successfully setup Sentora Panel &amp; Your Domain using CentOS 7 Server.</span></span></span>]]></description>
			<content:encoded><![CDATA[<span style="text-decoration: underline;" class="mycode_u">NOTES</span>: I will be using a virtual machine for this installation process, if you bought a dedicated server then simply login to your account and install <span style="font-weight: bold;" class="mycode_b"><span style="text-decoration: underline;" class="mycode_u">CentOS 7 Minimal</span></span>. That's if they support <span style="font-weight: bold;" class="mycode_b">CentOS</span>.<br />
<br />
How to install CentOS 7 (<span style="font-weight: bold;" class="mycode_b">for new users</span>):<br />
<span style="font-weight: bold;" class="mycode_b">CentOS 7:</span><ul class="mycode_list"><li>Download CentOS 7 Minimal from <a href="http://centos.mirror.ac.za/7/isos/x86_64/CentOS-7-x86_64-Minimal-1708.iso" target="_blank" rel="noopener" class="mycode_url">http://centos.mirror.ac.za/7/isos/x86_64...l-1708.iso</a><br />
</li>
</ul>
<span style="font-weight: bold;" class="mycode_b">Installation:</span><br />
<span style="font-size: large;" class="mycode_size">1: Select the appropriate language </span><br />
<img src="https://i.imgur.com/YrkriKj.png" loading="lazy"  alt="[Image: YrkriKj.png]" class="mycode_img" /><br />
<br />
<span style="font-size: large;" class="mycode_size">2: Fix any issues, Enable your network and set the date&amp;time.</span><br />
<img src="https://i.imgur.com/A3yemou.png" loading="lazy"  alt="[Image: A3yemou.png]" class="mycode_img" /><br />
<br />
<span style="font-size: medium;" class="mycode_size">Secure your server with a secure and lengthy password (try to make it as random as possible).</span><br />
<img src="https://i.imgur.com/caAXrrq.png" loading="lazy"  alt="[Image: caAXrrq.png]" class="mycode_img" /><br />
<br />
3: Login to your server.<br />
4: Now we need to set a static ip for the server.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>//before we set the static ip lets get a few essentials 
sudo yum install nano openssh -y
//now the fun part setting up a static IP for your server
sudo nmcli dev
//that should display either display "eth0" or"enpos3"
//I am using enp0s3
//jump to the network scripts folder
cd /etc/sysconfig/network-scripts/
ls
//do ls and it will display the file we are going to edit "ifcfg-enp0s3"
nano ifcfg-enp0s3</code></div></div><br />
SIDE NOTE: if you are going use it in a Virtual Machine you will NEED to set the network type to "bridged adapter".<br />
<br />
Now edit the following in the ifcfg-enp0s3 file:<br />
<br />
Previous: BOOTPROTO="dhcp"<br />
Change To: BOOTPROTO="static"<br />
Hit Enter and in the next line enter your details<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>IPADDR=192.168.x.x
NETMASK=255.255.255.0
NETWORK=192.168.x.x
GATEWAY=192.168.x.x
DNS1=8.8.8.8
DNS2=8.8.4.4
NM_CONTROLLED=no //must be set as NO</code></div></div>NOTE: to save and exit changes use CTRL+x and then type y and hit enter it will save and close<br />
FYI: DNS ip addresses are for googles dns <br />
<br />
End result should look something like this but obviously on your network as I have multiple, I will be using my first network 192.168.1.0 for this as its used for demos etc.<br />
<br />
<img src="https://i.imgur.com/W0Zody7.png" loading="lazy"  alt="[Image: W0Zody7.png]" class="mycode_img" /><br />
<br />
now you need to restart your network for those changes we made to take effect.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>systemctl restart network
//then type 
ip add
//the output will show you if your ip has been set my one displayed 192.168.1.11 as I set it to .11</code></div></div><br />
I usually test if I am able to resolve both domain names as well as ip's<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>ping google.com
//if request timed out , something went wrong
ping 8.8.8.8
//same as previous comment</code></div></div><br />
If they both are able to send and receive data, congratulations you have a static ip<br />
<br />
Finally, we can begin installing sentora panel.<br />
<br />
Step 1: goto the <a href="http://docs.sentora.org/?node=22" target="_blank" rel="noopener" class="mycode_url">Docs</a> and grab the auto install script. <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>//double check the below url with the above link
bash &lt;(curl -L -Ss http://sentora.org/install)</code></div></div><br />
<br />
Step 2: login to your panel using ssh or even directly(VM users).<br />
paste the link in the terminal and hit enter <br />
<ul class="mycode_list"><li>INSTALLATION PROMPTS:<ul class="mycode_list"><li>1st Prompt: "Please select a continent or ocean."<br />
2nd Prompt: "Please select a country."<br />
3rd Prompt: "Is the above information OK?"<br />
4th Prompt: "Enter the sub-domain you want to access Sentora panel:" //Please Enter the corrent domain name eg: panel.site.tld or sen.site.tld or whateveryouwant.site.tld<br />
</li>
</ul>
</li>
</ul>
<br />
If you are able to set the cname as well as the ip you would get "All is ok. Do you want to install Sentora now (y/n)? y"<br />
<br />
if your panel does not resolve because you are going to use the current server for your domain and dns management simply force the install when it prompts you to force continue installation.<br />
<br />
Give it up to 10+ minutes (depends on internet speed, usually its less than 10minutes) for it to complete.<br />
you will then get the last prompt after it has been installed:<br />
"Restart your server now to complete the install (y/n)?"<br />
enter y and hit enter.<br />
<br />
<span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">You should now have successfully installed Sentora v1.0.3 using CentOS 7, we are not yet done.</span></span><br />
<img src="https://i.imgur.com/RJtzKnf.png" loading="lazy"  alt="[Image: RJtzKnf.png]" class="mycode_img" /><br />
<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Login to your panel using the details in /root/passwords.txt</span><br />
<br />
<img src="https://i.imgur.com/JqnMVCY.png" loading="lazy"  alt="[Image: JqnMVCY.png]" class="mycode_img" /><br />
<br />
Now locate to Domains and add your domain. Note it will not go live until you do the next step.<br />
Goto Dns Manager-&gt;select_a_domain_&amp;_hit_enter-&gt;click_on"Create Records". //If your dns is managed by cloudflare or any other dns manager this might cause issues.<br />
<br />
if you go back to "Domains" in a couple of minutes you should see that your domain is "Live";<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #3333cc;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size">Congratulations, You have successfully setup Sentora Panel &amp; Your Domain using CentOS 7 Server.</span></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[How-To/Guide] Update Roundcube, The best way to keep spam away.]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=4129</link>
			<pubDate>Sun, 15 Oct 2017 09:12:37 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=5644">betatester3.0</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=4129</guid>
			<description><![CDATA[Are you a new user to Sentora Control Panel ?, if you are be sure to update your Roundcube if you would like to see a decrease of spam being sent from your server. Well this is my first step after a new install of Sentora V1.0.3 . <br />
<br />
<span style="font-weight: bold;" class="mycode_b">So lets have a few other steps before we continue:</span><ul class="mycode_list"><li>1: for this to be succefull, you will need to have a secure password setup for all your emails, clients emails, server "root" user, zadmin user. basically all passwords have to be random as well as above 16 characters.<br />
</li>
<li>2: A password that i would call secure would have a minimum of 16 characters and within that 16 chars it must be as random as possible so that you make it tough on hashcrackers as well as the hackers that obtain your hash.<br />
</li>
<li>3: Example of a secure ish password: 16 chars --&gt; {nr7&lt;X#^n2(&lt;?v)9  :: 32 chars --&gt; #&#36;(y8CY4unyDCP!Ax@x)=.`kea2x`W&#36;( <br />
</li>
<li>4: The above is an example of a random password generated by my prog although there are various other password generators online. such as <a href="https://passwordsgenerator.net" target="_blank" rel="noopener" class="mycode_url">PasswordGenerator.net</a> which is supprisingly good and you have an option to generate the password using your broswer instead of sending it across the internet to the server.<br />
</li>
<li>5: check the current installation of sentora for any issues which is located in the log files.<br />
</li>
<li>6: check your version of Sentora v1.0.3 is compatibile with the update.<br />
</li>
<li>7: Check if your roundcube(current roundcube version on sentora v1.0.3, roundcube v1.0.4) is functional and you are able to send and recieve mail before continuing with the update.<br />
</li>
</ul>
<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">So lets begin the update/installation progress:</span></span><br />
<br />
First go to the RoundCube website: and choose which version you would like to install, I prefer using the stable versions.<br />
<br />
We are going to upgrade roundcube v.1.0.4 to v1.2.6 and it works with the latest version as well v.1.3.1.<br />
<br />
Download the v-1.x.x Complete of roundcube here are the two that work properly at the moment.<br />
v-1.3.1 Complete = <a href="HTTPS://github.com/roundcube/roundcubemail/releases/download/1.3.1/roundcubemail-1.3.1-complete.tar.gz" target="_blank" rel="noopener" class="mycode_url">HTTPS://github.com/roundcube/roundcubema...ete.tar.gz</a><br />
v-1.2.6 Complete <a href="HTTPS://github.com/roundcube/roundcubemail/releases/download/1.2.6/roundcubemail-1.2.6-complete.tar.gz" target="_blank" rel="noopener" class="mycode_url">HTTPS://github.com/roundcube/roundcubema...ete.tar.gz</a><br />
Login to your server using SSH then enter the following:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>CD /etc/sentora/panel/etc/apps</code></div></div>After that <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>//now we need to get the roundcube using the links
wget HTTPS://github.com/roundcube/roundcubemail/releases/download/1.2.6/roundcubemail-1.2.6-complete.tar.gz
//then extract the .tar.gz to apps directory not /webmail
tar xf roundcubemail-1.2.6-complete.tar.gz
//CD into the extracted roundcube folder I'm going to use the * as you could be using any other version
CD roundcubemail-*
//now the main part :: Make SURE that rsync is installed other wise you are going to get a "ERROR500"
//upgrade time ./bin/installto.sh &lt;TARGET FOLDER&gt;
./bin/installto.sh /etc/sentora/panel/etc/apps/webmail 
//it will prompt you , before installation simple enter "y"</code></div></div>once the installation is done, do a little clean up you can remove the following folders:<br />
/installer/<br />
/SQL/<br />
IN THE APPS FOLDER /etc/sentora/panel/apps remove<br />
/roundcubemail-1.2.6-complete.tar.gz<br />
/roundcubemail-*]]></description>
			<content:encoded><![CDATA[Are you a new user to Sentora Control Panel ?, if you are be sure to update your Roundcube if you would like to see a decrease of spam being sent from your server. Well this is my first step after a new install of Sentora V1.0.3 . <br />
<br />
<span style="font-weight: bold;" class="mycode_b">So lets have a few other steps before we continue:</span><ul class="mycode_list"><li>1: for this to be succefull, you will need to have a secure password setup for all your emails, clients emails, server "root" user, zadmin user. basically all passwords have to be random as well as above 16 characters.<br />
</li>
<li>2: A password that i would call secure would have a minimum of 16 characters and within that 16 chars it must be as random as possible so that you make it tough on hashcrackers as well as the hackers that obtain your hash.<br />
</li>
<li>3: Example of a secure ish password: 16 chars --&gt; {nr7&lt;X#^n2(&lt;?v)9  :: 32 chars --&gt; #&#36;(y8CY4unyDCP!Ax@x)=.`kea2x`W&#36;( <br />
</li>
<li>4: The above is an example of a random password generated by my prog although there are various other password generators online. such as <a href="https://passwordsgenerator.net" target="_blank" rel="noopener" class="mycode_url">PasswordGenerator.net</a> which is supprisingly good and you have an option to generate the password using your broswer instead of sending it across the internet to the server.<br />
</li>
<li>5: check the current installation of sentora for any issues which is located in the log files.<br />
</li>
<li>6: check your version of Sentora v1.0.3 is compatibile with the update.<br />
</li>
<li>7: Check if your roundcube(current roundcube version on sentora v1.0.3, roundcube v1.0.4) is functional and you are able to send and recieve mail before continuing with the update.<br />
</li>
</ul>
<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">So lets begin the update/installation progress:</span></span><br />
<br />
First go to the RoundCube website: and choose which version you would like to install, I prefer using the stable versions.<br />
<br />
We are going to upgrade roundcube v.1.0.4 to v1.2.6 and it works with the latest version as well v.1.3.1.<br />
<br />
Download the v-1.x.x Complete of roundcube here are the two that work properly at the moment.<br />
v-1.3.1 Complete = <a href="HTTPS://github.com/roundcube/roundcubemail/releases/download/1.3.1/roundcubemail-1.3.1-complete.tar.gz" target="_blank" rel="noopener" class="mycode_url">HTTPS://github.com/roundcube/roundcubema...ete.tar.gz</a><br />
v-1.2.6 Complete <a href="HTTPS://github.com/roundcube/roundcubemail/releases/download/1.2.6/roundcubemail-1.2.6-complete.tar.gz" target="_blank" rel="noopener" class="mycode_url">HTTPS://github.com/roundcube/roundcubema...ete.tar.gz</a><br />
Login to your server using SSH then enter the following:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>CD /etc/sentora/panel/etc/apps</code></div></div>After that <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>//now we need to get the roundcube using the links
wget HTTPS://github.com/roundcube/roundcubemail/releases/download/1.2.6/roundcubemail-1.2.6-complete.tar.gz
//then extract the .tar.gz to apps directory not /webmail
tar xf roundcubemail-1.2.6-complete.tar.gz
//CD into the extracted roundcube folder I'm going to use the * as you could be using any other version
CD roundcubemail-*
//now the main part :: Make SURE that rsync is installed other wise you are going to get a "ERROR500"
//upgrade time ./bin/installto.sh &lt;TARGET FOLDER&gt;
./bin/installto.sh /etc/sentora/panel/etc/apps/webmail 
//it will prompt you , before installation simple enter "y"</code></div></div>once the installation is done, do a little clean up you can remove the following folders:<br />
/installer/<br />
/SQL/<br />
IN THE APPS FOLDER /etc/sentora/panel/apps remove<br />
/roundcubemail-1.2.6-complete.tar.gz<br />
/roundcubemail-*]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Options Register Globals, Listing Directory and such things]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=3797</link>
			<pubDate>Tue, 06 Jun 2017 10:45:03 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=5347">JimKnopf</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=3797</guid>
			<description><![CDATA[Hello community. I search to the options where i can change directory listing,<br />
register globals, display error on/off and such things. (Customer/user/account based)<br />
The webstandard. Confixx like, i think you know what i mean.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">I know they are anywhere, but where? </span><br />
Or i'm wrong?<br />
<br />
THx4hlp]]></description>
			<content:encoded><![CDATA[Hello community. I search to the options where i can change directory listing,<br />
register globals, display error on/off and such things. (Customer/user/account based)<br />
The webstandard. Confixx like, i think you know what i mean.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">I know they are anywhere, but where? </span><br />
Or i'm wrong?<br />
<br />
THx4hlp]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to Create Sentora Panel Subdomain for the installation?]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=3650</link>
			<pubDate>Thu, 16 Mar 2017 11:17:41 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=4655">channelriyas</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=3650</guid>
			<description><![CDATA[Hi Guys,<br />
<br />
I am new to Sentora, I am using Google Cloud Engine with CentOS6 I don't know how to setup subdomain for the sentora installation and for sentora panel.<br />
<br />
I am getting this warning message  while installing "<span style="color: #000000;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">WARNING: panel.mydomain.tk is not defined in your DNS!</span></span>" but I already set this subdomain in GoogleCloud engine, like this step:<br />
<br />
1. I have installed CentOS6 on Google Cloud Engine<br />
2. And  mydomain.tk registered at freenom.com<br />
3. On <span style="font-weight: bold;" class="mycode_b">Google cloud engine -&gt; Networking-&gt; Cloud DNS</span>: created DNS entries for the instance IP and domain like this:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>mydomain.tk    A    300    xxx.xxx.xxx.xxx
mydomain.tk    NS    21600   ns-cloud-c1.googledomains.com
                             ns-cloud-c2.googledomains.com
                             ns-cloud-c3.googledomains.com
                             ns-cloud-c4.googledomains.com
mydomain.tk    SOA    21600  ns-cloud-c1.googledomains.com. cloud-dns-hostmaster.google.com. 1 21600 3600 259
ftp.mydomain.tk    CNAME    300    mydomain.tk
mail.mydomain.tk    CNAME    300    mydomain.tk
panel.mydomain.tk    CNAME    300    xxx.xxx.xxx.xxx
www.mydomain.tk    CNAME    300    mydomain.tk</code></div></div><br />
4. My domain nameserver changed from Freenom according to google....<br />
<br />
What I missed here? I already set panel.mydomain.tk for sub-domain. or I need to do anything additional, please assist me on this I am middle of the installation.<br />
<br />
<br />
Thanks!]]></description>
			<content:encoded><![CDATA[Hi Guys,<br />
<br />
I am new to Sentora, I am using Google Cloud Engine with CentOS6 I don't know how to setup subdomain for the sentora installation and for sentora panel.<br />
<br />
I am getting this warning message  while installing "<span style="color: #000000;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">WARNING: panel.mydomain.tk is not defined in your DNS!</span></span>" but I already set this subdomain in GoogleCloud engine, like this step:<br />
<br />
1. I have installed CentOS6 on Google Cloud Engine<br />
2. And  mydomain.tk registered at freenom.com<br />
3. On <span style="font-weight: bold;" class="mycode_b">Google cloud engine -&gt; Networking-&gt; Cloud DNS</span>: created DNS entries for the instance IP and domain like this:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>mydomain.tk    A    300    xxx.xxx.xxx.xxx
mydomain.tk    NS    21600   ns-cloud-c1.googledomains.com
                             ns-cloud-c2.googledomains.com
                             ns-cloud-c3.googledomains.com
                             ns-cloud-c4.googledomains.com
mydomain.tk    SOA    21600  ns-cloud-c1.googledomains.com. cloud-dns-hostmaster.google.com. 1 21600 3600 259
ftp.mydomain.tk    CNAME    300    mydomain.tk
mail.mydomain.tk    CNAME    300    mydomain.tk
panel.mydomain.tk    CNAME    300    xxx.xxx.xxx.xxx
www.mydomain.tk    CNAME    300    mydomain.tk</code></div></div><br />
4. My domain nameserver changed from Freenom according to google....<br />
<br />
What I missed here? I already set panel.mydomain.tk for sub-domain. or I need to do anything additional, please assist me on this I am middle of the installation.<br />
<br />
<br />
Thanks!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[New Style for Sentora Part 3 (Новый стиль для Sentora Часть 3)]]></title>
			<link>https://senforums.mach-hosting.com/showthread.php?tid=3647</link>
			<pubDate>Mon, 13 Mar 2017 10:11:14 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://senforums.mach-hosting.com/member.php?action=profile&uid=307">MarkDark</a>]]></dc:creator>
			<guid isPermaLink="false">https://senforums.mach-hosting.com/showthread.php?tid=3647</guid>
			<description><![CDATA[<span style="color: #ff3333;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Часть 3 <br />
</span></span><br />
<div style="text-align: right;" class="mycode_align"><span style="color: #ff3333;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b"><a href="http://forums.sentora.org/showthread.php?tid=3645&amp;pid=19889#pid19889" target="_blank" rel="noopener" class="mycode_url">(Часть 1)</a>  <a href="http://forums.sentora.org/showthread.php?tid=3646&amp;pid=19890#pid19890" target="_blank" rel="noopener" class="mycode_url">(Часть 2)</a></span></span></div>
14. Приступаем к самому важному!<br />
Замена содержимого установленной панели.<br />
Для данных действий нам потребуется программа WinSCP<br />
URL: <a href="https://winscp.net/eng/docs/lang:ru" target="_blank" rel="noopener" class="mycode_url">https://winscp.net/eng/docs/lang:ru</a><br />
Запускаем данную программу устанавливаем соединение с нашим сервером<br />
Открываем папку <span style="font-weight: bold;" class="mycode_b">Files_Sentora</span> и копируем содержимое в корень установленной системы<br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/01.png" loading="lazy"  alt="[Image: 01.png]" class="mycode_img" /><br />
<br />
15. Снова открываем нашу панель управления Sentora в браузере<br />
Кликаем по модулю <span style="font-weight: bold;" class="mycode_b">Theme Manager</span> и выбираем тему <span style="font-weight: bold;" class="mycode_b">CstyleX</span> -&gt; Сохраняемся<br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/02.png" loading="lazy"  alt="[Image: 02.png]" class="mycode_img" /><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/03.png" loading="lazy"  alt="[Image: 03.png]" class="mycode_img" /><br />
<br />
16. Снова используем WinSCP<br />
Открываем директорию /etc/sentora/panel/etc/styles и удаляем папку <span style="font-weight: bold;" class="mycode_b">Sentora_Default</span><br />
<br />
17. Снова открываем нашу панель управления Sentora в браузере<br />
Кликаем по модулю <span style="font-weight: bold;" class="mycode_b">phpmyadmin</span> и авторизуемся<br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/04.png" loading="lazy"  alt="[Image: 04.png]" class="mycode_img" /><br />
<br />
18. Выбираем базу данных <span style="font-weight: bold;" class="mycode_b">sentora_core</span><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/05.png" loading="lazy"  alt="[Image: 05.png]" class="mycode_img" /><br />
<br />
19. Выбираем закладку <span style="font-weight: bold;" class="mycode_b">Импорт</span> кликаем на нее<br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/06.png" loading="lazy"  alt="[Image: 06.png]" class="mycode_img" /><br />
<br />
Выбираем файл <span style="font-weight: bold;" class="mycode_b">Replace_TBL.sql </span>из папки <span style="font-weight: bold;" class="mycode_b">Files_SQL</span> и импортируем его в базу<span style="font-weight: bold;" class="mycode_b"> sentora_core</span><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/07.png" loading="lazy"  alt="[Image: 07.png]" class="mycode_img" /><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/08.png" loading="lazy"  alt="[Image: 08.png]" class="mycode_img" /><br />
<br />
20. Открываем нашу панель управления Sentora в браузере<br />
<br />
21. Кликаем по модулю <span style="font-weight: bold;" class="mycode_b">My Account</span><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/09.png" loading="lazy"  alt="[Image: 09.png]" class="mycode_img" /><br />
<br />
22. Заполняем все поля (особенно E-Mail)<br />
Выбираем язык <span style="font-weight: bold;" class="mycode_b">russian</span> ну или любой другой и нажимаем кнопку <span style="font-weight: bold;" class="mycode_b">Change</span><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/10.png" loading="lazy"  alt="[Image: 10.png]" class="mycode_img" /><br />
<br />
23. Основная часть сделана! Остались мелкие доработки.<br />
<br />
24. Уберите рекламное сообщение вверху панели кликнув на модуль<span style="font-weight: bold;" class="mycode_b"> Оповещения клиентов</span><br />
и удалите текст из поля Оповещения, или напишите свое сообщение <img src="https://senforums.mach-hosting.com/images/smilies/biggrin.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /> <br />
<br />
25. Если вы внимательно следили за процессом установки панели Sentora,<br />
то могли заметить, что в процессе установки базы для почтового сервера Postfix<br />
не импортируется 1 таблица <span style="font-weight: bold;" class="mycode_b">'vacation_notification',</span> ее можно добавить вручную.<br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step4/01.png" loading="lazy"  alt="[Image: 01.png]" class="mycode_img" /><br />
<br />
Открываем <span style="font-weight: bold;" class="mycode_b">phpmyadmin</span> и выбираем базу <span style="font-weight: bold;" class="mycode_b">sentora_postfix</span> кликаем на закладку <span style="font-weight: bold;" class="mycode_b">SQL</span><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step4/02.png" loading="lazy"  alt="[Image: 02.png]" class="mycode_img" /><br />
<br />
<br />
В поле запроса вставляем следующий запрос:<br />
<br />
CREATE TABLE IF NOT EXISTS `vacation_notification` (<br />
  `on_vacation` varchar(255) CHARACTER SET latin1 NOT NULL,<br />
  `notified` varchar(255) CHARACTER SET latin1 NOT NULL,<br />
  `notified_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,<br />
  PRIMARY KEY (`on_vacation`,`notified`)<br />
) ENGINE=InnoDB DEFAULT CHARSET=utf8;<br />
<br />
Нажимаем <span style="font-weight: bold;" class="mycode_b">ОK</span><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step4/03.png" loading="lazy"  alt="[Image: 03.png]" class="mycode_img" /><br />
<br />
26. Последнее действие снова используйте WinSCP<br />
Откройте файл /etc/sentora/configs/apache/httpd.conf<br />
Добавьте строчку: <span style="font-weight: bold;" class="mycode_b">Alias /flags   /etc/sentora/panel/modules/webalizer_stats/bin/flags</span><br />
Сохраните файл<br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step5/01.png" loading="lazy"  alt="[Image: 01.png]" class="mycode_img" /><br />
<br />
27. Перезагрузите сервер! Пользуйтесь на русском языке!<br />
<br />
Руководство подготовил <span style="font-weight: bold;" class="mycode_b">Григорьев Марк</span> 13 марта 2017г.<br />
<br />
<span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">P.S.</span> <span style="color: #ff3333;" class="mycode_color">Прежде чем выкладывать данное руководство,</span></span><br />
<span style="color: #ff3333;" class="mycode_color"><span style="font-size: large;" class="mycode_size">я отладил весь процесс на собственном сервере.</span></span><br />
<span style="color: #ff3333;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Весь процесс я проверил с нуля 5 раз!</span></span><br />
<span style="color: #ff3333;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Гарантирую</span> положительный результат,</span></span><br />
<span style="font-size: large;" class="mycode_size"><span style="color: #ff3333;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">если</span> установка проведена согласно данному руководству!</span></span><br />
<br />
<a href="http://forums.sentora.org/showthread.php?tid=3645&amp;pid=19889#pid19889" target="_blank" rel="noopener" class="mycode_url">Часть 1</a> <a href="http://forums.sentora.org/showthread.php?tid=3646&amp;pid=19890#pid19890" target="_blank" rel="noopener" class="mycode_url">Часть 2</a> Часть 3]]></description>
			<content:encoded><![CDATA[<span style="color: #ff3333;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Часть 3 <br />
</span></span><br />
<div style="text-align: right;" class="mycode_align"><span style="color: #ff3333;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b"><a href="http://forums.sentora.org/showthread.php?tid=3645&amp;pid=19889#pid19889" target="_blank" rel="noopener" class="mycode_url">(Часть 1)</a>  <a href="http://forums.sentora.org/showthread.php?tid=3646&amp;pid=19890#pid19890" target="_blank" rel="noopener" class="mycode_url">(Часть 2)</a></span></span></div>
14. Приступаем к самому важному!<br />
Замена содержимого установленной панели.<br />
Для данных действий нам потребуется программа WinSCP<br />
URL: <a href="https://winscp.net/eng/docs/lang:ru" target="_blank" rel="noopener" class="mycode_url">https://winscp.net/eng/docs/lang:ru</a><br />
Запускаем данную программу устанавливаем соединение с нашим сервером<br />
Открываем папку <span style="font-weight: bold;" class="mycode_b">Files_Sentora</span> и копируем содержимое в корень установленной системы<br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/01.png" loading="lazy"  alt="[Image: 01.png]" class="mycode_img" /><br />
<br />
15. Снова открываем нашу панель управления Sentora в браузере<br />
Кликаем по модулю <span style="font-weight: bold;" class="mycode_b">Theme Manager</span> и выбираем тему <span style="font-weight: bold;" class="mycode_b">CstyleX</span> -&gt; Сохраняемся<br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/02.png" loading="lazy"  alt="[Image: 02.png]" class="mycode_img" /><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/03.png" loading="lazy"  alt="[Image: 03.png]" class="mycode_img" /><br />
<br />
16. Снова используем WinSCP<br />
Открываем директорию /etc/sentora/panel/etc/styles и удаляем папку <span style="font-weight: bold;" class="mycode_b">Sentora_Default</span><br />
<br />
17. Снова открываем нашу панель управления Sentora в браузере<br />
Кликаем по модулю <span style="font-weight: bold;" class="mycode_b">phpmyadmin</span> и авторизуемся<br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/04.png" loading="lazy"  alt="[Image: 04.png]" class="mycode_img" /><br />
<br />
18. Выбираем базу данных <span style="font-weight: bold;" class="mycode_b">sentora_core</span><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/05.png" loading="lazy"  alt="[Image: 05.png]" class="mycode_img" /><br />
<br />
19. Выбираем закладку <span style="font-weight: bold;" class="mycode_b">Импорт</span> кликаем на нее<br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/06.png" loading="lazy"  alt="[Image: 06.png]" class="mycode_img" /><br />
<br />
Выбираем файл <span style="font-weight: bold;" class="mycode_b">Replace_TBL.sql </span>из папки <span style="font-weight: bold;" class="mycode_b">Files_SQL</span> и импортируем его в базу<span style="font-weight: bold;" class="mycode_b"> sentora_core</span><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/07.png" loading="lazy"  alt="[Image: 07.png]" class="mycode_img" /><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/08.png" loading="lazy"  alt="[Image: 08.png]" class="mycode_img" /><br />
<br />
20. Открываем нашу панель управления Sentora в браузере<br />
<br />
21. Кликаем по модулю <span style="font-weight: bold;" class="mycode_b">My Account</span><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/09.png" loading="lazy"  alt="[Image: 09.png]" class="mycode_img" /><br />
<br />
22. Заполняем все поля (особенно E-Mail)<br />
Выбираем язык <span style="font-weight: bold;" class="mycode_b">russian</span> ну или любой другой и нажимаем кнопку <span style="font-weight: bold;" class="mycode_b">Change</span><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step3/10.png" loading="lazy"  alt="[Image: 10.png]" class="mycode_img" /><br />
<br />
23. Основная часть сделана! Остались мелкие доработки.<br />
<br />
24. Уберите рекламное сообщение вверху панели кликнув на модуль<span style="font-weight: bold;" class="mycode_b"> Оповещения клиентов</span><br />
и удалите текст из поля Оповещения, или напишите свое сообщение <img src="https://senforums.mach-hosting.com/images/smilies/biggrin.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /> <br />
<br />
25. Если вы внимательно следили за процессом установки панели Sentora,<br />
то могли заметить, что в процессе установки базы для почтового сервера Postfix<br />
не импортируется 1 таблица <span style="font-weight: bold;" class="mycode_b">'vacation_notification',</span> ее можно добавить вручную.<br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step4/01.png" loading="lazy"  alt="[Image: 01.png]" class="mycode_img" /><br />
<br />
Открываем <span style="font-weight: bold;" class="mycode_b">phpmyadmin</span> и выбираем базу <span style="font-weight: bold;" class="mycode_b">sentora_postfix</span> кликаем на закладку <span style="font-weight: bold;" class="mycode_b">SQL</span><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step4/02.png" loading="lazy"  alt="[Image: 02.png]" class="mycode_img" /><br />
<br />
<br />
В поле запроса вставляем следующий запрос:<br />
<br />
CREATE TABLE IF NOT EXISTS `vacation_notification` (<br />
  `on_vacation` varchar(255) CHARACTER SET latin1 NOT NULL,<br />
  `notified` varchar(255) CHARACTER SET latin1 NOT NULL,<br />
  `notified_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,<br />
  PRIMARY KEY (`on_vacation`,`notified`)<br />
) ENGINE=InnoDB DEFAULT CHARSET=utf8;<br />
<br />
Нажимаем <span style="font-weight: bold;" class="mycode_b">ОK</span><br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step4/03.png" loading="lazy"  alt="[Image: 03.png]" class="mycode_img" /><br />
<br />
26. Последнее действие снова используйте WinSCP<br />
Откройте файл /etc/sentora/configs/apache/httpd.conf<br />
Добавьте строчку: <span style="font-weight: bold;" class="mycode_b">Alias /flags   /etc/sentora/panel/modules/webalizer_stats/bin/flags</span><br />
Сохраните файл<br />
<br />
<img src="http://awserver.ru/sentora/images/howto/step5/01.png" loading="lazy"  alt="[Image: 01.png]" class="mycode_img" /><br />
<br />
27. Перезагрузите сервер! Пользуйтесь на русском языке!<br />
<br />
Руководство подготовил <span style="font-weight: bold;" class="mycode_b">Григорьев Марк</span> 13 марта 2017г.<br />
<br />
<span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">P.S.</span> <span style="color: #ff3333;" class="mycode_color">Прежде чем выкладывать данное руководство,</span></span><br />
<span style="color: #ff3333;" class="mycode_color"><span style="font-size: large;" class="mycode_size">я отладил весь процесс на собственном сервере.</span></span><br />
<span style="color: #ff3333;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Весь процесс я проверил с нуля 5 раз!</span></span><br />
<span style="color: #ff3333;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Гарантирую</span> положительный результат,</span></span><br />
<span style="font-size: large;" class="mycode_size"><span style="color: #ff3333;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">если</span> установка проведена согласно данному руководству!</span></span><br />
<br />
<a href="http://forums.sentora.org/showthread.php?tid=3645&amp;pid=19889#pid19889" target="_blank" rel="noopener" class="mycode_url">Часть 1</a> <a href="http://forums.sentora.org/showthread.php?tid=3646&amp;pid=19890#pid19890" target="_blank" rel="noopener" class="mycode_url">Часть 2</a> Часть 3]]></content:encoded>
		</item>
	</channel>
</rss>