AppServer Help

Results 1 to 6 of 6
  1. #1
    Member SluggerMyers is offline
    MemberRank
    Aug 2008 Join Date
    70Posts

    AppServer Help

    Okay, I am using AppServer trying to set up the GunzWebPackage (found in the Downloads thread). I did everything in the read me, but when I load it up I get this error:

    Fatal error: Call to undefined function mssql_connect() in C:\AppServ\www\WebSite\admincp\config.php on line 28.

    I've tried all the suggestions people have given me, but so far they are no good.

    So, anymore insight would be helpful .thanks


  2. #2
    DRGunZ 2 Creator wesman2232 is offline
    MemberRank
    Jan 2007 Join Date
    Erie, PALocation
    4,872Posts

    Re: AppServer Help

    here try this:
    Code:
    <?php
    if (function_exists('mssql_connect')){
    echo "Okay, fn is there<br>------------------<br>";
    } else {
    echo "Hmmm .. fn is not even there<br>------------------<br>";
    }
    
    if(extension_loaded("mssql")) {
    echo "MSSQL is Loaded<br>";
    }
    else {
    echo "MSSQL not loaded<br>";
    }
    
    if(extension_loaded("msql")) {
    echo "MSQL is Loaded<br>";
    }
    else {
    echo "MSQL not loaded<br>";
    }
    echo '<br><br>';
    
    $ext = get_loaded_extensions();
    if(in_array('mssql', $ext))
    echo 'u have mssql installed<br><br>';
    else
    echo 'u do NOT have mssql installed<br><br>';
    
    phpinfo();
    ?>
    its a php script so make it into a .php file and open it with firefox or something.

  3. #3
    Member SluggerMyers is offline
    MemberRank
    Aug 2008 Join Date
    70Posts

    Re: AppServer Help

    I loaded it into firefox and it saidddd...
    ------------------
    "; } else { echo "Hmmm .. fn is not even there
    ------------------
    "; } if(extension_loaded("mssql")) { echo "MSSQL is Loaded
    "; } else { echo "MSSQL not loaded
    "; } if(extension_loaded("msql")) { echo "MSQL is Loaded
    "; } else { echo "MSQL not loaded
    "; } echo '

    '; $ext = get_loaded_extensions(); if(in_array('mssql', $ext)) echo 'u have mssql installed

    '; else echo 'u do NOT have mssql installed

    '; phpinfo(); ?>

  4. #4
    DRGunZ 2 Creator wesman2232 is offline
    MemberRank
    Jan 2007 Join Date
    Erie, PALocation
    4,872Posts

    Re: AppServer Help

    ? it shouldnt say that make sure you put it into a notepad document and saved the file as .php then load it into firefox

  5. #5
    Member SluggerMyers is offline
    MemberRank
    Aug 2008 Join Date
    70Posts

    Re: AppServer Help

    Yep, tried it three times and everytime it was the same thing

  6. #6
    Sultan of Yolo Demantor is offline
    MemberRank
    May 2008 Join Date
    GermanyLocation
    1,266Posts

    Re: AppServer Help

    Quote Originally Posted by SluggerMyers View Post
    Yep, tried it three times and everytime it was the same thing
    ??, of course you ran it from your webserver, right?



Advertisement