InfoFrame: Digitaler Bilderrahmen (Anzeige von Anrufen, E-Mails, Termine, Wetter...)

@Bolle:
Das Resourcenfressende ist doch das Erstellen des Bildes. Ob du dieses Bild nun alle zwei Sekunden über einen Browser oder über ein Bildbetrachtungs-App darstellst ist doch eigentlich egal. Wobei Firefox nicht unbedingt der schnellste, schlankeste Browser für android ist.

@Volker:
hmmm, kp bei mir funktioniert es... aber ich schneine da immer eine Ausnahme zu sein :(
001.PNG

@ Marvin:
Hmm kann sein, hatte keine hermes id von Volker bekommen. Meine wurde zugestellt :D
 
@spoon3er
Du kannst ja die kleinen Fehler immer gleich beseitigen,du kannst es ja auch;)
Bei mir wird es dann gleich eine Generalrep.
Nein Spass beseite, hast du vielleicht ne Idee woran es liegen könnte??
Wie gesagt die Aktuallisiering der Preise stimmt, nur halt das Datum ändert sich nicht.

Volker
 
Wo findet man den eine aktuelle Version zum Download?
 
Hallo Tommy.Z,

leider gar nicht. Der Infoframe ist eine Vielzahl von verschiedenen Plugins, die von verschiedenen Leuten entwickeln wurden. Die meisten wurden dann in diesem Forum veröffentlicht. Erschwerend kommt hinzu, dass es mittlerweile kaum noch WLan-Bilderrahmen gibt. Dadurch gibt es eine vielzahl von unterschiedlichen Ansätzen um das Projekt auf normalen Rahmen und Tablets zu portieren.

Ich fürchte du musst Dir die Mühe machen und diesen Thread komplett durchsuchen :)

Gruß, Michael...
 
Schade, hatte schon einen Link für ein Raspi-Image gesehen, der leider ins Leere ging.
Hatte vor, das auf einem Odroid zu testen. Schade
 
Wenn ich am Dienstag wieder zu Hasue bin, werde ich mal meine Raspiversion online stellen.
 
Super, dann kann ich schonmal damit testen ;-)
Der odroid hat zwar mehr Power, aber vielleicht kann ich ja das portieren :)
Danke schonmal
 
Sollte kein problem sein, ist alles in PHP. Du kannst derweil schon mal einen Webserver mit php und mysql auf deinem odroid einrichten.
 
Bei mir geht das kalenderplugin und das spritpreisplugin nicht mehr. Was ist da passiert in den letzten Wochen? Was muss ich tun?

Gruß Danyel
 
BenzinPlugin

Hallo Volker,

ich habe mir mal das BenzinPlugin angesehen. Scheint so, als wäre es noch gar nicht fertig gewesen ;)

Spritsorte und Radius werden nicht aus der Config gelesen, sondern sind im Quelltext fest eingemeißelt, Spritsorte wird nur für die Überschrift und max_age_in_hours wird überhaupt nicht benutzt.
Es werden zwar mehrere Orte verarbeitet, aber wenn alle Spritpreise in Ort_A billiger sind als in Ort_B (was ja auch meistens der Fall ist), dann werden nur die Preise von Ort_A angezeigt. So macht die Angabe von mehreren Orten keinen Sinn.

Hier meine Änderungen:

  • die Möglichkeit mehrerer Orte entfernt.
  • Der Ort kann auch als Koordinaten angegeben werden, wenn beides angegeben ist, wird ort benutzt
  • sorte und radius wird jetzt ausgewertet
  • Datum funktioniert
  • Entfernung wird angegeben

Die Pfade zu den Icons wirst Du Dir auf Dein System anpassen müssen, die MySQL-Tabelle if_tanken bleibt.

Gruß, Michael...

config.ini
Code:
[BenzinPlugin]
;====================================================================
max_displayed_stations = 2
sorte = 7

; welche Tankstellen sollen ausgewertet werden, Angabe Ort oder PLZ
lat = "48.378567"
lon = "10.006313"
;ort = "47877"
radius = 5

; Super E5      = 7 
; Super E10     = 5
; SuperPlus     = 6
; Diesel        = 3
; PremiumDiesel = 12
; Biodiesel     = 9
; LKW-Diesel    = 2
; Autogas       = 1
; Erdgas        = 8
; Pflanzenöl    = 10
; Bioethanol    = 4
; Zweitakt 	= 11
; AdBlue	= 13

