• » webSPELL.org - Free Content Management System
  • Language switch: English German
  • login



    » lost password?   » register now
  • About webSPELL

    webSPELL is a free Content Management System which was especially developed for the needs of esport related communities. Since a short while we are also offering an optimized and enhanced webSPELL version for the special requirements of non-profit organisations. The purpose of both systems is to offer a professional and free opportunity to create and administrate your own website in an easy and optimized way.

    » Learn more about webSPELL     » Download webSPELL now!
  • Advertisement

    Follow us

  • Sort:      1 2 3 4  » printview
    Author
    Message
    webSPELL lover
    1156 Posts
    03.11.2011, 21:20 email offline quote 

    Sehr geehrte Damen und Herren,

    mit dieses Addon können Sie Liveshows von Livestreamsender, wie own3d.tv, livestream.com und justin.tv, auf eure Homepage einbinden.

    Das ganze funktioniert über das API System, welches den Addon erlaubt Die Zuschauerzahl und den Status der Sendung abzulesen.

    Besonderheiten:

    - 2 Unterseiten für Online und Offline Liveshow´s
    - Einstellen, ob die Show automatisch aktiviert wird, oder erst durch ein Admin freigeschalten werden musst
    - Einstellen, wer alles Show´s reinstellen darf
    - Liveshow anzeigen/auflisten oder nicht
    - Breite des Player bestimmen (Höhe wird automatisch angepasst)
    - sc_liveshow.php
    - uvm.

    Läuft nur mit PHP5!

    Livedemo: Klick mich

    Download: Klick mich

    MFG Sysix
    Administrator
    Member of webSPELL e.V.
    2566 Posts
    03.11.2011, 21:35 email offline quote 

    Die Konstruktion mit dem Include der einzelnen Datein is nen bisschen gefährlich.. Wenn da ne falsche Datei im ordner ist, kann dir die Page kaputt gehn.
    Zudem läuft es nur mit php5.
    webSPELL lover
    1156 Posts
    03.11.2011, 21:38 email offline quote 

    Jop ist mir aber als Codesparenste Version eingefallen zwinkern
    Und zudem glaube ich, dass die meisten sich sowieso nicht an API rantrauen.
    Ist halt nur der Vorteil, dass man falls ein Stream man nicht möchte, ihn ganz leicht entfernen kann.

    das mit PHP5 ist mir auch bekannt, habs aber vergessen zu erwähen danke lächeln
    Administrator
    Member of webSPELL e.V.
    2566 Posts
    03.11.2011, 21:41 email offline quote 

    Achja die Ergebnisse von den Apis sollten mindestens 1 Minute gespeichert / gecached werden. Sonst bremst es die Webseite total aus, wenn nicht sogar die Api die Antwort verweigert.
    webSPELL lover
    1022 Posts
    03.11.2011, 22:33 offline quote 

    Philipp wrote:

    Achja die Ergebnisse von den Apis sollten mindestens 1 Minute gespeichert / gecached werden. Sonst bremst es die Webseite total aus, wenn nicht sogar die Api die Antwort verweigert.

    Sonst unterstützen justin.tv und livestream.com auch die API Antwort via JSON incl. JS-Callback. Wäre ne Alternative das clientseitig abzufragen.

    http://www.henningk.de | no support for addons etc. via PN or IM.
    webSPELL user
    186 Posts
    04.11.2011, 13:49 email offline quote 

    If you are using the Cup Addon v5.1 then you need to edit your _functions.

    I got this program working on v4.2.2

    Code:
    1.
    2.
    3.
    // -- LIVESHOW -- //

    systeminc('func/liveshow');


    NOT:

    Code:
    1.
    2.
    3.
    4.
    5.
    6.
    7.
    8.
    9.
    10.
    11.
    12.
    13.
    14.
    15.
    16.
    17.
    18.
    19.
    20.
    21.
    22.
    23.
    24.
    25.
    26.
    27.
    28.
    29.
    30.
    31.
    32.
    33.
    34.
    35.
    36.
    // -- LIVESHOW -- //

    systeminc('func/liveshow');

    function cleartext($text, $bbcode=true, $calledfrom='root') {
         $text = htmlspecialchars($text);
         $text = strip_tags($text);
         $text = smileys($text,1,$calledfrom);
         $text = insertlinks($text,$calledfrom);
         $text = flags($text,$calledfrom);
         $text = replacement($text, $bbcode);
         $text = htmlnl($text);
         $text = nl2br($text);

         return $text;
    }

    function htmloutput($text) {
         $text = smileys($text);
         $text = insertlinks($text);
         $text = flags($text);
         $text = replacement($text);
         $text = htmlnl($text);
         $text = nl2br($text);

         return $text;
    }

    function clearfromtags($text) {
         $text = getinput($text);
         $text = strip_tags($text);
         $text = htmlnl($text);
         $text = nl2br($text);

         return $text;
    }
    webSPELL user
    186 Posts
    04.11.2011, 14:41 email offline quote 

    Is there a way that I can make the sc_liveshow horizontal?

    Examle: Livestream #1 - LiveStream #2

    Instead of Example:
    Livestream #1
    Livestream #2



    To fit the area on my site: http://www.reflexleague.com

    Thank you for the help lächeln
    webSPELL lover
    1156 Posts
    04.11.2011, 19:28 email offline quote 

    snJustin wrote:

    Is there a way that I can make the sc_liveshow horizontal?

    Examle: Livestream #1 - LiveStream #2

    Instead of Example:
    Livestream #1
    Livestream #2



    To fit the area on my site: http://www.reflexleague.com

    Thank you for the help lächeln


    yes of course lächeln

    sc_liveshow.php search for:

    Code:
    1.
    echo'<table width="100%" cellspacing="0" cellpadding="2">';


    replace with:

    Code:
    1.
    echo'<table width="100%" cellspacing="0" cellpadding="2"><tr>';


    search for:

    Code:
    1.
    echo'</table>';


    replace with:

    Code:
    1.
    echo'</tr></table>';


    and now you delete in the templates/sc_liveshow.html die <tr> and the </tr> tag fröhlich
    webSPELL user
    186 Posts
    04.11.2011, 19:33 email offline quote 

    Thanx a ton lächeln
    webSPELL newbie
    9 Posts
    25.11.2011, 14:36 email offline quote 

    Hallo,
    also ich hab es installiert und wenn ich dann index.php?site=liveshow aufrufe, kommt nix.
    wo genau kann ich da einstellen, was für ein stream er zb. zeigen soll usw. wenn ich irgendeine php direkt aufrufen will, kommen nur fehlermeldungen.

    sry aber ich benutze erst seit neuestem webspell und die readme.txt die dabei war, erklärte nur den installvorgang und nicht die handhabung.

    mfg
    Sort:      1 2 3 4  » printview


    To start or to reply to a topic you have to be registered and logged in!

    register now
    login
  • » Support

    » Topics
    22.05.2013 - 00:47 - 5 Replies
    » msql datenbank transfer
    msql datenbank transfer
    Last post: pgene
    Board: DE - Technischer Support
    22.05.2013 - 00:47
    22.05.2013 - 00:03 - 9 Replies
    » Mein Forum
    Mein Forum
    Last post: Lordy4007
    Board: DE - Fragen zur Seite
    22.05.2013 - 00:03
    21.05.2013 - 22:43 - 5 Replies
    » forum anzeige erweitern
    forum anzeige erweitern
    Last post: Swordfish3000
    Board: DE - Allgemeiner Support
    21.05.2013 - 22:43
    21.05.2013 - 20:12 - 3 Replies
    » When the update?
    When the update?
    Last post: Argu
    Board: EN - General
    21.05.2013 - 20:12
    21.05.2013 - 19:43 - 9 Replies
    » login startseite
    login startseite
    Last post: Argu
    Board: DE - Technischer Support
    21.05.2013 - 19:43
    21.05.2013 - 13:18 - 7 Replies
    » [Biete] Template Designs
    [Biete] Template Designs
    Last post: Marceld
    Board: DE - Biete
    21.05.2013 - 13:18
    21.05.2013 - 05:15 - 0 Replies
    » Need Designer for Logo/Te...
    Need Designer for Logo/Template
    Last post: Kody
    Board: EN - General
    21.05.2013 - 05:15
    21.05.2013 - 05:13 - 0 Replies
    » Looking for Designers/Cod...
    Looking for Designers/Coders (paid)
    Last post: Kody
    Board: EN - Requests
    21.05.2013 - 05:13
    20.05.2013 - 21:11 - 12 Replies
    » High Quality Website
    High Quality Website
    Last post: Dansjostedt
    Board: EN - Offers
    20.05.2013 - 21:11
    20.05.2013 - 18:27 - 4 Replies
    » [S] Tester für neuen Foru...
    [S] Tester für neuen ForumMod
    Last post: Argu
    Board: DE - Anfragen
    20.05.2013 - 18:27
    20.05.2013 - 11:47 - 5 Replies
    » Suche Designer GGL:Geld
    Suche Designer GGL:Geld
    Last post: Dynamic-Webmedia
    Board: DE - Suche
    20.05.2013 - 11:47
    20.05.2013 - 00:07 - 0 Replies
    » [S] Suche Programmierer
    [S] Suche Programmierer
    Last post: phoenix762
    Board: DE - Suche
    20.05.2013 - 00:07
    18.05.2013 - 19:58 - 36 Replies
    » Exklusiv Webseite zur Mie...
    Exklusiv Webseite zur Miete
    Last post: liQweb
    Board: DE - Biete
    18.05.2013 - 19:58
    18.05.2013 - 12:21 - 1 Replies
    » Query failed
    Query failed
    Last post: LoRd
    Board: DE - Allgemeiner Support
    18.05.2013 - 12:21
    18.05.2013 - 09:36 - 3 Replies
    » benötige hilfe bei paar k...
    benötige hilfe bei paar kleinigkeiten
    Last post: immostar
    Board: DE - Technischer Support
    18.05.2013 - 09:36
    18.05.2013 - 03:33 - 4 Replies
    » [SELL] Gaming Website
    [SELL] Gaming Website
    Last post: hornyst
    Board: EN - Offers
    18.05.2013 - 03:33
    18.05.2013 - 00:32 - 6 Replies
    » Hide BBCODE Echo
    Hide BBCODE Echo
    Last post: dado2106
    Board: EN - Technical support
    18.05.2013 - 00:32
    17.05.2013 - 21:42 - 0 Replies
    » website help
    website help
    Last post: envy0024
    Board: EN - Technical support
    17.05.2013 - 21:42
    17.05.2013 - 21:03 - 1 Replies
    » Need Coder!
    Need Coder!
    Last post: iG.ShAdOw
    Board: EN - Requests
    17.05.2013 - 21:03
    17.05.2013 - 20:44 - 9 Replies
    » Query failed!
    Query failed!
    Last post: LoRd
    Board: DE - Allgemeiner Support
    17.05.2013 - 20:44
    » Partners
    Bilderkiste.org Image Hosting
    k3rmit.org
    PascalMh.de


    » Blog
    28.03.2013 - derchris
    » Those damn spammers