This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

subdomain with www is not working !!!!
#11
RE: subdomain with www is not working !!!!
(08-10-2018, 04:41 PM)yusha Wrote: 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 www.subdomain.yoursite.com as an individual subdmoain 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.

Nice, glad you figured it out. I'll be testing it later after I finish my work.
Good day!
***********************************************
SAMUEL AVOLA MUNGUJAKISA         *
CEO, Bero Computers                         *
www.berocomputers.com          *
+256754086797                           *
+256780585402                     *
*****************************  *
Reply
Thanks given by:
#12
RE: subdomain with www is not working !!!!
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!

There should already be an alias designated in the sub domain's httpd-vhost.conf entry when it is created, similar to:
Code:
# DOMAIN: sub.domain.com
<virtualhost *:80>
ServerName sub.domain.com
ServerAlias  www.sub.domain.com
ServerAdmin webmsater@domain.com

Which should be handling the call for www.domain.com. If your DNS is not proper, it will not work.
-TGates - Project Council

SEARCH the Forums or read the DOCUMENTATION before posting!
Support Sentora and Donate: HERE

Find my support or modules useful? Donate to TGates HERE
Developers and code testers needed!
Contact TGates for more information
Reply
Thanks given by: xtiko
#13
RE: subdomain with www is not working !!!!
(08-11-2018, 10:35 AM)TGates Wrote: 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!

There should already be an alias designated in the sub domain's httpd-vhost.conf entry when it is created, similar to:
Code:
# DOMAIN: sub.domain.com
<virtualhost *:80>
ServerName sub.domain.com
ServerAlias  www.sub.domain.com
ServerAdmin webmsater@domain.com

Which should be handling the call for www.domain.com. If your DNS is not proper, it will not work.

It didn’t added that alies for the subdomains automatically. I tried to add it manually while editing the vhost file. It worked but temporarily. When I ran the deamon it just resets back. So that’s how it worked for me and I am okay with it.
Reply
Thanks given by:
#14
RE: subdomain with www is not working !!!!
(08-06-2018, 05:07 AM)yusha Wrote: Hello guys!

So far all the domains I add are actually working with www but not the subdomians.

I am using cloudflare and when I create a subdomain I always create the subdomain.mysite.com and
Code:
www.subdomain.mysite.com
two A record first in cloudflare and then add the subdomain in sentora panel. 

I have also tried with
Code:
www.subdomain to cname mysite.com
Doesn't works!

Is there any solution for this? I wanted my subdomain.mysite.com to work with www.subdomain.mysite.com as well.

Tested and working with Godaddy DNS and Sentora DNS, not sure for cloudflare:

You must create a CNAME entry for www.subdomain and point it at the main domain (or simply by adding an @)


Something like this:

Code:
Type       Name       Value      TTL
CNAME  www.subdomain    @    3600 (1 Hour)

And do not forget! It may take up to 24 hours to become active!
-TGates - Project Council

SEARCH the Forums or read the DOCUMENTATION before posting!
Support Sentora and Donate: HERE

Find my support or modules useful? Donate to TGates HERE
Developers and code testers needed!
Contact TGates for more information
Reply
Thanks given by:


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

Forum Jump:


Users browsing this thread: 1 Guest(s)