Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Hoster and CodeIgniter 4.0.0-rc.3
Post: Hoster and CodeIgniter 4.0.0-rc.3

I am working on a new project with CI4 (4.0.0-rc.3), because the first release version is near  :D There were no problems with the local installation with xampp. When I wanted to install the projec...
3,390 Views
3 Replies
11-15-2019, 01:56 AM
SirTom
    Thread: One-stop Auth package for CodeIgniter 4
Post: RE: One-stop Auth package for CodeIgniter 4

kilishan Wrote: (09-08-2019, 07:30 PM) -- It doesn't have a stable version released yet so you have to tell composer that you will accept beta, alpha, whatever stability in the packages. Code: -...
8,453 Views
7 Replies
10-25-2019, 10:40 AM
SirTom
    Thread: Issue with BaseController and inheritance
Post: RE: Issue with BaseController and inheritance

InsiteFX Wrote: (07-29-2019, 04:04 PM) -- You do not have to load the url helper anymore CI 4 loads it for you now. Are you using a constructor in your controllers? -- No, I do no use a construc...
8,318 Views
7 Replies
07-30-2019, 01:03 AM
SirTom
    Thread: Issue with BaseController and inheritance
Post: RE: Issue with BaseController and inheritance

PHP Code: --
8,318 Views
7 Replies
07-29-2019, 01:35 PM
SirTom
    Thread: Issue with BaseController and inheritance
Post: RE: Issue with BaseController and inheritance

In the BaseController, there is alreay helper('filesystem'): PHP Code: -- protected $helpers = ['filesystem']; -- Everything works perfectly with one BaseController. The error occurs whe...
8,318 Views
7 Replies
07-29-2019, 11:57 AM
SirTom
    Thread: Issue with BaseController and inheritance
Post: Issue with BaseController and inheritance

I have a problem with the BaseController and inheritance . I am using Sub-Folders to organize my controllers. The controllers inherit from the BaseController is: PHP Code: --
8,318 Views
7 Replies
07-29-2019, 03:35 AM
SirTom
    Thread: Redirect issue
Post: RE: Redirect issue

Thank you. This solution works, BUT it seems to be a bug. I have called the following URL: http://localhost/mySite/myController/myFunction with PHP Code: -- public $baseURL = 'http://localhost/m...
22,448 Views
8 Replies
07-26-2019, 03:04 AM
SirTom
    Thread: Redirect issue
Post: Redirect issue

Hello, I am working on a new project with Codeigniter 4.0 beta 4. I set the URL in the configuration file: PHP Code: -- public $baseURL = 'http://localhost/mysite/'; -- If I now use a redirec...
22,448 Views
8 Replies
07-25-2019, 11:18 PM
SirTom
    Thread: Save Codeigniter config data in MySql database
Post: RE: Save Codeigniter config data in MySql database

I droped the whole "hook" business and move it to the sideconfig model which is autoloaded. Now I set the whole config in the constructor of the MY_Controller. Unfortunately, the hook "post_controller...
4,337 Views
3 Replies
02-23-2018, 11:14 AM
SirTom
    Thread: Save Codeigniter config data in MySql database
Post: Save Codeigniter config data in MySql database

I am looking for a more elegant way to save Codeigniter config data in a MySql database. This is my Way: ./application/hooks/load_config.php PHP Code: -- function load_config() {    $CI =& get_ins...
4,337 Views
3 Replies
02-22-2018, 08:52 AM
SirTom
    Thread: How to define your own MIME Typ
Post: How to define your own MIME Typ

Is it possible to define my own MIME Typ? I use CodeIgniter’s File Uploading Class. Can I specify my own mime type to control what is allowed to be upload. The Type is *.lpo and this is a customiz...
2,182 Views
1 Replies
05-01-2017, 01:29 AM
SirTom
    Thread: How to integrate simogeo/Filemanager in CI 3?
Post: RE: How to integrate simogeo/Filemanager in CI 3?

Thanks, it is working, but there are still some importent features missing :-( - no multi selection - no folder download - no zip I think, I'll check elfinder.
8,270 Views
5 Replies
04-30-2017, 05:28 AM
SirTom
    Thread: How to integrate simogeo/Filemanager in CI 3?
Post: RE: How to integrate simogeo/Filemanager in CI 3?

InsiteFX Wrote: (04-29-2017, 04:38 AM) -- I use this one: Responsive FileManager 9.11.3 RESPONSIVE filemanager v 9.11.3 (http://www.responsivefilemanager.com/) -- Is there any Tutorial/Documenta...
8,270 Views
5 Replies
04-30-2017, 01:57 AM
SirTom
    Thread: How to integrate simogeo/Filemanager in CI 3?
Post: How to integrate simogeo/Filemanager in CI 3?

I have problems to integrate simogeo/Filemanager into Codeigniter 3.1.4. I have integrated the filemanager library into the assets folder and set a Link from the view to open the filemanager. ...
8,270 Views
5 Replies
04-29-2017, 04:07 AM
SirTom
    Thread: set_cookie does not work
Post: RE: set_cookie does not work

InsiteFX Wrote: (02-17-2017, 02:28 PM) -- Your setting the cookie wrong, should be set like below: PHP Code: -- setcookie($cookie_name, $cookie_value, time() + (86400 * 30), "/"); // 86400 = 1 da...
5,940 Views
3 Replies
02-18-2017, 04:21 AM
SirTom
    Thread: set_cookie does not work
Post: set_cookie does not work

I try to set a cookie for remember_me: PHP Code: -- $this->load->helper('cookie'); ... set_cookie(array(             'name'   => $name,             'value'  => $user,             'expire' =>...
5,940 Views
3 Replies
02-17-2017, 01:29 PM
SirTom
    Thread: How to use phpseclib by composer
Post: RE: How to use phpseclib by composer

Thanks!!!
12,978 Views
4 Replies
02-17-2017, 01:24 PM
SirTom
    Thread: How to use phpseclib by composer
Post: How to use phpseclib by composer

Hi everybody, I need some help... I install the phpseclib Modul by composer, but how can I use the Library??? Code: -- include('Net/SFTP.php'); -- This Code will not work :-( Thanks for ...
12,978 Views
4 Replies
02-15-2017, 06:33 AM
SirTom
    Thread: token based Authentification with LDAP
Post: token based Authentification with LDAP

Hello everybody, I hope, somebody can help me. For my past projects I always used Ion-Auth for the authentification. Now I start an new android webapp project. For the web-views I use Codeigniter a...
2,525 Views
0 Replies
10-22-2016, 04:42 AM
SirTom
    Thread: ci_sessions and ion auth not working with sqlite
Post: ci_sessions and ion auth not working with sqlite

I try to configure ci_sessions and ion auth for sqlite, but it will not work. My config.php für the session data Code: -- $config['sess_driver'] = 'database'; $config['sess_cookie_name'] = 'ci_s...
4,171 Views
2 Replies
09-04-2016, 06:53 AM
SirTom

Theme © iAndrew 2016 - Forum software by © MyBB