Home
last modified time | relevance | path

Searched refs:is_writable (Results 1 – 16 of 16) sorted by relevance

/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DFile.php108 …if (file_exists($this->name) && is_writable($this->name) || file_exists($this->location) && is_wri…
/dokuwiki/lib/plugins/config/core/
H A DWriter.php107 if (!is_writable(dirname($this->savefile))) return true;
108 if (file_exists($this->savefile) && !is_writable($this->savefile)) return true;
/dokuwiki/inc/Sitemap/
H A DMapper.php44 if (!is_writable($sitemap)) return false;
45 } elseif (!is_writable(dirname($sitemap))) {
/dokuwiki/inc/
H A Dinfoutils.php265 if (is_writable($conf['changelog'])) {
286 if (is_writable(DOKU_CONF)) {
294 if (is_writable($config_cascade['plainauth.users']['default'])) {
350 if (file_exists($INFO['filepath']) && is_writable($INFO['filepath'])) {
352 } elseif (!file_exists($INFO['filepath']) && is_writable(dirname($INFO['filepath']))) {
H A Dsearch.php226 $info['writable'] = is_writable($base . '/' . $file);
574 $item['writable'] = is_writable($base . '/' . $file);
H A Dinit.php407 if (!@is_writable($p)) {
H A Dcommon.php258 $info['writable'] = (is_writable($info['filepath']) && $info['perm'] >= AUTH_EDIT);
/dokuwiki/inc/File/
H A DMediaFile.php113 return is_writable($this->path);
/dokuwiki/lib/plugins/extension/
H A DInstaller.php412 if (!is_writable($target)) throw new Exception('noperms');
418 if (!is_writable($target)) {
/dokuwiki/
H A Dinstall.php583 if (!file_exists("$dir/.") || !is_writable($dir)) {
/dokuwiki/inc/Remote/
H A DLegacyApiCore.php263 'writable' => is_writable(mediaFN($file->id)),
/dokuwiki/lib/plugins/authplain/
H A Dauth.php42 if (@is_writable($config_cascade['plainauth.users']['default'])) {
/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php157 $wrapper = @is_writable(sys_get_temp_dir()) ? 'php://temp' : 'php://memory';
H A DMisc.php170 if (!empty($log_file) && ('syslog' !== $log_file) && !@is_writable($log_file)) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php2740 public function is_writable($path) function in phpseclib3\\Net\\SFTP
2771 return $this->is_writable($path);
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md191 * Preemptively changed `is_writeable()` calls to `is_writable()` in case the former is deprecated i…