Home
last modified time | relevance | path

Searched refs:fp (Results 251 – 261 of 261) sorted by last modified time

1...<<11

/plugin/farm/install/
H A Dfarmstructurecreator.php.bak44 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/snap/
H A Dhelper.php212 while (!$fp && $try<$this->tryTimeout) {
217 $fp = fsockopen($this->snapServer, $this->selectedPort, $errno, $errstr, 30);
220 if (!$fp) {
229 …fwrite($fp, "$url $imagePath $this->screenx $this->screeny ".($this->snapTimeout*1000)." $larg $ha…
230 while (!feof($fp)) $this->snapLog.=fgets($fp, 128);
231 fclose($fp);
H A Dserver.sh6 fp=/usr/share/fonts/X11/misc
18 Xvfb $display -screen 0 640x480x24 -nolisten tcp -fp $fp 2>/dev/null &
H A Dsyntax.php.ori176 $fp = fsockopen($snapServer, $snapPort, $errno, $errstr, 30);
177 while (!$fp && $try<$tryTimeout) {
180 $fp = fsockopen($snapServer, $snapPort, $errno, $errstr, 30);
183 if (!$fp) {
190 fwrite($fp, "$url $imagePath $screenx $screeny 5000 $larg $haut\n");
191 while (!feof($fp)) fgets($fp, 128);
192 fclose($fp);
/plugin/register/
H A Dsyntax.php154 $fp = fopen($xml, "r");
155 if (!$fp) {
165 while (($data = fread($fp, 8192)) && $adi_xml_state) {
166 if (!xml_parse($xml_parser, $data, feof($fp))) {
173 fclose($fp);
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/php/
H A Dutil.php89 $fp = fopen( $filePath, 'rb' ) ;
90 $chunk = fread( $fp, 1024 ) ;
91 fclose( $fp ) ;
/plugin/google_adsense2/
H A Dcode.php28 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/wysiwyg/fckeditor/editor/filemanager/connectors/py/
H A Dfckconnector.py57 self.request = cgi.FieldStorage(fp=environ['wsgi.input'],
68 self.get_request = cgi.FieldStorage(fp=None,
/plugin/geourl/
H A Dcode.php31 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/googlesearch/
H A Dnusoap.php2104 if($this->persistentConnection && isset($this->fp) && is_resource($this->fp)){
2105 if (!feof($this->fp)) {
2109 fclose($this->fp);
2129 if(!$this->fp) {
2552 if(feof($this->fp)) {
2560 $tmp = fgets($this->fp, 256);
2676 if (feof($this->fp)) {
2687 fclose($this->fp);
2688 $this->fp = false;
3278 fpassthru($fp);
[all …]
/plugin/bibtex/OSBib/create/
H A DADMINSTYLE.php1156 if(!$fp = fopen("$fileName", "w"))
1158 if(!fputs($fp, $this->utf8->encodeUtf8($fileString)))
1160 fclose($fp);

1...<<11