![]() |
|
webmail.xxxx.tld not working more - 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: General Support Forum v1.0.x (https://senforums.mach-hosting.com/forumdisplay.php?fid=36) +---- Thread: webmail.xxxx.tld not working more (/showthread.php?tid=960) Pages:
1
2
|
webmail.xxxx.tld not working more - Diablo925 - 02-02-2015 after udate i cant get webmail.domain.tld to Work Code: </VirtualHost>
# Configuration for WebMail - webmail.alio.dk
<VirtualHost *:80>
ServerAdmin Carsten@alio.dk
DocumentRoot "/etc/sentora/panel/etc/apps/webmail/"
ServerName webmail.alio.dk
AddType application/x-httpd-php .php3 .php
<Directory />
Options +FollowSymLinks -Indexes
AllowOverride All
Order Allow,Deny
Allow from all
</Directory> Forbidden You don't have permission to access / on this server. Apache Server at webmail.alio.dk Port 80 RE: webmail.xxxx.tld not working more - Me.B - 02-02-2015 UPDATE ???????????????? We never released an updater for sentora. Would you explain more? M B RE: webmail.xxxx.tld not working more - Diablo925 - 02-02-2015 i have uses the old sentora right after zpanel OLD version and now use ver 1.0.0 RE: webmail.xxxx.tld not working more - Me.B - 02-02-2015 Each time on new clean system ?? How are you updating? We never released an updater. M B RE: webmail.xxxx.tld not working more - Diablo925 - 02-02-2015 i made a new server on DO install the new sentora and now i move manuelt all files and settings from my old server to the new so i can close the old server so i dont pay for it but my webmail.domain.tld dont Work on the new server but Works on the old RE: webmail.xxxx.tld not working more - Me.B - 02-02-2015 Did you check DNS? Are you sure you applied ALL the same settings! Check again custom settings if you had any & DNS. M B RE: webmail.xxxx.tld not working more - Diablo925 - 02-02-2015 all is the same only new is the ip but webmail is a cname and my A record works i think it is the VirtualHost but i have look inside httpd-vhost.conf and it looks like the default RE: webmail.xxxx.tld not working more - dansanti - 02-03-2015 Try with: <VirtualHost *:80> ServerAlias mail.* DocumentRoot "/etc/sentora/panel/etc/apps/webmail/" AddType application/x-httpd-php .php <Directory "/etc/sentora/panel/etc/apps/webmail/"> Options +FollowSymLinks -Indexes AllowOverride All Require all granted </Directory> </VirtualHost> RE: webmail.xxxx.tld not working more - lino69 - 02-03-2015 (02-02-2015, 08:54 PM)Diablo925 Wrote: after udate you may use this --> chown -R www-data /var/sentora/panel/etc/apps/webmail/. when moving files manualy to a web directory you have to fix the permisions this code fix it chown -R www-data /var/sentora/panel/etc/apps/webmail/. RE: webmail.xxxx.tld not working more - Diablo925 - 02-03-2015 that works Thx |