DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

EXT: saltation. & FACTORY MMS receive

Author:Kasper Skårhøj
Created:2002-11-01T00:32:00
Changed:2007-03-01T15:06:59
Author:Matthias Neubacher
Email:mneubacher@saltation.de
Info 3:
Info 4:

EXT: saltation. & FACTORY MMS receive

Extension Key: salt_mms_recv

Copyright 2000-2002, Matthias Neubacher, <mneubacher@saltation.de>

This document is published under the Open Content License

available from http://www.opencontent.org/opl.shtml

The content of this document is related to TYPO3

- a GNU/GPL CMS/Framework available from www.typo3.com

Table of Contents

EXT: saltation. & FACTORY MMS receive 1

Introduction 1

Installation & Configuration 1

Provider setup 1

Implementing content handlers 2

Introduction

This extension is brought to you by saltation. Brün & Jeisecke GbR ( http://www.saltation.de ) and FACTORY Werbeagentur ( http://www.factorywerbeagentur.de ). It receives a MMS from a MMS service provider (GOYYA Marketing OHG, http://www.goyya.com ) via XMLRPC.

Installation & Configuration

Just install the extension via the extenision manager.

There are only two settings to configure.

img-1

You have to add a new backend user to your TYPO3-installation. This user will be used for creating the news entries. The default username is “_CLI_mms_recv”. You may adjust it to your needs by modifying mod1/conf.php

Provider setup

Tell your provider the URL to the recv.php-script, e.g.: http://www.myhost.com/typo3conf/ext/salt_mms_recv/mod1/recv.php

Implementing content handlers

Content handlers are implemented as new extensions. Create a new class with a public “handleMMS($mms)” method.

Then register this class in ext_localconf.php by adding an entry as follows:

$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/salt_mms_recv/mod1 /recv.php']['messageHandlers'][] = 'your_class_name';

See the salt_mms_ttnews extension for an example implementation.

img-2 EXT: saltation. & FACTORY MMS receive - 2