; Radiusmöglichkeiten ->
; 1km 					= 1
; 2km 					= 2
; 5km 					= 5
; 10km 					= 10
; 20km 					= 20
; 25km 					= 25

und das Plugin
PHP:
<?php
/***************************************************************************
 * InfoFrame (image generator for digital picture frames)
 * Copyright (C) 2010
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see [url]http://www.gnu.org/licenses/[/url]
 ***************************************************************************/

class BenzinPlugin implements IPlugin
{
    private $dbconn = NULL;
	private $config = NULL;

	public function __construct($dbconn, $config)
	{
		$this->dbconn = $dbconn;
		$this->config = $config;
	}


	public function doUpdate()
	{
		// Preise und Tankstellen lesen - fsockopen-Version
		$lines = 0;
		if (($this->config['ort'] != null) && ($this->config['ort'] != ''))
			$uri = "/tankstelle_liste?spritsorte=" . $this->config['sorte'] . "&r=" . $this->config['radius'] . "&ort=" . $this->config['ort'];
		else
			$uri = "/tankstelle_liste?spritsorte=" . $this->config['sorte'] . "&r=" . $this->config['radius'] . "&lat=" . $this->config['lat'] . "&lon=" . $this->config['lon'];
		
		$uri = "/tankstelle_liste?spritsorte=" . $this->config['sorte'] . "&r=" . $this->config['radius'] . "&lat=" . $this->config['lat'] . "&lon=" . $this->config['lon'];
		header ("Content-type: text/html");
		$sock = fsockopen ("www.clever-tanken.de", 80, $errno, $errstr, 10);
		if (!$sock)
			return;
		else
		{
			fputs ($sock, "GET " . $uri . " HTTP/1.1\r\n");
			fputs ($sock, "User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20021204\r\n");
			fputs ($sock, "Host: www.clever-tanken.de\r\n");
			fputs ($sock, "Connection: close\r\n\r\n");
			while (!feof($sock))
				$zeile[$lines++] = utf8_encode (trim (fgets ($sock, 512)));
			fclose ($sock);
		}
		
		// Datenbankeinträge löschen
		mysql_query ("START TRANSACTION", $this->dbconn);
		$query = "Delete from if_tanken";
		mysql_query ($query, $this->dbconn) or die('Error, delete query failed');

		// file zeilenweise einlesen und gefiltert entsprechend den Einträgen in config.ini.
		$tank_num = 0;
		$get_date = false;
		for ($i = 0; $i < $lines; $i++)
		{
			if ($zeile[$i] != '')
			{
				if (strpos ($zeile[$i], '<div class="price_entry_table">') !== false)
					$tank_num++;
				elseif (strpos ($zeile[$i], '<div class="price">') !== false)
					$txt[$tank_num]['price'] = strip_tags(trim($zeile[$i]));
				elseif (strpos ($zeile[$i], '<div class="price_date">') !== false or $get_date)
				{
					$get_date = true;
					if (strpos ($zeile[$i], '</div>') !== false)
						$get_date = false;
					else
					{
						if (strpos ($zeile[$i], '<div class="price_date">') === false)
						{
							if (strpos ($zeile[$i], 'Heute') !== false)
								$txt[$tank_num]['date'] = strtotime ('now');
							if (strpos ($zeile[$i], 'Gestern') !== false)
								$txt[$tank_num]['date'] = strtotime ('-1 day');
							if (strpos ($zeile[$i], 'vor ') !== false)
								$txt[$tank_num]['date'] = strtotime (str_replace("vor", "-", str_replace ("Std.", "hours", $zeile[$i])));
						}
					}
				}
				elseif (strpos ($zeile[$i], '<div class="location_name">') !== false)
					$txt[$tank_num]['name'] = htmlspecialchars_decode (utf8_decode (strip_tags (trim ($zeile[$i]))));
				elseif (strpos ($zeile[$i], '<div class="location_street_number">') !== false)
					$txt[$tank_num]['street'] = htmlspecialchars_decode (utf8_decode (strip_tags (trim ($zeile[$i]))));
				elseif (strpos ($zeile[$i], '<div class="location_zip_code_city">') !== false)
					$txt[$tank_num]['city'] = htmlspecialchars_decode (utf8_decode (strip_tags (trim($zeile[$i]))));
				elseif (strpos ($zeile[$i], '<div class="location_distance">') !== false)
					$txt[$tank_num]['dist'] = strip_tags (trim ($zeile[$i]));
			} 
		}
		
		for ($i = 1; $i <= $tank_num; $i++)
		{
			if ($txt[$i]['price'] != null && $txt[$i]['date'] != null)
			{
				$this->addStation ($txt[$i]['price'], $txt[$i]['date'],  $txt[$i]['dist'].' - '.$txt[$i]['name'].', '.$txt[$i]['street'].', '.$txt[$i]['city']);
			}
		}
		mysql_query("COMMIT", $this->dbconn);
	}


