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!)
How to fix bugs and let it work, thank you!
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?
(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>
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.