/plugin/authucenter/lib/uc_client/lib/ |
H A D | sendmail.inc.php | 44 stream_set_blocking($fp, true); 46 $lastmessage = fgets($fp, 512); 52 $lastmessage = fgets($fp, 512); 65 fputs($fp, "AUTH LOGIN\r\n"); 66 $lastmessage = fgets($fp, 512); 87 $lastmessage = fgets($fp, 512); 110 fputs($fp, "DATA\r\n"); 111 $lastmessage = fgets($fp, 512); 121 fputs($fp, $headers."\r\n"); 122 fputs($fp, "\r\n\r\n"); [all …]
|
/plugin/sequencediagram/bower_components/lodash/test/ |
H A D | test-fp.js | 67 var fp = root.fp variable 68 ? (fp = _.noConflict(), _ = root._, fp) 292 func = isFp ? fp.convert : fp.remove.convert; 610 var actual = fp.add(fp, 'b')('a'); 613 actual = fp.fill(fp, 2)(1, '*')([1, 2, 3]); 616 actual = fp.slice(fp, 2)(1)(['a', 'b', 'c']); 1008 return fp.flow(fp.property('a'), fp.eq(value)); 1027 return fp.flow(fp.property('a'), fp.eq(value)); 1551 fp.mixin.apply(fp, index ? [1] : []); 1879 actual = fp.remove(fp.eq(2))(array); [all …]
|
/plugin/onlinenumber/ |
H A D | syntax.php | 44 if ($fp == FALSE) return FALSE; 45 set_file_buffer($fp, 0); 52 flock($fp, LOCK_SH); 55 while (! feof($fp)) { 56 $line = fgets($fp, 512); 68 flock($fp, LOCK_UN); 70 if(! fclose($fp)) return FALSE; 84 set_file_buffer($fp, 0); 86 flock($fp, LOCK_EX); 116 rewind($fp); [all …]
|
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
H A D | write.apetag.php | 90 flock($fp, LOCK_EX); 99 fseek($fp, $PostAPEdataOffset); 105 fseek($fp, $PostAPEdataOffset); 109 ftruncate($fp, ftell($fp)); 110 fwrite($fp, $APEtag, strlen($APEtag)); 112 fwrite($fp, $PostAPEdata, strlen($PostAPEdata)); 114 flock($fp, LOCK_UN); 115 fclose($fp); 132 flock($fp, LOCK_EX); 148 flock($fp, LOCK_UN); [all …]
|
H A D | write.lyrics3.php | 64 …) && getID3::is_writable($this->filename) && is_file($this->filename) && ($fp = fopen($this->filen… 66 flock($fp, LOCK_EX); 69 fseek($fp, $ThisFileInfo['lyrics3']['tag_offset_end']); 72 …$DataAfterLyrics3 = fread($fp, $ThisFileInfo['filesize'] - $ThisFileInfo['lyrics3']['tag_offset_en… 75 ftruncate($fp, $ThisFileInfo['lyrics3']['tag_offset_start']); 78 fseek($fp, $ThisFileInfo['lyrics3']['tag_offset_start']); 79 fwrite($fp, $DataAfterLyrics3, strlen($DataAfterLyrics3)); 82 flock($fp, LOCK_UN); 83 fclose($fp);
|
/plugin/referrers/ |
H A D | code.php | 39 $fp = fopen($curdatefile, "a"); 41 $fp = fopen($curdatefile, "w"); 42 fwrite($fp, "====== Referrers : $curdate ======\n\n"); 43 …fwrite($fp, "//If you find [[https://www.dokuwiki.org/plugin:referrers|Referrers for DokuWiki]] us… 44 fwrite($fp, "^ hostname ^ ip address ^ referrer ^\n"); 49 fwrite($fp, "| %%".gethostbyaddr($rh)."%% | "); 50 fwrite($fp, $rh); 60 fwrite($fp, "((%%".$UA."%%)) "); 63 fwrite($fp, "| ".$refhi." |"); 64 fwrite($fp, "\n"); [all …]
|
/plugin/googleads/ |
H A D | code.php | 27 function gads_write($fp, $name, $val) argument 29 fwrite($fp, '$gads_settings[\'' . $name . '\'] = \'' . $val . '\';' . "\n"); 39 $fp = fopen($gads_file, "w"); 40 fwrite($fp, '<?php' . "\n// This file is automatically generated\n"); 41 gads_write($fp, 'code', $gads_settings['code']); 42 gads_write($fp, 'dontcountadmin', $gads_settings['dontcountadmin']); 43 gads_write($fp, 'dontcountmanager', $gads_settings['dontcountmanager']); 44 gads_write($fp, 'dontcountusers', $gads_settings['dontcountusers']); 45 fclose($fp);
|
/plugin/google_adsense2/ |
H A D | code.php | 28 function gads_write($fp, $name, $val) argument 30 fwrite($fp, '$gads_settings[\''.$name.'\'] = \''.$val.'\';'."\n"); 41 $fp = fopen($gads_file, "w"); 42 fwrite($fp, '<?php'."\n// This file is automatically generated\n"); 44 gads_write($fp, 'enabled', $gads_settings['enabled']); 45 gads_write($fp, 'debug', $gads_settings['debug']); 46 gads_write($fp, 'dontcountadmin', $gads_settings['dontcountadmin']); 47 gads_write($fp, 'dontcountusers', $gads_settings['dontcountusers']); 49 gads_write($fp, 'google_ad_client', $gads_settings['google_ad_client']); 51 gads_write($fp, 'google_color_bg', $gads_settings['google_color_bg']); [all …]
|
/plugin/farm/install/ |
H A D | farmstructurecreator.php | 48 if($fp = fopen($file, 'w')) { 49 fwrite($fp, $s); 50 fclose($fp); 147 if($fp = fopen($file, 'w')) { variable 148 fwrite($fp, $htaccess); 149 fclose($fp); 178 fclose($fp); 198 fclose($fp); 204 if($fp) { 214 fwrite($fp, $l."\n"); [all …]
|
H A D | farmstructurecreator.php.bak | 44 if($fp = fopen($file, 'w')) { 45 fwrite($fp, $s); 46 fclose($fp); 88 fwrite($fp, $htaccess); 89 fclose($fp); 104 fwrite($fp, $htaccess); 105 fclose($fp); 123 fclose($fp); 140 fwrite($fp, $wsdl); 141 fclose($fp); [all …]
|
/plugin/geourl/ |
H A D | code.php | 31 function gu_write($fp, $name, $val) argument 33 fwrite($fp, '$gu_settings[\''.$name.'\'] = \''.$val.'\';'."\n"); 44 $fp = fopen($gu_file, "w"); 45 fwrite($fp, '<?php'."\n// This file is automatically generated\n"); 46 gu_write($fp, 'latitude', $gu_settings['latitude']); 47 gu_write($fp, 'longitude', $gu_settings['longitude']); 48 fclose($fp);
|
/plugin/sequencediagram/bower_components/lodash/lib/fp/template/doc/ |
H A D | wiki.jst | 1 ## lodash/fp 3 The `lodash/fp` module promotes a more 14 // Loading `lodash.fp.js` converts `_` to its fp variant. 19 var fp = _.noConflict(); 30 // Load the fp build. 31 var fp = require('lodash/fp'); 78 fp.padStart(3)('a'); 80 fp.padCharsStart('-')(3)('a'); 185 var _fp = fp.convert({ 216 var fp = convert({ [all …]
|
/plugin/authucenter/lib/uc_client/model/ |
H A D | misc.php | 97 if(!$fp = @fsocketopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout)) { 111 if(!$fp) { 114 stream_set_blocking($fp, $block); 115 stream_set_timeout($fp, $timeout); 116 @fwrite($fp, $out); 117 $status = stream_get_meta_data($fp); 119 while (!feof($fp) && !$fpflag) { 120 if(($header = @fgets($fp)) && ($header == "\r\n" || $header == "\n")) { 126 while(!feof($fp) && !$stop) { 127 $data = fread($fp, ($limit == 0 || $limit > 8192 ? 8192 : $limit)); [all …]
|
/plugin/siteexport/ |
H A D | preload.php | 140 $fp = fopen($PRELOADFILE, "a"); 141 if ( !$fp ) { return false; } 143 fputs($fp, "<?php\n"); 145 fputs($fp, "\n" . $CONTENT); 146 fclose($fp); 153 $fp = fopen($PRELOADFILE, "w"); 154 if ( !$fp ) { return false; } 155 …fputs($fp, "<?php\n/*\n * Dokuwiki Preload File\n * Auto-generated by Site Export plugin \n * Date… 156 fputs($fp, $CONTENT); 157 fputs($fp, "// end auto-generated content\n\n"); [all …]
|
/plugin/botbouncer/admin/ |
H A D | statistics.php | 116 $fp = fopen($file, 'rb'); 117 if ($fp===false) return $data; 120 fseek($fp, 0, SEEK_END); 121 $pos = ftell($fp); 134 fseek($fp,$pos); 136 $tmp = fread($fp,$read); 156 fclose($fp);
|
/plugin/jplayer/vendor/james-heinrich/getid3/demos/ |
H A D | demo.zip.php | 24 if ($getid3->fp = fopen($filename, 'rb')) { 35 fclose($getid3->fp); 39 fseek($getid3->fp, $valuearray['entry_offset'], SEEK_SET); 45 fseek($getid3->fp, $LocalFileHeader['data_offset'], SEEK_SET); 47 …while ((strlen($compressedFileData) < $LocalFileHeader['compressed_size']) && !feof($getid3->fp)) { 48 $compressedFileData .= fread($getid3->fp, 32768);
|
H A D | demo.mimeonly.php | 48 if ($fp = fopen($filename, 'rb')) { 57 fseek($fp, $getID3->info['avdataoffset'], SEEK_SET); 58 $formattest = fread($fp, 16); // 16 bytes is sufficient for any format except ISO CD-image 59 fclose($fp);
|
/plugin/xymon/dokuwiki-plugin/xymon/ |
H A D | action.php | 66 …$fp = !file_exists($xymon_status_cache_file) || is_writable($xymon_status_cache_file) ? fopen($xym… 67 if ($fp) { 68 fwrite($fp, "xymon_color: ".$xymon_color."\n\n"); 69 fwrite($fp, $data); 70 fclose($fp);
|
/plugin/loglog/helper/ |
H A D | logging.php | 81 $fp = fopen($this->file, 'rb'); 82 if ($fp === false) return $data; 85 fseek($fp, 0, SEEK_END); 86 $pos = ftell($fp); 99 fseek($fp, $pos); 101 $tmp = fread($fp, $read); 124 fclose($fp);
|
/plugin/authucenter/lib/api/ |
H A D | uc.php | 177 $fp = fopen($cachefile, 'w'); 180 fwrite($fp, $s); 181 fclose($fp); 200 $fp = fopen($cachefile, 'w'); 203 fwrite($fp, $s); 204 fclose($fp); 212 @fwrite($fp, trim($configfile)); 213 @fclose($fp); 228 $fp = fopen($cachefile, 'w'); 231 fwrite($fp, $s); [all …]
|
/plugin/accscounter/syntax/ |
H A D | counter.php | 172 $fp = io_readFile($file); 173 if ($fp === FALSE) return $this->getLang('err1') . basename($file); 174 $fp = explode("\n", $fp); 175 } else $fp = array(); 178 if ($fp[0]) $counters[$page]['total'] = $fp[0]; 179 if ($fp[1]) $counters[$page]['date'] = $fp[1]; 180 if ($fp[2]) $counters[$page]['today'] = $fp[2]; 181 if ($fp[3]) $counters[$page]['yesterday'] = $fp[3]; 182 if ($fp[4]) $counters[$page]['ip'] = $fp[4];
|
/plugin/projects/lib/ |
H A D | mutex.php | 23 $fp = @fopen($this->filename, 'x'); 25 if($fp && @fwrite($fp, $USERINFO['name'])) { 26 @fclose($fp);
|
/plugin/badbehaviour/ |
H A D | admin.php | 167 $fp = fopen($file, 'rb'); 168 if ($fp===false) return $data; 171 fseek($fp, 0, SEEK_END); 172 $pos = ftell($fp); 185 fseek($fp,$pos); 187 $tmp = fread($fp,$read); 207 fclose($fp);
|
/plugin/farm/ |
H A D | animal.class.php | 149 fclose($fp); 265 fclose($fp); 310 fclose($fp); 398 fwrite($fp, $authfile); 399 fclose($fp); 448 fclose($fp); 537 fwrite($fp, $ctn); 538 fclose($fp); 646 fclose($fp); 672 if($fp) { [all …]
|
/plugin/tindexmenu/inc/ |
H A D | repo.class.php | 43 $fp=@fopen($zipfile, 'rb'); 44 if ($fp) { 45 $ct=@fread($fp, $len); 48 @fclose($fp);
|