Sentora Support Forums
[Help] I have some webmail errors - Printable Version

+- Sentora Support Forums (https://senforums.mach-hosting.com)
+-- Forum: Sentora Forum Archives (https://senforums.mach-hosting.com/forumdisplay.php?fid=5)
+--- Forum: Sentora Public Support Forums v1.0.x (https://senforums.mach-hosting.com/forumdisplay.php?fid=32)
+---- Forum: Email Support v1.0.x (https://senforums.mach-hosting.com/forumdisplay.php?fid=35)
+---- Thread: [Help] I have some webmail errors (/showthread.php?tid=3967)



[Help] I have some webmail errors - quangpham89 - 08-09-2017

I followed the instructions for creating the subdomain for webmail according to this tutorial: http://forums.sentora.org/showthread.php?tid=495

But the result is not running, error, please help me how to correct error. (CONFIGURATION ERROR config.inc.php was not found. Please read the INSTALL instructions!)

[Image: G99Drvn.jpg]

How to fix bugs and let it work, thank you!


RE: [Help] I have some webmail errors - TGates - 08-09-2017

It tells you the problem. CONFIGURATION ERROR config.inc.php was not found. Please read the INSTALL instructions!

There is a problem with your roundcube installation. It cannot find it's configuration file. Did you change anything related to roundcube? Did you try to update it?


RE: [Help] I have some webmail errors - quangpham89 - 08-10-2017

(08-09-2017, 11:58 PM)TGates Wrote: It tells you the problem. CONFIGURATION ERROR config.inc.php was not found. Please read the INSTALL instructions!

There is a problem with your roundcube installation. It cannot find it's configuration file. Did you change anything related to roundcube? Did you try to update it?

I have configured by: Using Custom Vhost Entries for Webmail (http://forums.sentora.org/showthread.php?tid=495), when editing vhost is done, it does not work in the error config

Code:
</VirtualHost> <VirtualHost *:80>        ServerAdmin webmaster[at]yoursite.tld        DocumentRoot "/etc/sentora/panel/etc/apps/webmail/"        ServerName webmail.yoursite.tld        AddType application/x-httpd-php .php3 .php        <Directory />            php_admin_value open_basedir /etc/sentora/panel/etc/apps/webmail            Options FollowSymLinks Indexes            AllowOverride All            Order Allow,Deny            Allow from all        </Directory> </VirtualHost>



RE: [Help] I have some webmail errors - TGates - 08-10-2017

Is that exactly what you put in the custom entry? If so, it is wrong. You do NOT include the closing </virtualhost> at the bottom. It should be:
Code:
</VirtualHost> <VirtualHost *:80>       ServerAdmin webmaster[at]yoursite.tld       DocumentRoot "/etc/sentora/panel/etc/apps/webmail/"       ServerName webmail.yoursite.tld       AddType application/x-httpd-php .php3 .php       <Directory />           php_admin_value open_basedir /etc/sentora/panel/etc/apps/webmail           Options FollowSymLinks Indexes           AllowOverride All           Order Allow,Deny           Allow from all       </Directory>
Sentora will automatically add </virtualhost> at the end.


RE: [Help] I have some webmail errors - Ron-e - 08-23-2017

http://forums.sentora.org/showthread.php?tid=495&pid=8862#pid8862


RE: [Help] I have some webmail errors - TGates - 08-23-2017

Don't forget to convert:

Code:
webmaster[at]yoursite.tld
To:
Code:
webmaster@yoursite.tld