Layar: Unterschied zwischen den Versionen
Aus Wikizone
| Zeile 16: | Zeile 16: | ||
* Download von http://code.google.com/p/porpoise/downloads | * Download von http://code.google.com/p/porpoise/downloads | ||
* Entpacken z.B. in Verzeichnis /porpoise | * Entpacken z.B. in Verzeichnis /porpoise | ||
| + | * Schützen des config Verzeichnisses (oder sogar woanders hinpacken wo es nicht aus dem Web erreicht werden kann. Wenn es verschoben wird in config.php den Pfad anpassen. | ||
| + | * Aufruf von /web/porpoise.php | ||
| + | * * Wenn ein Fehler kommt class already loaded in porpoise.inc.php folgendes anpassen: | ||
| − | * | + | <pre>#/** OAuth aware HTTP client */ |
| + | if (! class_exists('HttpRequest')){ | ||
| + | print_r("require class HttpRequest"); | ||
| + | require_once("httprequest.class.php"); | ||
| + | } | ||
| + | </pre> | ||
| + | |||
| + | * | ||
Version vom 10. Juni 2011, 16:43 Uhr
Layar Augmented Reality Plattform für mobile Endgeräte
Übersicht
Porpoise
PorPOISe is a server for Layar clients. It converts your data sets of POIs (Points of Interest) into responses to the Layar client. Things like JSON formatting and distance calculation are all done for you. PorPOISe supports XML files and SQL databases as data stores.
Es könnte so genutzt werden daß Typo3 ein xml File erzeugt das wiederum von porpoise für Layar zur Verfügung gestellt wird.
Quickstart
http://www.slideshare.net/squio/layar-development-on-the-porpoise-platform-4566820
- Download von http://code.google.com/p/porpoise/downloads
- Entpacken z.B. in Verzeichnis /porpoise
- Schützen des config Verzeichnisses (oder sogar woanders hinpacken wo es nicht aus dem Web erreicht werden kann. Wenn es verschoben wird in config.php den Pfad anpassen.
- Aufruf von /web/porpoise.php
- * Wenn ein Fehler kommt class already loaded in porpoise.inc.php folgendes anpassen:
#/** OAuth aware HTTP client */
if (! class_exists('HttpRequest')){
print_r("require class HttpRequest");
require_once("httprequest.class.php");
}