• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP wfIniGetBool函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中wfIniGetBool函数的典型用法代码示例。如果您正苦于以下问题:PHP wfIniGetBool函数的具体用法?PHP wfIniGetBool怎么用?PHP wfIniGetBool使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了wfIniGetBool函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: isEnabled

 /**
  * Returns true if uploads are enabled.
  * Can be override by subclasses.
  * @return bool
  */
 public static function isEnabled()
 {
     global $wgEnableUploads;
     if (!$wgEnableUploads) {
         return false;
     }
     # Check php's file_uploads setting
     return wfIsHHVM() || wfIniGetBool('file_uploads');
 }
开发者ID:pirater,项目名称:mediawiki,代码行数:14,代码来源:UploadBase.php


示例2: provideGeneralEncoding

 public static function provideGeneralEncoding()
 {
     // Sigh. Docs claim it's a boolean, but can have values 0, 1, or 2.
     // Fortunately wfIniGetBool does the right thing.
     if (wfIniGetBool('xdebug.overload_var_dump')) {
         return array(array(array(), 'Cannot test ApiFormatDump when xDebug overloads var_dump', array('SKIP' => true)));
     }
     $warning = "\n  [\"warnings\"]=>\n  array(1) {\n    [\"dump\"]=>\n    array(1) {\n      [\"*\"]=>\n" . "      string(64) \"format=dump has been deprecated. Please use format=json instead.\"\n" . "    }\n  }";
     return array(array(array(null), "array(2) {{$warning}\n  [0]=>\n  NULL\n}\n"), array(array(true), "array(2) {{$warning}\n  [0]=>\n  string(0) \"\"\n}\n"), array(array(false), "array(1) {{$warning}\n}\n"), array(array(true, ApiResult::META_BC_BOOLS => array(0)), "array(2) {{$warning}\n  [0]=>\n  bool(true)\n}\n"), array(array(false, ApiResult::META_BC_BOOLS => array(0)), "array(2) {{$warning}\n  [0]=>\n  bool(false)\n}\n"), array(array(42), "array(2) {{$warning}\n  [0]=>\n  int(42)\n}\n"), array(array(42.5), "array(2) {{$warning}\n  [0]=>\n  float(42.5)\n}\n"), array(array(1.0E+42), "array(2) {{$warning}\n  [0]=>\n  float(1.0E+42)\n}\n"), array(array('foo'), "array(2) {{$warning}\n  [0]=>\n  string(3) \"foo\"\n}\n"), array(array('fóo'), "array(2) {{$warning}\n  [0]=>\n  string(4) \"fóo\"\n}\n"), array(array(array()), "array(2) {{$warning}\n  [0]=>\n  array(0) {\n  }\n}\n"), array(array(array(1)), "array(2) {{$warning}\n  [0]=>\n  array(1) {\n    [0]=>\n    int(1)\n  }\n}\n"), array(array(array('x' => 1)), "array(2) {{$warning}\n  [0]=>\n  array(1) {\n    [\"x\"]=>\n    int(1)\n  }\n}\n"), array(array(array(2 => 1)), "array(2) {{$warning}\n  [0]=>\n  array(1) {\n    [2]=>\n    int(1)\n  }\n}\n"), array(array((object) array()), "array(2) {{$warning}\n  [0]=>\n  array(0) {\n  }\n}\n"), array(array(array(1, ApiResult::META_TYPE => 'assoc')), "array(2) {{$warning}\n  [0]=>\n  array(1) {\n    [0]=>\n    int(1)\n  }\n}\n"), array(array(array('x' => 1, ApiResult::META_TYPE => 'array')), "array(2) {{$warning}\n  [0]=>\n  array(1) {\n    [0]=>\n    int(1)\n  }\n}\n"), array(array(array('x' => 1, ApiResult::META_TYPE => 'kvp')), "array(2) {{$warning}\n  [0]=>\n  array(1) {\n    [\"x\"]=>\n    int(1)\n  }\n}\n"), array(array(array('x' => 1, ApiResult::META_TYPE => 'BCkvp', ApiResult::META_KVP_KEY_NAME => 'key')), "array(2) {{$warning}\n  [0]=>\n  array(1) {\n    [0]=>\n    array(2) {\n      [\"key\"]=>\n      string(1) \"x\"\n      [\"*\"]=>\n      int(1)\n    }\n  }\n}\n"), array(array(array('x' => 1, ApiResult::META_TYPE => 'BCarray')), "array(2) {{$warning}\n  [0]=>\n  array(1) {\n    [\"x\"]=>\n    int(1)\n  }\n}\n"), array(array(array('a', 'b', ApiResult::META_TYPE => 'BCassoc')), "array(2) {{$warning}\n  [0]=>\n  array(2) {\n    [0]=>\n    string(1) \"a\"\n    [1]=>\n    string(1) \"b\"\n  }\n}\n"), array(array('content' => 'foo', ApiResult::META_CONTENT => 'content'), "array(2) {{$warning}\n  [\"*\"]=>\n  string(3) \"foo\"\n}\n"), array(array('foo' => 'foo', ApiResult::META_BC_SUBELEMENTS => array('foo')), "array(2) {{$warning}\n  [\"foo\"]=>\n  array(1) {\n    [\"*\"]=>\n    string(3) \"foo\"\n  }\n}\n"));
 }
