Plugin Directory

Changeset 850831


Ignore:
Timestamp:
02/03/2014 09:17:02 PM (12 years ago)
Author:
Steveorevo
Message:

Updated support for GoDaddy's non-standard and goofy values.

Location:
desktopserver/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • desktopserver/trunk/desktopserver.php

    r786724 r850831  
    22/**
    33 * @package DesktopServer for WordPress
    4  * @version 1.3.0
     4 * @version 1.4.0
    55 */
    66/*
     
    99Description: DesktopServer for WordPress eases localhost to live server deployment by publishing hosting provider server details via a protected XML-RPC feed to an authorized administrator only. It also provides assisted deployments to hosting providers that support file system direct. For more information, please visit http://serverpress.com/.
    1010Author: Stephen Carroll
    11 Version: 1.3.0
     11Version: 1.4.0
    1212Author URI: http://steveorevo.com/
    1313*/
     
    2323            $this->doc_root = $_SERVER['REAL_DOCUMENT_ROOT'];
    2424        }else{
    25             $this->doc_root = $_SERVER['DOCUMENT_ROOT'];
     25            if (isset($_SERVER['SUBDOMAIN_DOCUMENT_ROOT'])){
     26                $this->doc_root = $_SERVER['SUBDOMAIN_DOCUMENT_ROOT'];
     27            }else{
     28                $this->doc_root = $_SERVER['DOCUMENT_ROOT'];
     29            }
    2630        }
    2731        $this->ds_deploy = $this->doc_root . '/ds-deploy';
  • desktopserver/trunk/readme.txt

    r786724 r850831  
    44Requires at least: 3.0
    55Tested up to: 3.5.1
    6 Stable tag: 1.3.0
     6Stable tag: 1.4.0
    77License: GPLv2 or later
    88
     
    1818
    1919== Changelog ==
     20
     21= 1.4.0 =
     22* Updated support for GoDaddy's non-standard, ever changing, SUBDOMIN_DOCUMENT_ROOT definition for addon domains.
    2023
    2124= 1.3.0 =
Note: See TracChangeset for help on using the changeset viewer.