Gibt es in tmp/ diese Datei? sensorandswitchgerarr.dataalle
Wenn ncht, dann lege sie händisch ohne Inhalt an und vergib auch 777 als Rechte.
Auch nach 2 Minuten?
Nachtrag: Natürlich sind alle Geräte weg, weil jetzt die leere Cachedatei gelesen wird. Doch es geht darum, ob sasap jetzt mit einer existierenden Datei diese nun füllt.
* * * * * /var/media/NEW_LINK/cgi-bin/php-cgi -f /var/media/NEW_LINK/sensorandswitch/sasap.php
[COLOR=#ff0000][B]* * * * * /var/media/NEW_LINK/cgi-bin/php-cgi -f /var/media/NEW_LINK/sastest/sasap.php[/B][/COLOR]
total 28
dr----x--t 2 root root 4096 Mar 4 14:17 ./
drwxrwxrwx 8 boxusr11 root 4096 Mar 4 14:12 ../
-rwxrwxrwx 1 root root 7168 Mar 4 14:17 sensorandswitchgerarr.dataalle*
-rwxrwxrwx 1 root root 8392 Mar 4 14:17 sensorandswitchgerarr.dataconf*
-rw-r--r-- 1 root root 0 Mar 4 14:17 sensorandswitchgerarr.datasasap
type | name | tbl_name | rootpage | sql |
---|---|---|---|---|
table | cache | cache | 2 | CREATE TABLE cache (name VARCHAR(99) PRIMARY KEY, ts INTEGER, daten VARCHAR(999999999)) |
index | sqlite_autoindex_cache_1 | cache | 3 |
<?php
date_default_timezone_set('Europe/Berlin');
$strDatenbank = 'sqlite:tmp/sensorandswitchgerarr.dataalle';
$dbh = new PDO($strDatenbank);
?>
<?php
include("db.php");
try {
$sth = $dbh->prepare('select rowid, * from cache');
$sth->execute();
sleep(0.125);
$dbh = null;
echo '<table border="1"
style="background:fixed 0% 0% repeat olive url(/rte/img/bg.jpg);
table-layout:fixed;
border:3px double olive;
border-collapse:inherit;
border-spacing:3px 5px;">
<tr><th>name</th><th>ts</th><th>daten</th></tr>';
while($Zeile = $sth->fetch(PDO::FETCH_ASSOC)){?>
<tr>
<td><?php echo $Zeile['name']; ?></td>
<td><?php echo $Zeile['ts']; ?></td>
<td><?php echo $Zeile['daten']; ?></td>
</tr>
<?php
}
echo '</table>';
}
catch(PDOException $e) {
echo $e->getMessage();
}
?>