开发者ID:eliagbayani,项目名称:LiteratureEditor,代码行数:10,代码来源:ApiFormatDumpTest.php


示例3: isEnabled

 /**
  * Returns true if uploads are enabled.
  * Can be override by subclasses.
  */
 public static function isEnabled()
 {
     global $wgEnableUploads;
     if (!$wgEnableUploads) {
         return false;
     }
     # Check php's file_uploads setting
     if (!wfIniGetBool('file_uploads')) {
         return false;
     }
     return true;
 }
开发者ID:GodelDesign,项目名称:Godel,代码行数:16,代码来源:UploadBase.php


示例4: factory

 public static function factory($url, $options = null)
 {
     if (!Http::$httpEngine) {
         Http::$httpEngine = function_exists('curl_init') ? 'curl' : 'php';
     } elseif (Http::$httpEngine == 'curl' && !function_exists('curl_init')) {
         throw new MWException(__METHOD__ . ': curl (http://php.net/curl) is not installed, but' . 'Http::$httpEngine is set to "curl"');
     }
     switch (Http::$httpEngine) {
         case 'curl':
             return new CurlHttpRequestTester($url, $options);
         case 'php':
             if (!wfIniGetBool('allow_url_fopen')) {
                 throw new MWException(__METHOD__ . ': allow_url_fopen needs to be enabled for pure PHP' . ' http requests to work. If possible, curl should be used instead. See http://php.net/curl.');
             }
             return new PhpHttpRequestTester($url, $options);
         default:
     }
 }
开发者ID:nischayn22,项目名称:mediawiki-core,代码行数:18,代码来源:HttpTest.php


示例5: setup

 function setup()
 {
     putenv("http_proxy");
     /* Remove any proxy env var, so curl doesn't get confused */
     if (is_array(self::$content)) {
         return;
     }
     self::$has_curl = function_exists('curl_init');
     self::$has_fopen = wfIniGetBool('allow_url_fopen');
     if (!file_exists("/usr/bin/curl")) {
         $this->markTestIncomplete("This test requires the curl binary at /usr/bin/curl.\t If you have curl, please file a bug on this test, or, better yet, provide a patch.");
     }
     $content = tempnam(wfTempDir(), "");
     $headers = tempnam(wfTempDir(), "");
     if (!$content && !$headers) {
         die("Couldn't create temp file!");
     }
     // This probably isn't the best test for a proxy, but it works on my system!
     system("curl -0 -o {$content} -s " . self::$proxy);
     $out = file_get_contents($content);
     if ($out) {
         self::$has_proxy = true;
     }
     /* Maybe use wget instead of curl here ... just to use a different codebase? */
     foreach ($this->test_geturl as $u) {
         system("curl -0 -s -D {$headers} '{$u}' -o {$content}");
         self::$content["GET {$u}"] = file_get_contents($content);
         self::$headers["GET {$u}"] = file_get_contents($headers);
     }
     foreach ($this->test_requesturl as $u) {
         system("curl -0 -s -X POST -H 'Content-Length: 0' -D {$headers} '{$u}' -o {$content}");
         self::$content["POST {$u}"] = file_get_contents($content);
         self::$headers["POST {$u}"] = file_get_contents($headers);
     }
     foreach ($this->test_posturl as $u => $postData) {
         system("curl -0 -s -X POST -d '{$postData}' -D {$headers} '{$u}' -o {$content}");
         self::$content["POST {$u} => {$postData}"] = file_get_contents($content);
         self::$headers["POST {$u} => {$postData}"] = file_get_contents($headers);
     }
     unlink($content);
     unlink($headers);
 }
