IIS Probe

02/03/2015 21:04 mohamad512#1
Hey ..

Since no one answer my question in the help thread i think more people may see it here :

so i have run the infinite cash shop on xampp !! but when i try to run it on IIS

it just don'r run and stop on connect.php script!! the script working 100% on xampp but not IIS.

Do any one now why , or how to fix it @?

Thx
02/03/2015 21:21 XavierDeFawks#2
Does it display an error message and if so can you post a picture please?
02/03/2015 22:25 mohamad512#3
No it's not .. no error message's !!
the connect.php script make a connection to SQL it Select the account and the password from the SQL and check if u open from the client or not ..etc , on xampp it run and send me to the function_shop.php if the information were Correct .. , but on IIS it stuck on connect.php script is it possible because IIS is not supporting MySQL ?
02/03/2015 23:03 ThunderNikk#4
Check your account table in SQL

Is it account or accounts and what is the connect.php script call for?

If I recall I had no trouble with the connection script when I ran it but I was working with 7.4 and 8.1 server files and I am pretty sure it was written based off of the 7.3 or 7.4 server files.

Which server file version you are running may have something to do with it.

BTW I tend not to get involved in your questions usually because it is kind of transparent that you are using quite a Frankenstein combination of server and client files. It becomes kind of difficult to figure out where you may be going wrong.
02/03/2015 23:43 XavierDeFawks#5
The cash shop was designed for mssql not mysql. O.o
Also try enable php error logs and see if it will display an error message.
02/03/2015 23:52 ismokedrow#6
-Coughs- MSSQL_ api (e.g. anything like MSSQL_CONNECT) is depreciated past PHP 5.1 or 5.2. So use that version or simply do a basic recode to SQLSRV_ api and use PHP 5.4+ w/ PHP Driver 3.0+ (just change instances of MSSQL_ to SQLSRV_ [BE MINDFUL there are subtle differences between the api but they are LARGELY the same]
02/04/2015 05:57 TheSuperKiller#7
change your php version .
02/04/2015 14:41 mohamad512#8
thx guys i'm gonna try ...

but i have changed allot of thing's then it work but these Error show up :

Fatal Error call to undefined function mssql_connect() in c:\inetpub\wwwroot\shop\db_config.php on line 7
02/04/2015 16:32 XavierDeFawks#9
Well you can either update to sqlsrv or just make sure mssql is enabled in ur php.ini
02/04/2015 16:48 mohamad512#10
I check it's Enabled !
02/04/2015 20:33 ismokedrow#11
I thought I was clear when I said mssql doesn't work at alllllllllll above php 5.2 you should recode for sqlsrv if you use iis
02/04/2015 22:33 rastamannns#12
Give information on php on IIS and Xampp. <?php phpinfo() ?>
02/05/2015 03:08 mohamad512#13
Thx @ismokedrow
:)