Ejemplo n.º 1
0
 /**
  * @return bool
  */
 public function envCheckPath()
 {
     // PHP_SELF isn't available sometimes, such as when PHP is CGI but
     // cgi.fix_pathinfo is disabled. In that case, fall back to SCRIPT_NAME
     // to get the path to the current script... hopefully it's reliable. SIGH
     $path = false;
     if (!empty($_SERVER['PHP_SELF'])) {
         $path = $_SERVER['PHP_SELF'];
     } elseif (!empty($_SERVER['SCRIPT_NAME'])) {
         $path = $_SERVER['SCRIPT_NAME'];
     }
     if ($path !== false) {
         $uri = preg_replace('{^(.*)/(mw-)?config.*$}', '$1', $path);
         $this->setVar('wgScriptPath', $uri);
     } else {
         $this->showError('config-no-uri');
         return false;
     }
     return parent::envCheckPath();
 }
Ejemplo n.º 2
0
 public function envCheckPath()
 {
     if (!$this->specifiedScriptPath) {
         $this->showMessage('config-no-cli-uri', $this->getVar("wgScriptPath"));
     }
     return parent::envCheckPath();
 }
Ejemplo n.º 3
0
 /**
  * @return bool
  */
 public function envCheckPath()
 {
     // PHP_SELF isn't available sometimes, such as when PHP is CGI but
     // cgi.fix_pathinfo is disabled. In that case, fall back to SCRIPT_NAME
     // to get the path to the current script... hopefully it's reliable. SIGH
     $path = false;
     if (!empty($_SERVER['PHP_SELF'])) {
         $path = $_SERVER['PHP_SELF'];
     } elseif (!empty($_SERVER['SCRIPT_NAME'])) {
         $path = $_SERVER['SCRIPT_NAME'];
     }
     if ($path !== false) {
         $scriptPath = preg_replace('{^(.*)/(mw-)?config.*$}', '$1', $path);
         $scriptExtension = $this->getVar('wgScriptExtension');
         $this->setVar('wgScriptPath', "{$scriptPath}");
         // Update variables set from Setup.php that are derived from wgScriptPath
         $this->setVar('wgScript', "{$scriptPath}/index{$scriptExtension}");
         $this->setVar('wgLoadScript', "{$scriptPath}/load{$scriptExtension}");
         $this->setVar('wgStylePath', "{$scriptPath}/skins");
         $this->setVar('wgLocalStylePath', "{$scriptPath}/skins");
         $this->setVar('wgExtensionAssetsPath', "{$scriptPath}/extensions");
         $this->setVar('wgUploadPath', "{$scriptPath}/images");
     } else {
         $this->showError('config-no-uri');
         return false;
     }
     return parent::envCheckPath();
 }