I made an application in Codeigniter and locally works fine, recently went up to an IIS server, but I get this error:
Fatal error: Call to a member function result_array () on a non-object in C: \ inetpub \ santisroot \ albachisa \ application \ models \ master_model.php on line 27
I was researching and found that it could be for persistent connections, so change the line $ db [‘default’] [‘pconnect’] = TRUE; in my database.php to $ db [‘default’] [‘pconnect’ ] = FALSE;
but still not working.
What am I doing wrong?