Jump to content

list users


hpub

Recommended Posts

Your website can be ran onto your personal computer as well, if it has all services to do this task. Anyway...I suspect you're deployed the scripts of your website onto a remote windows server using IIS web server as default one and maybe, this error coming from IIS overriding the mysql error of bad connection. Not sure for that. Google it. I am not familiar with windows system and not able to help you here.

 

Next time, when you have a problem, be so nice to explain everything in more detail from the very beginning.    

Link to comment
https://forums.phpfreaks.com/topic/291035-list-users/page/2/#findComment-1491271
Share on other sites

create a new test  .php file on your server with the following code in it and let us know what output it produced when you run it - 

<?php

var_dump(ini_get('display_startup_errors'));
var_dump(ini_get('display_errors'));
var_dump(error_reporting());
echo '<br>';

ini_set('display_startup_errors',1);
ini_set('display_errors',1);
error_reporting(-1);

var_dump(ini_get('display_startup_errors'));
var_dump(ini_get('display_errors'));
var_dump(error_reporting());
Link to comment
https://forums.phpfreaks.com/topic/291035-list-users/page/2/#findComment-1491667
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.