Plesk 12.x / Linux :: Adding Subdomain To Forwarding Root Domain

Apr 23, 2015

I want to add a subdomain foo.bar.com to a master domain bar.com in the subscription bar.com. Normally this works but if I set the hosting type of the master domain to forward, I cannot add subdomains anymore. If I have already added a subdomain, I cannot change the hosting type of the master domain. Also it is not possible to add a second domain to the subscription anymore.

View 6 Replies


ADVERTISEMENT

Plesk 12.x / Linux :: Warning When Adding New Domain Or Subdomain?

Jan 20, 2015

When i add a Domain or Subdomain through Plesk Panel, I get the following Warning :

Attention: relink-vhost-logs failed: mkdir: cannot create directory `./vps118861.ovh.net/logs': File exists ERROR: Cannot relink logs. Target directory '/var/www/vhosts/vps118861.ovh.net/logs' is in invalid state.

[URL]

I tried the 2 solutions but I still have the error... here are the results of the two commands :

[root@vps118861 logs]# ls -alh
total 2,3M
drwxr-xr-x 16 administrateur root 4,0K 20 janv. 13:59 .

[Code]....

View 2 Replies View Related

Plesk 11.x / Linux :: Domain Forwarding With HTAccess

Jun 14, 2014

I have re-built a website on a new domain. Now I want to redirect http://www.olddomain.com/anything or http://olddomain.anything to www.newdomain. Because the file structure is totally different, I want all redirections to go to the Home Page of newdomain.

Initially, I used Standard forwarding in the Plesk CP but that attempts to keep the filename the same. So www.olddomain.com/wibble tries to go to www.newdomain.com/wibble. But wibble dies not exist on the new domain.

Should I use htaccess with physical hosting instead on olddomain.com? Is the following correct?:

Code:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^olddomain.com [NC]
RewriteRule ^(.*)$ http://www.newdomain.com [R=301,L]

Will that basically cover any request? Anything that people have saved or which appears in Google searches, no matter whether http:// or http://www.

And for neatness on the new domain, I would like to add www to any request like http://newdomain.com/whatever to go to http://www.newdomain.com/whatever which I think means that Google analytics will report more accurately.

So would my htaccess file on newdomain.com be like this?:

Code:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^newdomain.com [NC]
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]

View 3 Replies View Related

Plesk 12.x / Linux :: Adding SSL To IP Number Despite Of Domain Name?

Jun 2, 2015

Is it possible to add a ssl to a IP number despite of domain name?

I would like to know if i can buy a ssl and set a IP on website address...

View 5 Replies View Related

Plesk 12.x / Linux :: Adding New Domain Name Fail?

Nov 23, 2014

Error: IP addresses for mail service of domain xxxxxx.com are not set

View 3 Replies View Related

Plesk 12.x / Linux :: Standard Domain Forwarding Does Not Forward Https Connections

Apr 29, 2015

URL....We are running Plesk 12 on a Linux VPS where we have multiple domains running.Multiple of these domains should redirect from www. domain name. ext to https://ext.domainname.com.This is configured with the Domain forwarding in Plesk, with hosting type Forwarding.But as described in the 2 links provided above, whenever you go to https://www.domain.ext, it does not redirect, and actually shows a Security error, since the domain doesn't have the SSL-certificate installed (because it should redirect to the https://ext.domainname.com).

Clearly we don't want visitors on the website to receive the (incorrect) Security error, and we want all traffic to http(s)://www.domain.ext to be redirected to the appropriate subdomains. allows us to redirect both the https/http connections to the domains, without forcing us to have the domains have a Website hosting add redirect them manually with (for example) .htaccess.

View 1 Replies View Related

Domain Root And Subdomain Structure

Jun 22, 2008

I am a bit confused about domain and sub-domain setup for my website.

I have Wordpress and VBulletin Forum on my website like this:

/www/mywebsite/wordpress
/www/mywebsite/vbulletin

Right now, my domain points to this folder:
[url]

I have a .htaccess file there which redirects it to the wordpress folder i.e.
Redirect permanent /index.php http://www.mywebsite.com/wordpress
DirectoryIndex index.php

But, I would like my domain name point directly to the wordpress folder like this:
[url]

But the problem when i do that is my "VBulletin" forum get's messed up because then:
[url]----------resolves to--------->
[url]

I m thinking to resolve this issues, I will have to add a subdomain for forums like this:
[url]-> [url]

But I am wondering if I do that, won't it fail again, because it will do this:
[url]-----will resolve to----->
[url]

View 5 Replies View Related

Plesk 12.x / Linux :: Easy Way To Convert Subdomain Into Domain?

Apr 7, 2015

I've got a customer that has a website at hisdomain.com . He created a subdomain called dev.hisdomain.com for the new version of his website. Now he wants to take it live. Had he created dev.hisdomain.com as a subscription instead of a subdomain, it would have been easy to "rename" the old site to old.hisdomain.com and then rename the new site to the current name.

Am I going to have to move all the files around at the command line or is there an easier way to switch around the sites? The server in use is CentOS 6.6

I thought that those were my options.

Click to expand...
Click for original message

View 6 Replies View Related

Plesk 12.x / Linux :: Domain / Subdomain - Hosting Type?

Nov 28, 2014

Following configuration given:

Abo with "domain.com" - Hosting Type - Webspace (with E-Mail Services)
Subdomain "sub.domain.com" - Hosting Type - Forward

Customer asked us to activate Forward for "domain.com "to other Domain for 2 weeks - but as soon as a Subdomain points on a Domain - I can NOT change the Hosting Type anymore ... WHY???

If I want to change Hosting Type from Hosting to Forward for some weeks - it always deletes the whole Webspace for the Domain ... ?!?

1) Why can't I change Hosting Type when a Sub-Domain is created?
2) Why can't I tell Plesk to change Hosting Type WITHOUT deleting the whole Webspace ...

View 1 Replies View Related

Plesk 11.x / Linux :: Webmail On Normal Domain Without Separate Subdomain

Sep 1, 2014

change the webmail from Plesk over

/usr/local/psa/admin/conf/templates/custom/domainWebmail.php

thats working without a problem if i change the Webmail Subdomain from one to another.

But i want to change the webmail from

webmail.domain.tld

to

domain.tld/webmail

The following change in domainWebmail.php does not work:

ServerAlias "<?php echo $VAR->domain->asciiName ?>/webmail"
<?php foreach ($VAR->domain->mailAliases AS $alias): ?>
ServerAlias "<?php echo $alias->asciiName ?>/webmail"
<?php endforeach; ?>

View 1 Replies View Related

Plesk 12.x / Linux :: How To Install Wildcard SSL For Domain / Subdomain Hosted On Server

Apr 13, 2015

I am running a CentOS 6.5, 64-bit server with Plesk 12.0.18, and need to install a wildcard SSL for one of the domains/sub domains hosted on this server.

So you have the csr and private key installed (and domain.crt?), you just need to open..

1. COMODORSAAddTrustCA
2. COMODORSADomainValidationSecureServerCA

On your desktop and combine the two files into a new intermediate.crt file and upload that as the CA File.

But I'm not sure why you can't add it as text.

Click to expand...
Click for original message

View 7 Replies View Related

Plesk 12.x / Linux :: Making Subdomain Serve Files From Same Directory As Main Domain

Sep 28, 2014

I'm setting up a SAAS service which is built on top of Laravel. To put it simply the service itself knows whether its being called from a sub.example.com or just example.com and serves a correct response accordingly. So going to sub.example.com will use the same index.php file as example.com but the routes and controllers within the application will provide a different response. sub.example.com will show a tenant login page where as example.com will show a new tenant subscription page or something else.

So when someone new subscribes I add a new entry to the database with a subdomain name for them and when a request comes from that subdomain and they are logged in it will show them their information. Easy right.

There is a problem though with setting it up with Plesk. When I add a wildcard subdomain, it will look for /subdomains/sub/ for the files which is a bit problematic since I want it to serve the files from the same place as the domain example.com.

Is there a way to configure that so that regardless of the subdomain it will try and serve the exact same content as my main domain?

View 2 Replies View Related

Adding A Linux Machine To Windows Domain Controller

Oct 24, 2008

We have a domain portal controller for windows. All the machines in the n/w are connected to it. So, when ever an user enters the user name and password it gets authenticated from the domain portal controller. So, my login can be accessed anywhere in the netowrk.

Example : my login is sabarishks which can be used in any machine under this domain controller.

But, if the system is installed with both linux and windows only windows username will be authenticated using the domain controller. Whereas, the linux users will work with in the system using /etc/shadow file. Hope, I am clear so far.

The requirement is same as above. The authentication mechanism for linux should work as windows. When ever an user is entered with a username and passwd, it should get authenticated from domain controller.

I mean, the user created in a windows machine should be used for linux login also. More importantly, It should work in all systems.

Which technology can be used to do this? Samba,Ldap, NFs or what?

View 1 Replies View Related

Plesk 11.x / Windows :: Adding Domain Alias

Jun 10, 2013

I use Plesk 11.0.9 Update #53 on Windows 2008 SP2. Nameservers and mail server are external servers and fully working.I have a 'fake' web site (roundcube. local) in which I've successfully installed roundcube and I would use it as webmail.I've added a domain alias 'webmail2.domain.com' and it works like a charm.Now I've moved the main domain "domain.com" on the plesk server and I would like to add a 'webmail.domain.com' domain alias to the 'roundcube.local' website.If I try to do it, I receive this error:

"Error: Wrong prefix for domain alias"..Even if I try to add webmail.anotherdomain.com (not installed on the Plesk server) I get the same error.The error shows up either the host is configured to the Plesk machine or not.If I set the binding directly in IIS it works but I'd like to use the plesk to do this.

View 3 Replies View Related

Plesk 11.x / Windows :: Adding Newly Registered Domain - Edit DNS?

Apr 25, 2014

I recently purchased a dedicated server with Godaddy, I also registered a domain with same Godaddy.

Now when I tried to add a new domain in plesk, I got a warning message that "the domain is pointed to 192.198.XX.XX" which is different from my dedicated server IP. The message also says I should edit the DNS.

Now my question is What do I need to edit from the default dns plesk has assigned to my domain? Do I need to use the domain's default IP. I want to be able to host multiple website on my server...

View 2 Replies View Related

Plesk 11.x / Linux :: Email Forwarding Is Not Working

May 13, 2014

OS: CentOS 6.5 (Final)
Panel version: 11.0.9

I can receive email and check them via Horde but i'm unable to get them forwarded to my gmail account.Is there anything i can check/do ?I'm an ex-cpanel user.

View 4 Replies View Related

Plesk 12.x / Linux :: Forwarding Emails Causes Softfail On Gmail

Feb 21, 2015

I setup an email account into my Plesk 12 to automatic forwarding all emails to an gmail address. But Gmail put all mails received into the Spam folder.

I revised the mail Header and its a SPF softfail causes because my server is not rewritting the sender envelope.

How can I activate SRS on my Plesk

View 5 Replies View Related

Plesk 12.x / Linux :: Mail Forwarding Failed After Update

Sep 16, 2014

I update my plesk 11,5 to 12.And I activate (limit control for smtp)After this action the email forwarding fails in all domains of plesk.This is the mail system at host fsyc.org. You can delete your own text from the attached returned message.

Reporting-MTA: dns; fsyc.org
X-Postfix-Queue-ID: 5B51E2E800BC
X-Postfix-Sender: rfc822; rbuila@robertobuil.com
Arrival-Date: Tue, 16 Sep 2014 14:21:10 +0200 (CEST)

[code].....

View 4 Replies View Related

Plesk 12.x / Linux :: Adding Subscriptions - Cannot Customize It

May 6, 2015

I seem to be having a strange problem with Plesk 12, after adding about 23 domains, i cant seem to add any more domains.

While adding the domain, it just keeps syncing, and then when i click on the subscriptions i see the domain has been added, but i cannot customise it.

View 3 Replies View Related

Plesk 11.x / Linux :: Adding Mcrypt Extension To PHP?

Feb 11, 2013

I would like to install mcrypt extension on my server and i don't find procedure .

My version is :

OSCentOS 6.3 (Final)
Version de Parallels Panel11.0.9 Mettre à jour #36, dernière mise à jour à Fév 8, 2013 06:32 PM

View 19 Replies View Related

Plesk 12.x / Linux :: 5.3.3 Cgi And Fast-cgi Broke Down After Adding PHP 5.5.13

Jul 16, 2014

According to de Plesk Administrator Guide and according to the kb article: [URL] ...., Plesk Panel is suitable to enable multiple php versions After I performed the steps mentioned in the kb article, all seemed fine until somehow php-cgi and php-fcgi broke down after

Code:
# service httpd restart

After this event, all websites hosted on this particular the server only work running php as an apache module.

I am running Pleks Panel 12.0.18 #7 on top of CenOs 6.5 on this particular server, which means php version 5.3.3 is installed by default. PHP 5.3.3 also is was the php version for the "custom: false" php handlers (id's: cgi, fastcgi, module). Somehow all php handlers look like this:

Code:

# /usr/local/psa/bin/php_handler --list
id: display name: full version: version: type: cgi-bin: php-cli: php.ini: custom:
cgi 5.5.13 5.5.13 5.5 cgi /usr/bin/php-cgi /etc/php.ini false
fastcgi 5.5.13 5.5.13 5.5 fastcgi /usr/bin/php-cgi /etc/php.ini false

[Code]....

View 7 Replies View Related

Plesk 11.x / Linux :: Disabling Email Forwarding Configured In Accounts

Aug 23, 2014

Many of our clients create e-mail accounts that forward incoming e-mail to mailboxes hosted on other e-mail services. e.g., Gmail.

Lately, though, a handful of these accounts have been receiving a lot of spam (i.e., UCE) and that's been causing a lot of damage to our reputation with these other e-mail services because the message that's being forwarded appears to have originated from our servers.

Code:
<someuser@gmail.com>: host gmail-smtp-in.l.google.com[64.233.183.27]
said: 552-5.7.0 This message was blocked because its content presents a
potential 552-5.7.0 security issue. Please visit 552-5.7.0
http://support.google.com/mail/bin/answer.py?answer=6590 to review our 552
5.7.0 message content and attachment content guidelines.
g20si28780491ici.46 - gsmtp (in reply to end of DATA command)

Is there some way to...

Find accounts that are configured to forward to gmail?

Disable forwarding in accounts that are configured to forward to gmail? 

View 4 Replies View Related

Plesk 12.x / Linux :: SMTP Traffic - Forwarding Email Addresses

Nov 11, 2014

I have two sites that register a high amount to SMTP traffic. Both sited have only forwarding email addresses.

Do forwarding addresses accumulate SMTP traffic on the log?

Also, if a forwarding email is created without a mailbox is it necessary to add a password so that "others" cannot use the blank SMTP server to send email out?

View 2 Replies View Related

Plesk 12.x / Linux :: Error Changing Type From Forwarding To Web Hosting

Dec 6, 2014

I have installed Plesk 12.0.18 on my server and want to change the hosting-type from "Forwarding" to "Web hosting". I change the type via "Websites & Domains" view (see attachments).

After I insert username and password, I get following error message:

Some fields are empty or contain an improper value. ('home' = '')

Deleting the domain and creating it from scratch is a bad option. I would have to create all e-mail accounts and migrate the data.

View 7 Replies View Related

Plesk 11.x / Windows :: Promote Subdomain To Full Domain?

Feb 19, 2013

I've got a plesk 11 server and I've created a subdomain for a client but I need to have this as a full domain for the SSL certificate. Is there a way to convert a subdomain to a full domain without deleting the subdomain and creating a new hosting subscription?

View 2 Replies View Related

Plesk 11.x / Windows :: Promote Subdomain To Full Domain

Sep 18, 2012

I have a client that has a subdomain shop.xxxx.com. This subdomain needs its own SSL and own IP address for it. Right now its listed as a subdomain under xxxx.com. Also, the xxxx.com has another SSL and IP.

Since there doesnt seem to be any way to do this in plesk, I had to create the subdomain as a regular subdomain and then manually manipulate IIS to change the IP and add the ssl mapping.

If I try to add a new domain, it automatically tags it with the WWW.

Is there any way to just create a new domain without the www infront of it, so I can move shop.xxxx.com from a subdomain to a primary domain that stands alone...

I haven't played around much with the new iis 7+, but in older iis, you needed a dedicated IP for each SSL certificate.

View 3 Replies View Related

Plesk 12.x / Linux :: Adding SPDY Under All Nginx Configuration

Dec 27, 2014

I would like to add spdy under all nginx configuration as below

listen 443 ssl spdy;

How to add them globally ?

View 4 Replies View Related

Plesk 12.x / Linux :: Adding Subscription / Custom Changes In PHP Settings

Aug 25, 2014

When adding a subscription with a certain plan, I get this error"Error: The plan was not applied: Custom changes in PHP settings" almost instantly after I initiated the creation of the new subscription. Another service plan doesn't have the issue, and though I tried finding the reason why one works while the other doesn't I simply wasn't able to. The service plan in question is used for over 40 others without a problem just when I select it for a new subscription, I get the mentioned error message.I am using Plesk 12 on Linux, all latest updates installed.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved