si, è con la tilde e anche usando semplicemente /commenter non va.
Anche se includo fisicamente il file getlistnumber.php (copiando la funzione) il programma non dà errore ma non viene mostrato niente...
Il file ~getListNumber è
Codice PHP:
<?php
# Find the list # in list.txt by comparing current URL to URL in list.txt
# return list # if successful, else 0
function getlistnumber ($dataFile, $page, $makeNew) {
if (file_exists($dataFile)) {
$listArray = file($dataFile);
$page_md5 = md5($page);
foreach ($listArray as $thing) {
list ($listID, $url, $md5) = explode ("<|>", $thing);
# return list number, if found in $dataFile
if ($page_md5 == $md5) { return $listID; }
}
# If we reach this code, we cannot find URL in list.txt
if ($makeNew) {
$max = $listID + 1;
$rowData = "$max<|>$page<|>$page_md5<|>";
appendFile ($dataFile, $rowData);
return $max;
} else { return 0; }
}
}
?>