开发者ID:amjadtbssm,项目名称:website,代码行数:42,代码来源:HttpTest.php


示例6: testInstall

 public function testInstall()
 {
     $reset = $this->getResetter($rProp);
     $rProp->setValue(null);
     session_write_close();
     ini_set('session.use_cookies', 1);
     ini_set('session.use_trans_sid', 1);
     $store = new \HashBagOStuff();
     $logger = new \TestLogger();
     $manager = new SessionManager(array('store' => $store, 'logger' => $logger));
     $this->assertFalse(PHPSessionHandler::isInstalled());
     PHPSessionHandler::install($manager);
     $this->assertTrue(PHPSessionHandler::isInstalled());
     $this->assertFalse(wfIniGetBool('session.use_cookies'));
     $this->assertFalse(wfIniGetBool('session.use_trans_sid'));
     $this->assertNotNull($rProp->getValue());
     $priv = \TestingAccessWrapper::newFromObject($rProp->getValue());
     $this->assertSame($manager, $priv->manager);
     $this->assertSame($store, $priv->store);
     $this->assertSame($logger, $priv->logger);
 }
开发者ID:admonkey,项目名称:mediawiki,代码行数:21,代码来源:PHPSessionHandlerTest.php


示例7: sendInternal


//.........这里部分代码省略.........
     }
     if ($mime === null) {
         // sending text only, either deliberately or as a fallback
         if (wfIsWindows()) {
             $body = str_replace("\n", "\r\n", $body);
         }
         $headers['MIME-Version'] = '1.0';
         $headers['Content-type'] = is_null($contentType) ? 'text/plain; charset=UTF-8' : $contentType;
         $headers['Content-transfer-encoding'] = '8bit';
     }
     // allow transformation of MIME-encoded message
     if (!Hooks::run('UserMailerTransformMessage', array($to, $from, &$subject, &$headers, &$body, &$error))) {
         if ($error) {
             return Status::newFatal('php-mail-error', $error);
         } else {
             return Status::newFatal('php-mail-error-unknown');
         }
     }
     $ret = Hooks::run('AlternateUserMailer', array($headers, $to, $from, $subject, $body));
     if ($ret === false) {
         // the hook implementation will return false to skip regular mail sending
         return Status::newGood();
     } elseif ($ret !== true) {
         // the hook implementation will return a string to pass an error message
         return Status::newFatal('php-mail-error', $ret);
     }
     if (is_array($wgSMTP)) {
         // Check if pear/mail is already loaded (via composer)
         if (!class_exists('Mail')) {
             // PEAR MAILER
             if (!stream_resolve_include_path('Mail.php')) {
                 throw new MWException('PEAR mail package is not installed');
             }
             require_once 'Mail.php';
         }
         MediaWiki\suppressWarnings();
         // Create the mail object using the Mail::factory method
         $mail_object =& Mail::factory('smtp', $wgSMTP);
         if (PEAR::isError($mail_object)) {
             wfDebug("PEAR::Mail factory failed: " . $mail_object->getMessage() . "\n");
             MediaWiki\restoreWarnings();
             return Status::newFatal('pear-mail-error', $mail_object->getMessage());
         }
         wfDebug("Sending mail via PEAR::Mail\n");
         $headers['Subject'] = self::quotedPrintable($subject);
         // When sending only to one recipient, shows it its email using To:
         if (count($to) == 1) {
             $headers['To'] = $to[0]->toString();
         }
         // Split jobs since SMTP servers tends to limit the maximum
         // number of possible recipients.
         $chunks = array_chunk($to, $wgEnotifMaxRecips);
         foreach ($chunks as $chunk) {
             $status = self::sendWithPear($mail_object, $chunk, $headers, $body);
             // FIXME : some chunks might be sent while others are not!
             if (!$status->isOK()) {
                 MediaWiki\restoreWarnings();
                 return $status;
             }
         }
         MediaWiki\restoreWarnings();
         return Status::newGood();
     } else {
         // PHP mail()
         if (count($to) > 1) {
             $headers['To'] = 'undisclosed-recipients:;';
         }
         $headers = self::arrayToHeaderString($headers, $endl);
         wfDebug("Sending mail via internal mail() function\n");
         self::$mErrorString = '';
         $html_errors = ini_get('html_errors');
         ini_set('html_errors', '0');
         set_error_handler('UserMailer::errorHandler');
         try {
             $safeMode = wfIniGetBool('safe_mode');
             foreach ($to as $recip) {
                 if ($safeMode) {
                     $sent = mail($recip, self::quotedPrintable($subject), $body, $headers);
                 } else {
                     $sent = mail($recip, self::quotedPrintable($subject), $body, $headers, $extraParams);
                 }
             }
         } catch (Exception $e) {
             restore_error_handler();
             throw $e;
         }
         restore_error_handler();
         ini_set('html_errors', $html_errors);
         if (self::$mErrorString) {
             wfDebug("Error sending mail: " . self::$mErrorString . "\n");
             return Status::newFatal('php-mail-error', self::$mErrorString);
         } elseif (!$sent) {
             // mail function only tells if there's an error
             wfDebug("Unknown error sending mail\n");
             return Status::newFatal('php-mail-error-unknown');
         } else {
             return Status::newGood();
         }
     }
 }