	public function doOutput($image, $style, $updateData, &$yoffset)
	{
		$spritsorte[1] = 'Autogas';
		$spritsorte[2] = 'LKW-Diesel';
		$spritsorte[3] = 'Diesel';
		$spritsorte[4] = 'Bioethanol';
		$spritsorte[5] = 'Super E10';
		$spritsorte[6] = 'SuperPlus';
		$spritsorte[7] = 'Super E5';
		$spritsorte[8] = 'Erdgas';
		$spritsorte[9] = 'Biodiesel';
		$spritsorte[10] = 'Pflanzenöl';
		$spritsorte[11] = 'Zweitakt';
		$spritsorte[12] = 'PremiumDiesel';
		$spritsorte[13] = 'AdBlue';

		if ($updateData) $this->doUpdate();

		$query = "SELECT * FROM `if_tanken` ORDER BY `datum` DESC, `preis` ASC";
		$result = mysql_query($query, $this->dbconn);
		if (mysql_num_rows($result) == 0) return;

		// define styles
		$opt_header = array(
			'width' => imagesx($image)-290,
			'line_height' => 18,
			'align' => ALIGN_LEFT
		);

		$opt_entry = array(
			'width' => imagesx($image)-290,
			'height' => 12,
			'line_height' => 12,
			'align' => ALIGN_LEFT,
			'word_wrap_hyphen' => '...',
			'aggressive_word_wrap' => false,
		);

		// print header
		$text = 'Kraftstoffpreise (' . $spritsorte[$this->config['sorte']] . ')';
		imagettftextboxopt($image, 22, 0, 50, $yoffset, $style['textcolor'], $style['font'], $text, $opt_header);
		$icon = ImageCreateFromPNG ('resources/icons/tanken/tank.png');
		ImageCopy($image, $icon, 20, $yoffset-3, 0, 0, imagesx($icon), imagesy($icon));
		ImageDestroy($icon);
		$yoffset += 26;

		while ($row = mysql_fetch_assoc($result))
		{
			$counter++;
			$rest = (mysql_num_rows($result) - $counter) + 1;
			$entrylimit = $this->config['max_displayed_stations'];
			if ( (($entrylimit) && ($counter > $entrylimit)) || (($yoffset >= (imagesy($image) - 36)) && ($rest > 1)) )
			{
				break;
			}

			// Preis
			$text = ' Eur'; // Euro-Zeichen geht nicht
			$text = $row['preis'].$text;
			// Datum
			//$text = $text.'  '.strftime( "%d.%m.", strtotime($row['datum']));
			$text = $text.'  '.strftime( "%d.%m.%y %H:%M", strtotime($row['datum']));
			// Tankstelle
			$text = $text.'  '.$row['station'];

			// determine button color
			$colorArray = htmlColorToRgb('#424242');
			$color = ImageColorAllocate ($image, $colorArray[0], $colorArray[1], $colorArray[2]);

			// print appointment text and button
			if (stripos($text,'aral')>0)			$png = 'resources/icons/tanken/aral.png';	// Aral-Tankstelle
			elseif (stripos($text,'agip')>0)		$png = 'resources/icons/tanken/agip.png';	// Agip-Tankstelle
			elseif (stripos($text,'bft')>0)			$png = 'resources/icons/tanken/bft.png';	// BFT-Tankstelle
			elseif (stripos($text,'esso')>0)		$png = 'resources/icons/tanken/esso.png';	// Esso-Tankstelle
			elseif (stripos($text,'heinlein')>0)	$png = 'resources/icons/tanken/h.png';		// Heinlein-Tankstelle
			elseif (stripos($text,'jet')>0)			$png = 'resources/icons/tanken/jet.png';	// Jet-Tankstelle
			elseif (stripos($text,'omv')>0)			$png = 'resources/icons/tanken/omv.png';	// OMV-Tankstelle
			elseif (stripos($text,'shell')>0)		$png = 'resources/icons/tanken/shell.png';	// Shell-Tankstelle
			else 	$png = 'resources/icons/tanken/t.png';
			$wicon = ImageCreateFromPNG ( $png );
			ImageCopy($image, $wicon, 25, $yoffset, 0, 0, imagesx($wicon), imagesy($wicon));
			ImageDestroy($wicon);

			imagettftextboxopt($image, 12, 0, 50, $yoffset, $style['textcolor'], $style['font'], $text, $opt_entry);

			$yoffset += 18;
		}
		$yoffset += 10; // 26;
		mysql_free_result($result);
	}

