Home
last modified time | relevance | path

Searched refs:md5 (Results 251 – 275 of 327) sorted by path

1...<<11121314

/plugin/photogallery/phpThumb/docs/
H A Dphpthumb.changelog.txt1214 from urlencode('') to md5(rawImageData). This should
H A Dphpthumb.faq.txt288 $md5 = md5_file($sourcedir.'/'.$file);
289 unlink($phpthumb_cache_dir.'/phpThumb_cache_www.example.com_src'.$md5.'*.*');
/plugin/photogallery/phpThumb/
H A DphpThumb.php44 …ons::SanitizeFilename((!empty($phpThumb->src) ? basename($phpThumb->src) : md5($phpThumb->rawImage…
252 $md5s = md5($rawImageData);
H A Dphpthumb.class.php355 $sourceFilename = ($sourceFilename ? $sourceFilename : md5($rawImageData));
3673 $broad_directory_name = strtolower(md5($this->new));
3681 …$this->DebugMessage('SetCacheFilename() _raw set from md5($this->rawImageData) = "'.md5($this->raw…
3682 $broad_directory_name = strtolower(md5($this->rawImageData));
3685 … _src set from md5($this->sourceFilename) "'.$this->sourceFilename.'" = "'.md5($this->sourceFilena…
3686 $broad_directory_name = strtolower(md5($this->sourceFilename));
3717 $ParametersString .= '_'.$key.substr(md5($this->$key), 0, 4);
3725 $this->cache_filename .= '_par'.strtolower(md5($ParametersString));
3884 if ($this->md5s && ($this->md5s != md5($this->rawImageData))) {
3885 …s->md5s != md5($this->rawImageData)'."\n".'"'.$this->md5s.'" != '."\n".'"'.md5($this->rawImageData…
H A Dphpthumb.functions.php599 return md5($rawData);
/plugin/photogallery/
H A Dsyntax.php540 $pgid = 'pg-'.substr(md5($data['ns']),4);
/plugin/plantuml/
H A Dsyntax.php91 $return['md5'] = md5($input);
/plugin/poll/
H A Dsyntax.php65 $pfile = metaFN(md5($title), '.poll');
/plugin/preregister/
H A Daction.php59 $md5= $INPUT->str('prereg');
60 if(!preg_match("/^(\w){32}$/",$md5,$matches)) return;;
61 echo $this->getLang('registering') . $md5;
62 $this->process_registration($md5);
105 $index = md5(microtime() . $salt);
/plugin/projects/pchart/pchart/
H A Dpcache.php114 $mKey = $mKey.md5($tKey);
116 return(md5($mKey));
/plugin/pwaoffline/
H A Daction.php90 echo "const swHashVersion = '" . md5($swjs) . "';\n";
104 'swHashVersion' => md5(file_get_contents(__DIR__ . '/sw.js')),
/plugin/quickstats/
H A Daction.php449 $this->pages['date'][md5($ID)] = time();
478 $page_md5 = md5($ID);
H A Dhelper.php67 $md5 = md5($id);
68 if(isset($this->cache[$md5])) return true;
89 $this->cache[md5($id)] = $id;
H A Dsyntax.php386 $md5 =md5($item);
387 … $date_str = (is_array($date) && isset($date[$md5]) ) ? $date[$md5] : false;
/plugin/quickstats/db/
H A DdataBaseStructure.txt14 [date] => Array( [md5(<namespace:>page_name)] => timestamp)
100 /* assoc array intermixed md5(page_id) and ip keys */
101 [md5(page_id)] => Array
106 [md5(page_id)] => Array
117 [md5(page_id)] => Array
/plugin/quickstats/scripts/
H A Dextended_data.php373 if(isset($page_users[md5($page)])) {
374 $temp[$page] = array('accesses'=>$accesses, 'ips'=>$page_users[md5($page)]);
H A Dget_pages.php34 print_r($page_users[md5($page)]);
/plugin/quiz/
H A Dclass_quiz.php482 $pfile = metaFN(md5($this->quizID), '.quiz');
527 $pfile = metaFN(md5($this->quizID), '.quiz');
/plugin/register/
H A Dsyntax.php66 $hash = md5(serialize($match));
/plugin/remoteinf/
H A Daction.php22 $enmd5=md5($pat_str);
45 $enmd5=md5($pat_str);
/plugin/remotescript/lib/JsHttpRequest/
H A DJsHttpRequest.php74 $this->_uniqHash = md5(microtime() . getmypid());
/plugin/rrdgraph/
H A Dsyntax.php270 …if (! isset($this->rrdRecipe[self::R_NAME])) $this->rrdRecipe[self::R_NAME] = md5(serialize($this-…
/plugin/rssticker/
H A DlastRSS.php66 $cache_file = $this->cache_dir . '/rsscache_' . md5($rss_url);
/plugin/ryubin/syntax/
H A Dryubin.php44 $data['id'] = substr(md5($img),0,8);
/plugin/schedule/
H A DscheduleRoot.class.php340 $md5 = $request['md5'];
341 if (!$md5)
343 $schedules = new schedules ($this, $request[$md5]['ns']);
347 $md5 = $request['md5'];
348 $date = $this->df2ds ($request[$md5]['date']);
349 $md5bis = $request[$md5]['toNs'];
352 $src = new schedules ($this, $request[$md5]['ns']);
388 foreach ($list as $md5 => $item) {
398 ' <td class="value">'.$md5.'</td>'.NL.
420 if ($md5bis != $md5)
[all …]

1...<<11121314