Search results

  1. J

    session between domain and subdomain

    Hi, i have a domain.com and a secure.domain.com subdomain, i need to share php session variables between them, The code i use is <?php ini_set('session.cookie_domain', '.domain.com' ); $some_name = session_name("domain"); session_set_cookie_params(0, '/', '.domain.com')...
  2. J

    Problem changing root of subdomain in plesk 11.5 with apache+nginx

    nginx root change in extra nginx directives of plesk 11.5 fails partially i redirected secure.domain.com changed its root in extra nginx directives in plesk 11.5 to point to the folder of its main domain and * When i go to secure.domain.com i get a 403 forbidden: 2014/03/21 23:37:19...
  3. J

    Problem changing root of subdomain in plesk 11.5 with apache+nginx

    dear friends, im a bit desperate about this issue, i hope you can help me I have a centos 6 , plesk 11.5 latest version all updates in, i have a domain.com set on /var/www/vhosts/domain.com/httpdocs now i have created a subdomain secure.domain.com, with cname pointings to main one...
  4. J

    Nginx configuration for vhosts

    dear friends so i have created a subdomain secure.domain.com and i pointed it to the main folder of domain.com, i created custom vhost.conf for apache and that works great, but nginx is pointing still to wrong folder, logical as i can see that the last_nginx.conf file is pointing to wrong...
  5. J

    Nginx configuration for vhosts

    i now tried something different, in plesk 11.5 i went to web server settings of the subdomain and in extra nginx directives i added location ~ /$ { root /var/www/vhosts/domain.com/httpdocs; } that changed that now when going to secure.domain.com instead of getting a 404 not found, i get a...
Back
Top