FRA2009 Error

Results 1 to 2 of 2
  1. #1
    Enthusiast Self is offline
    MemberRank
    Mar 2009 Join Date
    In a Cave with a Pack of Wolves.Location
    49Posts

    FRA2009 Error

    Hey Guys...
    I got a problem, everytime I go to my website hich has FRA2009 I get this error:
    Code:
    Fatal error: Call to undefined function mssql_connect() in C:\AppServ\www\secure\config.php on line 32
    USING APPSERVER.
    I checked my Config.php:
    Code:
    <?
    
    @session_start();
    
    //MSSQL Server configuration
    
    $_MSSQL[Host]               = "*****\SQLEXPRESS";
    $_MSSQL[User]               = "sa";
    $_MSSQL[Pass]               = "*****";
    $_MSSQL[DBNa]               = "GunzDB";
    
    //MySQL Server configuration
    
    $_MYSQL[Host]               = "localhost";
    $_MYSQL[User]               = "root";
    $_MYSQL[Pass]               = "*****";
    $_MYSQL[DBNa]               = "foro";
    
    //Configuration
    
    $_CONFIG[NewsFID]           = 2;
    $_CONFIG[EventsFID]         = 0;
    $_CONFIG[vBulletinPrefix]   = "xxxxx";
    $_CONFIG[ForumURL]          = "http://xxx.tk/";
    
    //Offline page
    $_CONFIG[OfflinePage]       = "";
    
    
    
    
    $r = mssql_connect($_MSSQL[Host], $_MSSQL[User], $_MSSQL[Pass]) or die("Cant connect to database");
    mssql_select_db($_MSSQL[DBNa], $r);
    
    ?>
    I dont see whats wrong...
    Somebody please help me if they know what it is:pray:
    Last edited by Self; 03-10-09 at 02:00 AM.


  2. #2
    Enthusiast fudenciodasilva is offline
    MemberRank
    Dec 2008 Join Date
    39Posts

    Re: FRA2009 Error

    try to check your if u abled the mssql.dll at your php.ini
    you can also try to search for a php.ini with the needed fixes (i use this: http://forum.ragezone.com/f497/fix-t...errors-605867/, it's working correctly for me)



Advertisement