开发者ID:rrameshs,项目名称:mediawiki,代码行数:101,代码来源:UserMailer.php


示例8: startSession

 /**
  * Start the PHP session. This may be called before execute() to start the PHP session.
  *
  * @return bool
  */
 public function startSession()
 {
     if (wfIniGetBool('session.auto_start') || session_id()) {
         // Done already
         return true;
     }
     $this->phpErrors = array();
     set_error_handler(array($this, 'errorHandler'));
     session_start();
     restore_error_handler();
     if ($this->phpErrors) {
         $this->showError('config-session-error', $this->phpErrors[0]);
         return false;
     }
     return true;
 }
开发者ID:Grprashanthkumar,项目名称:ColfusionWeb,代码行数:21,代码来源:WebInstaller.php


示例9: envCheckSafeMode

 /**
  * Environment check for safe_mode.
  */
 protected function envCheckSafeMode()
 {
     if (wfIniGetBool('safe_mode')) {
         $this->setVar('_SafeMode', true);
         $this->showMessage('config-safe-mode');
     }
 }
开发者ID:GodelDesign,项目名称:Godel,代码行数:10,代码来源:Installer.php


示例10: execute

 /**
  * Start doing stuff
  * @access public
  */
 function execute()
 {
     global $wgUser, $wgOut;
     global $wgEnableUploads;
     # Check php's file_uploads setting
     if (!wfIniGetBool('file_uploads')) {
         $wgOut->showErrorPage('uploaddisabled', 'php-uploaddisabledtext', array($this->mDesiredDestName));
         return;
     }
     # Check uploading enabled
     if (!$wgEnableUploads) {
         $wgOut->showErrorPage('uploaddisabled', 'uploaddisabledtext', array($this->mDesiredDestName));
         return;
     }
     # Check permissions
     if (!$wgUser->isAllowed('upload')) {
         if (!$wgUser->isLoggedIn()) {
             $wgOut->showErrorPage('uploadnologin', 'uploadnologintext');
         } else {
             $wgOut->permissionRequired('upload');
         }
         return;
     }
     # Check blocks
     if ($wgUser->isBlocked()) {
         $wgOut->blockedPage();
         return;
     }
     if (wfReadOnly()) {
         $wgOut->readOnlyPage();
         return;
     }
     if ($this->mReUpload) {
         if (!$this->unsaveUploadedFile()) {
             return;
         }
         # Because it is probably checked and shouldn't be
         $this->mIgnoreWarning = false;
         $this->mainUploadForm();
     } else {
         if ('submit' == $this->mAction || $this->mUploadClicked) {
             $this->processUpload();
         } else {
             $this->mainUploadForm();
         }
     }
     $this->cleanupTempFile();
 }
开发者ID:josephdye,项目名称:wikireader,代码行数:52,代码来源:SpecialUpload.php


示例11: getShellLocale

