MuWeb 0.9 Problems

Results 1 to 2 of 2
  1. #1
    Apprentice gonzfishin is offline
    MemberRank
    May 2009 Join Date
    15Posts

    MuWeb 0.9 Problems

    Hello! I seem to be having some issues installing MuWeb 0.9. I tried following guides, I went through allot of guides, but I end up with the same problem. When I extract web files in my htdocs folder after configuring my php.ini and registering the registris. I edit config.inc.php. As I go to my browser and type localhost I get allot of gibberish errors and when I go to install.php i get errors like the following:


    PHP Code:
    ; if($error != 1){ $install .='
    '
    ; }else{ $install .='
    Please enable the required mods from your apache folder / php.ini
    '
    ; } } switch ($_GET['next']){ case 1: if($muweb['connection_type'] == "ODBC"){ $db_primary = &ADONewConnection('odbc','date'); $connect_sql $db_primary->Connect($muweb['db_name'],$muweb['db_user'],$muweb['db_password'],$muweb['db_host']); if(!$connect_sql){ $error 1$db "NO"; }else{ $db "YES"; } $db_secondary = &ADONewConnection('odbc','date'); $connect_sql $db_secondary->Connect($muweb['db_name2'],$muweb['db_user'],$muweb['db_password'],$muweb['db_host']); if(!$connect_sql){ $error 1$db2 "NO"; }else{ $db2 "YES"; } }elseif($muweb['connection_type'] == "MSSQL"){ $db_primary = &ADONewConnection('mssql'); $connect_sql $db_primary->Connect($muweb['db_host'],$muweb['db_user'],$muweb['db_password'],$muweb['db_name']); if(!$connect_sql){ $error 1$db "NO"; }else{ $db "YES"; } $db_secondary = &ADONewConnection('mssql'); $connect_sql $db_secondary->Connect($muweb['db_host'],$muweb['db_user'],$muweb['db_password'],$muweb['db_name2']); if(!$connect_sql){ $error 1$db2 "NO"; }else{ $db2 "YES"; } } if($muweb['debug'] == 1){ $db_primary->debug true$db_secondary->debug true; } $install .=

    I cant seem to find a solution to my problem. I went through allot of guides. My server works fine however...I dont think it related to the SQL, because that works good. Anyway, Thanks!

    I would greatly appreciate if someone could help me, I'm not exactly new to this stuff, but Im not an expert either so I could use some help.

    Thanks,
    Gonzfishin.

    No matter what website I try to download and put in my folder and install, I get the same thing they all say cannot connect to my sql, and I edited config.php for all of them, please help!
    Last edited by gonzfishin; 06-12-09 at 08:51 PM.


  2. #2
    Account Upgraded | Title Enabled! evo1123 is offline
    MemberRank
    Oct 2007 Join Date
    C:\WindowsLocation
    1,197Posts

    Re: MuWeb 0.9 Problems

    are you sure you config the right thing in the config.inc.php

    did you follow this steps?

    Code:
    Enable MOD REWRITE - Go to apache\conf\httpd.conf , open it, find #LoadModule rewrite_module modules/mod_rewrite.so, delete # from the front save and restart webserver
    
        * Run in borwser install.php
             * Step 1 - Required Apache Mods
                         + GD Image Library - Can be enabled from php.ini, search for ;extension=php_gd2.dll, delete ; from the front close document and save
                         + Zend Optimizer - Can be enabled from php.ini (in xampp\apache\bin\php.ini), search for zend.ze1_compatibility_mode = Off, change Off  to On,
                                            Search zend_optimizer.enable_loader = 0, change 0 to 1, close document and save
                         + Zlib - Can be enabled from php.ini, search for ;extension=php_zlib_filter.dll, delete ; from the front close document and save
                         + Mssql - Can be enabled from php.ini, search for ;extension=php_mssql.dll, delete ; from the front close document and save
                         + Mod_Rewrite - In xampp this mod is already enabled, in others webservers you can enable it from httpd.conf



Advertisement