	private function addStation($preis, $datum, $station)
	{
		$query = "REPLACE INTO `if_tanken` SET
					`preis`= '".mysql_real_escape_string($preis)."',
					`datum`= FROM_UNIXTIME($datum),
					`station`= '".mysql_real_escape_string($station)."'";

		mysql_query($query, $this->dbconn) or die('Error, insert query failed: '.mysql_error());
	}
}
?>
 
Zuletzt bearbeitet:
Hallo Michael

Vielen Dank für Deine Mühe .Es funktioniert allerdings nicht richtig.
Wenn ich Längen-und Breitengrad eingebe funktioniert es ,wenn ich eine Ort oder eine PLZ eingebe bleibt die Datenbank und auch die Anzeige leer.
Ausserdem kann ich das Bild über meinen PC nicht mehr aufrufen,"die Grafik kann nicht angezeigt werden,da sie Fehler enthält. Auf dem Bilderrahmen läuft es aber seltsamerweise.
Code:
Notice: Undefined variable: names in C:\xampp\htdocs\infoframe\index.php on line 63

Notice: Undefined offset: 37 in C:\xampp\htdocs\infoframe\index.php on line 69

Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C:\xampp\htdocs\infoframe\library\dbconn.php on line 34

Notice: Constant MAGPIE_DIR already defined in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 20

Notice: Constant MAGPIE_CACHE_DIR already defined in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 21

Notice: Undefined index: action in C:\xampp\htdocs\infoframe\index.php on line 106

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 2 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 2 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 2 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 2 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 5 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 5 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 3 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 3 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 3 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 3 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 3 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 3 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 3 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 3 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 2 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 2 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 3 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 3 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 11 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 11 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\infoframe\plugins\CallsPlugin.php on line 107

Warning: mysql_free_result() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\infoframe\plugins\CallsPlugin.php on line 126

Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\infoframe\plugins\CallsPlugin.php on line 188

Warning: mysql_free_result() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\infoframe\plugins\CallsPlugin.php on line 196

Notice: Undefined offset: 3 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 3 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined variable: counter in C:\xampp\htdocs\infoframe\plugins\BenzinPlugin.php on line 161

Notice: Undefined offset: 15 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 17 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 2 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 2 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 2 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 2 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined variable: xoffset in C:\xampp\htdocs\infoframe\plugins\CalendarPlugin.php on line 275

Notice: Undefined variable: xoffset in C:\xampp\htdocs\infoframe\plugins\CalendarPlugin.php on line 277

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 2 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 2 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined variable: xoffset in C:\xampp\htdocs\infoframe\plugins\CalendarPlugin.php on line 275

Notice: Undefined variable: xoffset in C:\xampp\htdocs\infoframe\plugins\CalendarPlugin.php on line 277

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 99

Notice: Undefined index: tvmovie_regex_1 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 109

Notice: Undefined offset: 5 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 5 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 4 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 4 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 12 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 12 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 5 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 5 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 11 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 11 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 10 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 10 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 4 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 4 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined index: tvmovie_url_2 in C:\xampp\htdocs\infoframe\plugins\TVMoviePlugin.php on line 82

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_1 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined offset: 5 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 5 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 7 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 7 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 7 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 7 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 6 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Deprecated: Function split() is deprecated in C:\xampp\htdocs\infoframe\library\magpierss\rss_parse.inc on line 153

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined index: max_age_in_minutes_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 99

Notice: Undefined index: title_regex_2 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 109

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined index: feed_url_3 in C:\xampp\htdocs\infoframe\plugins\FeedPlugin.php on line 82

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 1 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 4 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Notice: Undefined offset: 4 in C:\xampp\htdocs\infoframe\library\imagettftextboxopt.php on line 126

Das sind die Fehlermeldungen die ausgespuckt werden,wenn ich in der index.php auf "ERROR_ALL" umstellen.
Ich sehe nur keinen Fehler der mit dem neuen BenzinPlugin zu tun hat.:confused:

Eine Bitte hätte ich noch.Könntest Du das Plugin bitte so umstellen,das ich nur 2 Orte zur Abfrage eingeben kann.Der Radius nützt mir nix, da kommen zu viele Tankstellen die mich nicht interessieren.