function getShellLocale($wikiLang)
{
    # Give up now if we're in safe mode or open_basedir
    # It's theoretically possible but tricky to work with
    if (wfIniGetBool("safe_mode") || ini_get('open_basedir') || !function_exists('exec')) {
        return false;
    }
    $os = php_uname('s');
    $supported = array('Linux', 'SunOS', 'HP-UX');
    # Tested these
    if (!in_array($os, $supported)) {
        return false;
    }
    # Get a list of available locales
    $lines = $ret = false;
    $lines = wfShellExec('/usr/bin/locale -a', $ret, true);
    if ($ret) {
        return false;
    }
    $lines = wfArrayMap('trim', explode("\n", $lines));
    $candidatesByLocale = array();
    $candidatesByLang = array();
    foreach ($lines as $line) {
        if ($line === '') {
            continue;
        }
        if (!preg_match('/^([a-zA-Z]+)(_[a-zA-Z]+|)\\.(utf8|UTF-8)(@[a-zA-Z_]*|)$/i', $line, $m)) {
            continue;
        }
        list($all, $lang, $territory, $charset, $modifier) = $m;
        $candidatesByLocale[$m[0]] = $m;
        $candidatesByLang[$lang][] = $m;
    }
    # Try the current value of LANG
    if (isset($candidatesByLocale[getenv('LANG')])) {
        return getenv('LANG');
    }
    # Try the most common ones
    $commonLocales = array('en_US.UTF-8', 'en_US.utf8', 'de_DE.UTF-8', 'de_DE.utf8');
    foreach ($commonLocales as $commonLocale) {
        if (isset($candidatesByLocale[$commonLocale])) {
            return $commonLocale;
        }
    }
    # Is there an available locale in the Wiki's language?
    if (isset($candidatesByLang[$wikiLang])) {
        $m = reset($candidatesByLang[$wikiLang]);
        return $m[0];
    }
    # Are there any at all?
    if (count($candidatesByLocale)) {
        $m = reset($candidatesByLocale);
        return $m[0];
    }
    # Give up
    return false;
}
开发者ID:platform-project,项目名称:platform-project,代码行数:57,代码来源:Installer.php


示例12: get_class

    $wgAuth = new MediaWiki\Auth\AuthManagerAuthPlugin();
    Hooks::run('AuthPluginSetup', [&$wgAuth]);
}
if ($wgAuth && !$wgAuth instanceof MediaWiki\Auth\AuthManagerAuthPlugin) {
    MediaWiki\Auth\AuthManager::singleton()->forcePrimaryAuthenticationProviders([new MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider(['authoritative' => false]), new MediaWiki\Auth\AuthPluginPrimaryAuthenticationProvider($wgAuth), new MediaWiki\Auth\LocalPasswordPrimaryAuthenticationProvider(['authoritative' => true])], '$wgAuth is ' . get_class($wgAuth));
}
// Set up the session
$ps_session = Profiler::instance()->scopedProfileIn($fname . '-session');
/**
 * @var MediaWiki\Session\SessionId|null $wgInitialSessionId The persistent
 * session ID (if any) loaded at startup
 */
