I am running CodeIgniter PHP Framework on Google APP Engine using flex environment. Everything is going well except for one small issue, I unable to create folder and upload files because of mkdir …
Tag: codeigniter-2
PHP Codeigniter Session error: Message: session_cache_limiter(): Cannot change cache limiter when session is active
php -v:7.3.11 codeigniter -v:3.0.3 A PHP Error was encountered Severity: Warning Message: session_cache_limiter(): Cannot change cache limiter when session is active Filename: core/MY_Controller….
how to separate config.php, database.php, constant.php file domain specific in codeigniter v3.1.10?
I’m using codeigniter v3.1.10 and i have two projects with domain name abc.example.com and xyz.example.com. i know that in codeigniter according to the environment production or development we could …
CodeIgniter error “Unable to connect to your database server using the provided settings.”
I’ve just started work on an old CI project with a lot of old code. The application works fine on the server, but when I pull it to my local environment (it’s also in a github repository), I get the “…
In Codeigniter what is the purpose of hook ? Why we have to create?
i am new to codeigniter. In Every interview all asked about hooks. i am not getting that what is hook why i have to use it ? what the benefit of it. Answer This is example link for use it hooks in codeigniter https://qasimbadami.wordpress.com/2012/05/18/codeigniter-hooks-tutorial/ Note : suppose you have big project and almost 100 controller , if every time to
Soap service with an ssl certificate with password (PHP)
I need to access a SOAP service with a certificate protected by password. I’m new in PHP (with PHP 5.4 in CodeIgniter 2) and have tried some options that doesn’t work for me. I have the following …
How to insert data using CI active record to field names with space?
How to insert data to the fields with name containing space. eg : Insert batch is also not working. Answer Check the following code. Which worked for me. use $db->set method
CodeIgniter: Preventing row_array() vs row() typo’s?
Twice now I’ve mistakenly used row() instead of row_array() when fetching a single row result. Usually, it goes unchecked without any warning messages. 15-30 minutes later I finally notice the issue; …