#!/usr/bin/perl ############################################################################ # # (c) Markus Wolf, 1998-2010 | info@interaktiv.net # iAn interAKTIVnet GmbH | http://www.interaktiv.net # Tel. 07031-714740 | Fax. 07031-714744 # # interaktiv.shop | Online-Shop-Software | eCommerce for everyone # SHOP-START # ############################################################################ # # Diese Software ist das Eigentum der iAn interAKTIVnet GmbH (Teil des # Softwarepaketes "interaktiv.shop") und nach dem Urheberrecht geschützt. # Es handelt sich NICHT um Freeware. Jede Nutzung der Software ohne eine # gültige Lizenzvereinbarung, wird zivil- und strafrechtlich verfolgt. # # This Software is the property of iAn interAKTIVnet GmbH (part of the # software "interaktiv.shop") and is protected by copyright law - it is # NOT Freeware. Any unauthorized use of this software without a valid # license is a violation of the license agreement and will be prosecuted # by civil and criminal law. # ############################################################################ #Wechsel in das aktuelle Verzeichnis $0 =~ /^(.*)[\/\\].*/ && chdir ($1) ; #Einbindung der Libs und Module require './../libs/shop/shop_start' ; #Shop starten &shop_start() ; ############################################################################ # ENDE ############################################################################