subdomain with www is not working !!!!
#10
RE: subdomain with www is not working !!!!
Quote:NOTICE: This fix is not recommended or approved by the Sentora Team. Use at your own risk.

Changing the core code of Sentora is not the proper way to solve this!
Proper Solution -HERE-



I think we don't have to wait for the next update. I figured it out.

Here's what you have to do. go to

Code:
/etc/sentora/panel/modules/sub_domains/code/
and edit
Code:
controller.ext.php
and just comment out this code with /* */ at line 218
Code:
// Check to make sure the domain is in the correct format before we go any further...        if (strpos($domain, 'www.') === 0) {            self::$error = TRUE;            return FALSE;        }        

Now you'll be able to add
Code:
www.subdomain.yoursite.com
as an individual subdomain and can create a new directory and redirect that page into the one without www using this code as your index for that newly created directory
Code:
<?php if(!strstr($_SERVER['HTTP_HOST'],'www.')) return; header('HTTP/1.1 301 Moved Permanently'); header('Location: http://'.substr($_SERVER['HTTP_HOST'],4).$_SERVER['REQUEST_URI']); exit(); ?>

or can assign that domain to the existing directory of your subdomain.

If you are using cloudflare free plan then you have to unmask the
Code:
www.subdomain A record
by clicking on the orange cloud and making it grey.
Reply


Messages In This Thread
subdomain with www is not working !!!! - by yusha - 08-06-2018, 05:07 AM
RE: subdomain with www is not working !!!! - by yusha - 08-10-2018, 04:41 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Public_html Inside Domain/Subdomain zHostingSolutions 2 6 ,348 07-23-2021, 09:57 AM
Last Post: Nigel
redirect error after letsencrypt + subdomain mizerek 1 5 ,878 08-06-2020, 04:54 AM
Last Post: mizerek
Add on Domains not working but Main domain works luckyviet 2 7 ,815 03-18-2020, 07:38 PM
Last Post: AanaNahum

Forum Jump:


Users browsing this thread: 2 Guest(s)