Vielen Dank

Volker
 
BenzinPlugin

Hi Volker,
Längen und Breitengrad sind sowieso genauer ;)

Eine Bitte hätte ich noch.Könntest Du das Plugin bitte so umstellen,das ich nur 2 Orte zur Abfrage eingeben kann.

Lass es einfach zweimal laufen. Mach Dir ein BenzinPlugin_1.php und eine neue Datenbank if_tanken_1. Bitte auch im Quelltext ändern. Nicht vergessen die erste Zeile class BenzinPlugin implements IPlugin auch auf BenzinPlugin_1 zu ändern.

Der Radius nützt mir nix, da kommen zu viele Tankstellen die mich nicht interessieren.
Genau dafür ist er ja da. Mach ihn so klein, dass nicht so viele uninteressante Tankstellen kommen.

Ansonsten schau mal in Post 2050, 2082 und 2083. Dort haben Spoon3er, xxolli und chross ihre Lösungen für das Benzinplugin gepostet. Ich habe sie nicht getestet, vielleicht kommst Du damit besser zurecht.

Gruß, Michael...
 
InfoFrame

Hallo Tommy.Z

hier ist eine ZIP meiner Installation.

  • wie bereits geschrieben läuft alles auf einem Raspi (apache, php und mysql).
  • InfoFrame.php hat einige Anpassungen erfahren, damit ich per Fernbedienung den Rahmen von Infoframe in normalen Rahmen umschalten kann.
  • der Callmonitor läuft auf dem Raspi statt auf der Fritzbox

Gruß, Michael...
 
Zuletzt bearbeitet:
Hallo Michael
Ich werde mich nach den Feiertagen nochmal damit beschäftigen.

Danke für deine Hilfe

Volker
 
Danke Marvin, werd ich bei Gelegenheit gleich mal testen
 
..."der Callmonitor läuft auf dem Raspi statt auf der Fritzbox"... ?

Hallo Michael. Das wäre ja ein Traum - braucht man denn dann die Fritzbox überhaupt noch? Ich würde auch gerne alles auf dem Raspi haben (Infoframe, FHEM, MAME,...)

Gruß
Jörg
 
Der Teil, der die ankommenden Anrufe auf Port 1012 signalisiert, läuft nach wie vor auf der Box. Die Auswertung und der Start der entsprechenden Events auf dem Raspi. Hat den Vorteil, dass die Box nicht mehr "gefreetzed" sein muss.
Gruß, Michael...
 
Zuletzt bearbeitet:
Der Teil, der die ankommenden Anrufe auf Port 1012 signalisiert, läuft nach wie vor auf der Box. Hat den Vorteil, dass die Box nicht mehr "gefreetzt" sein muss.

Hallo Michael,

jetzt machst Du mich aber neugierig. Wie genau funktioniert das den? Habe schon immer mit dem RasPi geliebäugelt, jedoch noch keinen richtigen Grund gefunden diesen anzuschaffen und einzurichten. Wie genau geht das mit dem Port 1012 und die ist dieser an dem RasPi angebunden?

Wie sehr ausgelastet ist der RasPi wenn der gesamte InfoFrame drauf läuft?
 
Der Teil, der die ankommenden Anrufe auf Port 1012 signalisiert, läuft nach wie vor auf der Box. Die Auswertung und der Start der entsprechenden Events auf dem Raspi. Hat den Vorteil, dass die Box nicht mehr "gefreetzed" sein muss.
Hallo Michael.

Bei mir holt die Box noch per cornjob das Bild vom Raspi und stellt es als Netzwerkordner für den Frame zur Verfügung. Den Schritt kann man sich bestimmt auch sparen, oder?

Gruß
Jörg
 
Hallo Jörg,
ich denke ja, lass den Raspi das Bild doch direkt in den Ordner schreiben.
Gruß, Michael...
 
Holen Sie sich 3CX - völlig kostenlos!
Verbinden Sie Ihr Team und Ihre Kunden Telefonie Livechat Videokonferenzen

Gehostet oder selbst-verwaltet. Für bis zu 10 Nutzer dauerhaft kostenlos. Keine Kreditkartendetails erforderlich. Ohne Risiko testen.

3CX
Für diese E-Mail-Adresse besteht bereits ein 3CX-Konto. Sie werden zum Kundenportal weitergeleitet, wo Sie sich anmelden oder Ihr Passwort zurücksetzen können, falls Sie dieses vergessen haben.