Results 1 to 7 of 7
  1. #1
    Join Date
    Aug 2006
    Location
    Boston
    Posts
    92

    Question Media Player Coding Help

    Hey guys, I'm trying to install Flam Player for a website I'm doing. The instructions are here:

    When I paste what it says into my browser and try my login name and password that I had to change previously, it says bad login/password. I highlighted what I changed in red below. Did I do something wrong?

    PHP Code:
    <?php
    /************************************************************************************************
    * FLAM Player SETTINGS - Basic Databse / User / Password configuration *
    * Copyright (C) 2005 - DualBase Design s.e.n.c. *
    ************************************************************************************************
    * Author: DualBase Design *
    * Email: info@dualbase.com *
    * Website: http://www.dualbase.com *
    * Support: http://www.dualbase.com/forum *
    ************************************************************************************************
    * FLAM Player is not Open Source, FLA and PHP codes are copyrighted and cannot be sold *
    * *
    * YOU CAN : *
    * - Install FLAM Player where you want, for personal or commercial use *
    * (The FLAM Player footer with links must stay visible) *
    * *
    * YOU CANNOT : *
    * - Sell FLAM Player or any portion of it, as a product or a service *
    * - Copy / Modify / Rename / Decompile SWF / Redistribute FLAM Player's files wihout *
    * prior authorisation of Dualbase s.e.n.c. *
    * - Use FLAM Player to broadcast illegal MP3 files *
    ************************************************************************************************/
    //----------------------------------------------------------------------------------------------------------------------------
    // MySQL Connection parameters for FLAM Player
    //----------------------------------------------------------------------------------------------------------------------------
    # Type="MYSQL"
    # HTTP="true"
    // REQUIRED !!!
    // Enter here the setting for your MySQL Database connection : Hostname / Database name / Username / Password
    // OBLIGATOIRE !!!
    // Entrez ici les paramètres pour la connexion à la base de données MySQL : Nom d'hôte / Nom de la base / Utilisateur / Mot de passe
    $hostname_fp_mysql "localhost";
    $database_fp_mysql "database_name";
    $username_fp_mysql "database_username";
    $password_fp_mysql "database_password";
    //----------------------------------------------------------------------------------------------------------------------------
    // FLAM Player Admin settings
    //----------------------------------------------------------------------------------------------------------------------------
    // REQUIRED !!!
    // Enter here the Username / Password / Language for the FLAM Player Administration
    // OBLIGATOIRE !!!
    // Entrez ici les Nom d'utilisateur / Mot de passe / Langue pour l'administration de FLAM Player
    // Enter here "yes" or "no" to enable / disable login - Entrez ici "yes" ou "no" pour activer / désactiver l'authentification
    $login_enable "yes";
    // Choose user / password - Choisissez un nom d'utilisateur / mot de passe
    $admin_user "admin";
    $admin_pass "admin";
    // Language can only be "fr" or "en" - La langue ne peut être que "fr" ou "en"
    $admin_default_lang "en";
    // Demo mode ("yes" / "no"), enable or disable limited version - Mode démo ("yes" / "no"), active ou désactive une version bridée
    $demo_mode "no";
    //----------------------------------------------------------------------------------------------------------------------------
    // FLAM Player table names
    //----------------------------------------------------------------------------------------------------------------------------
    // OPTIONAL
    // These are the two tables that will be created in your database, you can change their names
    // FACULTATIF
    // Ce sont les deux tables qui seront créées dans votre base de données, vous pouvez changer leurs noms
    // Musics table name / Nom de la table des musiques
    $fp_musics_table "flamplayer_musics";
    // Artists table name / Nom de la table des artistes
    $fp_artists_table "flamplayer_artists";
    ?>

  2. #2
    Join Date
    Jul 2003
    Location
    Castle Pines, CO
    Posts
    7,189
    Quote Originally Posted by shotthebreeze
    PHP Code:
    $hostname_fp_mysql "localhost";
    $database_fp_mysql "database_name";
    $username_fp_mysql "database_username";
    $password_fp_mysql "database_password"
    I am not much of a programmer with PHP and I just want to make sure. You did enter the correct database name above right? You created the database, gave it a name, created a user name and password?

  3. #3
    Join Date
    Aug 2006
    Location
    Boston
    Posts
    92
    yes indeed. thats why i can't figure it out

  4. #4
    Join Date
    Nov 2003
    Location
    Newport Beach, CA
    Posts
    2,923
    Just out of curiosity is this an Ensim server? If so you might try localhost.localdomain for the location
    Show your reciprocal links on your website. eReferrer

  5. #5
    Join Date
    Jul 2003
    Location
    Castle Pines, CO
    Posts
    7,189
    You might get better help as well if you ask the mods to move it to the programming discussion zone.

  6. #6
    Join Date
    Oct 2002
    Location
    /roof/ledge
    Posts
    28,088
    But it *is* in programming.

    ..now that I've moved it...

  7. #7
    Join Date
    Jul 2003
    Location
    Castle Pines, CO
    Posts
    7,189
    Thanks for that
    Quote Originally Posted by bear
    ..now that I've moved it...
    Just in case no one see that light gray you just had to use

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •