Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: How to use LayoutView with parser?
Post: RE: How to use LayoutView with parser?

It is important feature missing in CodeIgniter. But here is the working solution PHP Code: -- $data['title'] = 'CI4 Tutorial'; $view = view('welcome_page'); echo $parser->setData($data...
7,413 Views
11 Replies
05-08-2022, 08:17 PM
karthik_code
    Thread: CodeIgniter.com - Report problems!
Post: RE: CodeIgniter.com - Report problems!

Please set http to https redirection for Codeigniter.com, I am using a major broadband service from India, it seems almost all non-https sites are served with malicious script. So, all links in the pa...
169,607 Views
68 Replies
05-26-2021, 10:17 PM
karthik_code
    Thread: CodeIgniter 4.0.0-beta.1 Released
Post: RE: CodeIgniter 4.0.0-beta.1 Released

Awesome! I start re-writing my project to CI4 :cool:
76,384 Views
44 Replies
03-07-2019, 08:41 AM
karthik_code
    Thread: Is File Upload class creates unique file name when encrypt_name set true?
Post: RE: Is File Upload class creates unique file name ...

Thanks @jreklund & @dave friend, I finally ended with prefixing auto-increament id along with uuid to the uploaded file name. I worried about setting the original file's extension with filename, but C...
14,699 Views
7 Replies
10-31-2018, 09:42 AM
karthik_code
    Thread: Is File Upload class creates unique file name when encrypt_name set true?
Post: RE: Is File Upload class creates unique file name ...

dave friend Wrote: (10-30-2018, 09:41 AM) -- You might be interested to know that do_upload() calls set_filename() and set_filename() will append a number to the end of the filename to avoid overwrit...
14,699 Views
7 Replies
10-31-2018, 09:22 AM
karthik_code
    Thread: Is File Upload class creates unique file name when encrypt_name set true?
Post: RE: Is File Upload class creates unique file name ...

InsiteFX Wrote: (10-30-2018, 03:07 AM) -- It's in the User's Guide. encrypt_name If set to TRUE the file name will be converted to a random encrypted string.  This can be useful if you would like t...
14,699 Views
7 Replies
10-30-2018, 08:55 AM
karthik_code
    Thread: Is File Upload class creates unique file name when encrypt_name set true?
Post: Is File Upload class creates unique file name when...

Is File Uploading class in code ignter creates unique file name when encrypt_name set true?         PHP Code: -- $config['upload_path'] = $abs_path;            $config['allowed_types'] = 'doc|d...
14,699 Views
7 Replies
10-29-2018, 07:51 PM
karthik_code
    Thread: codeigniter3 file uploading not working
Post: RE: codeigniter3 file uploading not working

php fileinfo extension is required for CI 3.1.1 and above. Un-comment the following line in php.ini file. extension=php_fileinfo.dll For WHM/Cpanel Apache rebuild needs to install the fileinfo ...
19,156 Views
15 Replies
10-29-2016, 02:20 AM
karthik_code
    Thread: codeigniter3 file uploading not working
Post: RE: codeigniter3 file uploading not working

:) I have created issue in Github, hope it will be fixed soon! https://github.com/bcit-ci/CodeIgniter/issues/4887
19,156 Views
15 Replies
10-28-2016, 09:59 AM
karthik_code
    Thread: codeigniter3 file uploading not working
Post: RE: codeigniter3 file uploading not working

ijas Wrote: (10-28-2016, 07:18 AM) -- karthik_code Wrote: (10-28-2016, 05:40 AM) -- The issue is only after upgrading to CI core to 3.1.1. File upload works fine up to CI 3.1.0 -- Can you send me...
19,156 Views
15 Replies
10-28-2016, 09:02 AM
karthik_code
    Thread: codeigniter3 file uploading not working
Post: RE: codeigniter3 file uploading not working

The issue is only after upgrading to CI core to 3.1.1. File upload works fine up to CI 3.1.0
19,156 Views
15 Replies
10-28-2016, 05:40 AM
karthik_code
    Thread: codeigniter3 file uploading not working
Post: RE: codeigniter3 file uploading not working

I am also having the same problem. php.ini file not an issue.
19,156 Views
15 Replies
10-28-2016, 05:12 AM
karthik_code
    Thread: DB Query error logs not showing the script name
Post: RE: DB Query error logs not showing the script nam...

Thanks
5,381 Views
3 Replies
08-06-2016, 06:35 AM
karthik_code
    Thread: DB Query error logs not showing the script name
Post: DB Query error logs not showing the script name

For example I got the following error in log file. Quote: -- ERROR - 2016-07-27 10:19:43 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL s...
5,381 Views
3 Replies
07-27-2016, 07:05 AM
karthik_code
    Thread: Call to undefined function base_url() in the error_404 page
Post: RE: Call to undefined function base_url() in the e...

I am also having the same issue.
32,913 Views
4 Replies
07-24-2015, 09:19 PM
karthik_code
    Thread: [NEED URGENT HELP] All controllers showing 404 except default controller
Post: RE: [NEED URGENT HELP] All controllers showing 404...

From your initial statement : You have stated that the application works perfectly in your developer machine (might be Windows) and not working on live server (might be Linux). I guess there shoul...
40,022 Views
17 Replies
05-16-2015, 06:49 AM
karthik_code
    Thread: [NEED URGENT HELP] All controllers showing 404 except default controller
Post: RE: [NEED URGENT HELP] All controllers showing 404...

Can you able to access directly? example.com/index.php/controller/method
40,022 Views
17 Replies
05-16-2015, 05:37 AM
karthik_code
    Thread: CodeIgniter 3 RC3
Post: RE: CodeIgniter 3 RC3

ciadmin Wrote: (03-22-2015, 08:53 AM) -- karthik_code Wrote: (03-19-2015, 04:47 AM) -- It is better to keep a mailing to list to get notified about the new releases and security fixes. I can't s...
129,221 Views
50 Replies
03-22-2015, 08:50 PM
karthik_code
    Thread: CodeIgniter 3 RC3
Post: RE: CodeIgniter 3 RC3

Successfully upgraded entire website to CI 3.0 Long time faced issue with CI 2.x - sessions random logout is fixed. Now, multi-step registration dropouts are nearly zero. Also, many development is...
129,221 Views
50 Replies
03-22-2015, 07:15 AM
karthik_code
    Thread: Pagination over method parameters not working
Post: RE: Pagination over method parameters not working

I have checked your website. Pages with people tag throws 'No photo' message on page number 4 and above. This is due to the following hard coded value in the above code. $pager['total_rows'] = 200...
9,680 Views
0 Replies
03-20-2015, 02:49 AM
karthik_code

Theme © iAndrew 2016 - Forum software by © MyBB