$wgInitialSessionId = null;
if (!defined('MW_NO_SESSION') && !$wgCommandLineMode) {
    // If session.auto_start is there, we can't touch session name
    if ($wgPHPSessionHandling !== 'disable' && !wfIniGetBool('session.auto_start')) {
        session_name($wgSessionName ? $wgSessionName : $wgCookiePrefix . '_session');
    }
    // Create the SessionManager singleton and set up our session handler,
    // unless we're specifically asked not to.
    if (!defined('MW_NO_SESSION_HANDLER')) {
        MediaWiki\Session\PHPSessionHandler::install(MediaWiki\Session\SessionManager::singleton());
    }
    // Initialize the session
    try {
        $session = MediaWiki\Session\SessionManager::getGlobalSession();
    } catch (OverflowException $ex) {
        if (isset($ex->sessionInfos) && count($ex->sessionInfos) >= 2) {
            // The exception is because the request had multiple possible
            // sessions tied for top priority. Report this to the user.
            $list = [];
开发者ID:paladox,项目名称:mediawiki,代码行数:31,代码来源:Setup.php


示例13: newAccelerator

 /**
  * Factory function referenced from DefaultSettings.php for CACHE_ACCEL.
  *
  * @param $params array
  * @throws MWException
  * @return ObjectCache
  */
 static function newAccelerator($params)
 {
     if (function_exists('apc_fetch')) {
         $id = 'apc';
     } elseif (function_exists('xcache_get') && wfIniGetBool('xcache.var_size')) {
         $id = 'xcache';
     } elseif (function_exists('wincache_ucache_get')) {
         $id = 'wincache';
     } else {
         throw new MWException("CACHE_ACCEL requested but no suitable object " . "cache is present. You may want to install APC.");
     }
     return self::newFromId($id);
 }
开发者ID:Grprashanthkumar,项目名称:ColfusionWeb,代码行数:20,代码来源:ObjectCache.php


示例14: wfDebug

    }
    wfDebug($debug);
}
Profiler::instance()->scopedProfileOut($ps_misc);
$ps_memcached = Profiler::instance()->scopedProfileIn($fname . '-memcached');
$wgMemc = wfGetMainCache();
$messageMemc = wfGetMessageCacheStorage();
$parserMemc = wfGetParserCacheStorage();
wfDebugLog('caches', 'main: ' . get_class($wgMemc) . ', message: ' . get_class($messageMemc) . ', parser: ' . get_class($parserMemc));
Profiler::instance()->scopedProfileOut($ps_memcached);
// Most of the config is out, some might want to run hooks here.
Hooks::run('SetupAfterCache');
$ps_session = Profiler::instance()->scopedProfileIn($fname . '-session');
if (!defined('MW_NO_SESSION') && !$wgCommandLineMode) {
    // If session.auto_start is there, we can't touch session name
    if (!wfIniGetBool('session.auto_start')) {
        session_name($wgSessionName ? $wgSessionName : $wgCookiePrefix . '_session');
    }
    if ($wgRequest->checkSessionCookie() || isset($_COOKIE[$wgCookiePrefix . 'Token'])) {
        wfSetupSession();
    }
}
Profiler::instance()->scopedProfileOut($ps_session);
$ps_globals = Profiler::instance()->scopedProfileIn($fname . '-globals');
/**
 * @var Language $wgContLang
 */
$wgContLang = Language::factory($wgLanguageCode);
$wgContLang->initEncoding();
$wgContLang->initContLang();
// Now that variant lists may be available...
开发者ID:D66Ha,项目名称:mediawiki,代码行数:31,代码来源:Setup.php


示例15: exit

 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 * http://www.gnu.org/copyleft/gpl.html
 */
if (!defined('MEDIAWIKI')) {
    exit(1);
}
# make sure that everything that needs to be set/loaded is that way
$err = '';
if (!wfIniGetBool('allow_url_fopen') && !extension_loaded('curl')) {
    # we need allow_url_fopen or curl to be on in order for the Http::get() call to work on the amazon url
    $err .= "\n<li>allow_url_fopen or curl must be enabled in php.ini</li>";
}
if (!extension_loaded('simplexml')) {
    # we need the simplexml extension loaded to parse the xml string
    $err .= "\n<li>The SimpleXML extension for PHP must be loaded</li>";
}
# if there were errors found, die with the messages
if ($err) {
    $html = '<html><head><title>Error</title></head><body>
	The following errors were discovered with the AmazonPlus extension for MediaWiki:
	<ul>' . $err . '</ul></body></html>';
    echo $html;
    die(1);
}
开发者ID:realsoc,项目名称:mediawiki-extensions,代码行数:31,代码来源:AmazonPlus.php


示例16: writeSuccessMessage

function writeSuccessMessage()
{
    $script = defined('MW_INSTALL_PHP5_EXT') ? 'index.php5' : 'index.php';
    if (wfIniGetBool('safe_mode') && !ini_get('open_basedir')) {
        echo <<<EOT
<div class="success-box">
<p>Installation successful!</p>
<p>To complete the installation, please do the following:
<ol>
\t<li>Download config/LocalSettings.php with your FTP client or file manager</li>
\t<li>Upload it to the parent directory</li>
\t<li>Delete config/LocalSettings.php</li>
\t<li>Start using <a href='../{$script}'>your wiki</a>!
</ol>
<p>If you are in a shared hosting environment, do <strong>not</strong> just move LocalSettings.php
remotely. LocalSettings.php is currently owned by the user your webserver is running under,
which means that anyone on the same server can read your database password! Downloading
it and uploading it again will hopefully change the ownership to a user ID specific to you.</p>
</div>
EOT;
    } else {
        echo <<<EOT
<div class="success-box">
<p>
<span class="success-message">Installation successful!</span>
Move the <tt>config/LocalSettings.php</tt> file to the parent directory, then follow
<a href="../{$script}"> this link</a> to your wiki.</p>
<p>You should change file permissions for <tt>LocalSettings.php</tt> as required to
prevent other users on the server reading passwords and altering configuration data.</p>
</div>
EOT;
    }
}
开发者ID:ErdemA,项目名称:wikihow,代码行数:33,代码来源:index.php


示例17: envCheckCache

 /**
  * Environment check for compiled object cache types.
  */
 protected function envCheckCache()
 {
     $caches = array();
     foreach ($this->objectCaches as $name => $function) {
         if (function_exists($function)) {
             if ($name == 'xcache' && !wfIniGetBool('xcache.var_size')) {
                 continue;
             }
             $caches[$name] = true;
         }
     }
     if (!$caches) {
         $key = 'config-no-cache';
         // PHP >=5.5 is called APCu, earlier versions use APC (T61998).
         if (!wfIsHHVM() && version_compare(PHP_VERSION, '5.5', '>=')) {
             // config-no-cache-apcu
             $key .= '-apcu';
         }
         $this->showMessage($key);
     }
     $this->setVar('_Caches', $caches);
 }
开发者ID:paladox,项目名称:2,代码行数:25,代码来源:Installer.php


示例18: getLocalServerInstance

 /**
  * Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)
  *
  * This will look for any APC style server-local cache.
  * A fallback cache can be specified if none is found.
  *
  *     // Direct calls
  *     ObjectCache::getLocalServerInstance( $fallbackType );
  *
  *     // From $wgObjectCaches via newFromParams()
  *     ObjectCache::getLocalServerInstance( array( 'fallback' => $fallbackType ) );
  *
  * @param int|string|array $fallback Fallback cache or parameter map with 'fallback'
  * @return BagOStuff
  * @throws MWException
  * @since 1.27
  */
 public static function getLocalServerInstance($fallback = CACHE_NONE)
 {
     if (function_exists('apc_fetch')) {
         $id = 'apc';
     } elseif (function_exists('xcache_get') && wfIniGetBool('xcache.var_size')) {
         $id = 'xcache';
     } elseif (function_exists('wincache_ucache_get')) {
         $id = 'wincache';
     } else {
         if (is_array($fallback)) {
             $id = isset($fallback['fallback']) ? $fallback['fallback'] : CACHE_NONE;
         } else {
             $id = $fallback;
         }
     }
     return self::getInstance($id);
 }
开发者ID:mb720,项目名称:mediawiki,代码行数:34,代码来源:ObjectCache.php


示例19: factory

 /**
  * Generate a new request object
  * @param string $url Url to use
  * @param array $options (optional) extra params to pass (see Http::request())
  * @param string $caller The method making this request, for profiling
  * @throws MWException
  * @return CurlHttpRequest|PhpHttpRequest
  * @see MWHttpRequest::__construct
  */
 public static function factory($url, $options = null, $caller = __METHOD__)
 {
     if (!Http::$httpEngine) {
         Http::$httpEngine = function_exists('curl_init') ? 'curl' : 'php';
     } elseif (Http::$httpEngine == 'curl' && !function_exists('curl_init')) {
         throw new MWException(__METHOD__ . ': curl (http://php.net/curl) is not installed, but' . ' Http::$httpEngine is set to "curl"');
     }
     if (!is_array($options)) {
         $options = [];
     }
     if (!isset($options['logger'])) {
         $options['logger'] = LoggerFactory::getInstance('http');
     }
     switch (Http::$httpEngine) {
         case 'curl':
             return new CurlHttpRequest($url, $options, $caller, Profiler::instance());
         case 'php':
             if (!wfIniGetBool('allow_url_fopen')) {
                 throw new MWException(__METHOD__ . ': allow_url_fopen ' . 'needs to be enabled for pure PHP http requests to ' . 'work. If possible, curl should be used instead. See ' . 'http://php.net/curl.');
             }
             return new PhpHttpRequest($url, $options, $caller, Profiler::instance());
         default:
             throw new MWException(__METHOD__ . ': The setting of Http::$httpEngine is not valid.');
     }
 }
开发者ID:paladox,项目名称:mediawiki,代码行数:34,代码来源:MWHttpRequest.php


示例20: send


//.........这里部分代码省略.........
         $headers['X-Priority'] = $priority;
     }
     $ret = wfRunHooks('AlternateUserMailer', [$headers, $to, $from, $subject, $body, $priority, $attachments]);
     if ($ret === false) {
         return Status::newGood();
     } elseif ($ret !== true) {
         return Status::newFatal('php-mail-error', $ret);
     }
     # MoLi: body can be an array with text and html message
     # MW core uses only text version of email message, so $body as array should be used only with AlternateUserMailer hook
     if (is_array($body) && isset($body['text'])) {
         $body = $body['text'];
     }
     if (is_array(F::app()->wg->SMTP)) {
         #
         # PEAR MAILER
         #
         if (function_exists('stream_resolve_include_path')) {
             $found = stream_resolve_include_path('Mail.php');
         } else {
             $found = Fallback::stream_resolve_include_path('Mail.php');
         }
         if (!$found) {
             throw new MWException('PEAR mail package is not installed');
         }
         require_once 'Mail.php';
         wfSuppressWarnings();
         // Create the mail object using the Mail::factory method
         $mail_object =& Mail::factory('smtp', F::app()->wg->SMTP);
         if (PEAR::isError($mail_object)) {
             wfDebug("PEAR::Mail factory failed: " . $mail_object->getMessage() . "\n");
             wfRestoreWarnings();
             return Status::newFatal('pear-mail-error', $mail_object->getMessage());
         }
         wfDebug("Sending mail via PEAR::Mail\n");
         $headers['Subject'] = self::quotedPrintable($subject);
         # When sending only to one recipient, shows it its email using To:
         if (count($to) == 1) {
             $headers['To'] = $to[0]->toString();
         }
         # Split jobs since SMTP servers tends to limit the maximum
         # number of possible recipients.
         $chunks = array_chunk($to, F::app()->wg->EnotifMaxRecips);
         foreach ($chunks as $chunk) {
             if (!wfRunHooks('ComposeMail', [$chunk, &$body, &$headers])) {
                 continue;
             }
             $status = self::sendWithPear($mail_object, $chunk, $headers, $body);
             # FIXME : some chunks might be sent while others are not!
             if (!$status->isOK()) {
                 wfRestoreWarnings();
                 return $status;
             }
         }
         wfRestoreWarnings();
         return Status::newGood();
     } else {
         #
         # PHP mail()
         #
         # Line endings need to be different on Unix and Windows due to
         # the bug described at http://trac.wordpress.org/ticket/2603
         if (wfIsWindows()) {
             $body = str_replace("\n", "\r\n", $body);
             $endl = "\r\n";
         } else {
             $endl = "\n";
         }
         if (count($to) > 1) {
             $headers['To'] = 'undisclosed-recipients:;';
         }
         $headers = self::arrayToHeaderString($headers, $endl);
         wfDebug("Sending mail via internal mail() function\n");
         self::$mErrorString = '';
         $html_errors = ini_get('html_errors');
         ini_set('html_errors', '0');
         $safeMode = wfIniGetBool('safe_mode');
         foreach ($to as $recip) {
             if (!wfRunHooks('ComposeMail', array($recip, &$body, &$headers))) {
                 continue;
             }
             if ($safeMode) {
                 $sent = mail($recip, self::quotedPrintable($subject), $body, $headers);
             } else {
                 $sent = mail($recip, self::quotedPrintable($subject), $body, $headers, F::app()->wg->AdditionalMailParams);
             }
         }
         ini_set('html_errors', $html_errors);
         if (self::$mErrorString) {
             wfDebug("Error sending mail: " . self::$mErrorString . "\n");
             return Status::newFatal('php-mail-error', self::$mErrorString);
         } elseif (!$sent) {
             // mail function only tells if there's an error
             wfDebug("Unknown error sending mail\n");
             return Status::newFatal('php-mail-error-unknown');
         } else {
             return Status::newGood();
         }
     }
 }
开发者ID:Tjorriemorrie,项目名称:app,代码行数:101,代码来源:UserMailer.php



注:本文中的wfIniGetBool函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP wfInitShellLocale函数代码示例发布时间:2022-05-23
下一篇:
PHP wfIncrStats函数代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap