Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Basic usage how-to for Shield authentication
Post: RE: Basic usage how-to for Shield authentication

Hi, Search also on Udemy for Dave Hollingworth with the course "CodeIgniter for Beginners: Build a Complete Web Application" and you have a perfect example
5,719 Views
9 Replies
10-06-2023, 09:55 AM
snelledre
    Thread: Shield - what is the workflow for adding new users from an admin section?
Post: RE: Shield - what is the workflow for adding new u...

nzcidev Wrote: (05-07-2023, 06:26 PM) -- Hi, I am new to Shield, what is the flow of creating new users, lets say from an admin section of the application?  Here is my controller function so far: ...
1,963 Views
9 Replies
09-03-2023, 11:00 PM
snelledre
    Thread: connection SQL Server
Post: RE: connection SQL Server

Engenharia 2 Wrote: (03-29-2022, 12:03 PM) -- My connection is as shown in the image. with the same data I normally connect to the database through heidiSQL https://uploaddeimagens.com.br/images/003...
2,994 Views
4 Replies
03-30-2022, 05:19 AM
snelledre
    Thread: connection SQL Server
Post: RE: connection SQL Server

Engenharia 2 Wrote: (03-24-2022, 01:47 PM) -- I have a problem connecting to the server  SQL SERVER, with pdo and without codeigniter it works perfectly but when we use codeigniter version4.1.9 the e...
2,994 Views
4 Replies
03-26-2022, 12:45 AM
snelledre
    Thread: Image to public or writable folder
Post: RE: Image to public or writable folder

seunex Wrote: (03-12-2022, 11:41 AM) -- Yea we all aware of that because if u try to upload the image to writable folder and try to access it the system will return a relative path to the image inste...
3,916 Views
4 Replies
03-12-2022, 03:01 PM
snelledre
    Thread: Image to public or writable folder
Post: Image to public or writable folder

All, The documentation gives a example and that is the standard that file/images will stored in de writable folder for example the uploads folder. But reading here in the forum they say store it in ...
3,916 Views
4 Replies
03-12-2022, 12:56 AM
snelledre
    Thread: What is your favorite CI4-related learning resource?
Post: RE: What is your favorite CI4-related learning res...

One off the best cources is on Udemy from Dave Hollingworth named "CodeIgniter 4: Build a Complete Web Application from Scratch " .
10,397 Views
14 Replies
12-20-2021, 02:35 PM
snelledre
    Thread: Reporting Tools On CodeIgniter
Post: RE: Reporting Tools On CodeIgniter

May be off topic but I make my reports in Microsoft Report Builder and Crystal Reports. And every day, week, month and year I run automatic with the task manager the reports to pdf and send them with...
14,523 Views
8 Replies
12-17-2021, 11:01 AM
snelledre
    Thread: Myth:Auth groups views
Post: Myth:Auth groups views

Hello, For my new project I use codeigniter 4 and myth-auth.  In Myth-auth i was also expected that there were views for the groups/roles implementation. I can't find these, are they provided or mu...
4,234 Views
2 Replies
06-17-2021, 11:54 PM
snelledre
    Thread: Issue with validation
Post: RE: Issue with validation

Hi, With this info we can't help you. More info (code) is welkom.
1,491 Views
2 Replies
08-23-2020, 12:25 PM
snelledre
    Thread: REST validationRules
Post: RE: REST validationRules

Best, Use "id" as primary key and Company_number leave as it is. But lookout change also you're migration or direct your database table. Then you can use is_unique[companies.company_number,id,{i...
1,712 Views
2 Replies
06-16-2020, 05:23 AM
snelledre
    Thread: Model validation field translation
Post: RE: Model validation field translation

Now i named the tables in the database in dutch, with this way i get the error messages all in dutch. But it's cleaner to name the tables in english and translate them in codeigniter to the dutch lan...
1,565 Views
1 Replies
06-12-2020, 12:52 PM
snelledre
    Thread: Model validation field translation
Post: Model validation field translation

All, Is it possible to translate the field in model validation? In the controller it can with : Translation of message and validation labels To use translated strings from language files, we...
1,565 Views
1 Replies
06-12-2020, 04:56 AM
snelledre
    Thread: Problem with validatiomessage
Post: Problem with validatiomessage

Hello, I have a problem with the validationmessage in the model. The validation works perfect but why can't i see the validationmessage from the model? Through this way i can my own message in Du...
1,176 Views
0 Replies
01-13-2020, 11:23 AM
snelledre
    Thread: How to display disallowed file type error in case of upload in Codeigniter 3?
Post: RE: How to display disallowed file type error in c...

Best, What i mean is when you have no errors you must past "uerrors" also to you're view but then empty "". But i can't see that because i can't see the full code off you're view and controller. ...
4,170 Views
3 Replies
01-04-2020, 03:44 AM
snelledre
    Thread: How to display disallowed file type error in case of upload in Codeigniter 3?
Post: RE: How to display disallowed file type error in c...

You don't load the data in the view. PHP Code: -- $this->load->view('dashboard/create-post', $data); -- See the tutorial in the documentation. And if there are no errors? What code have you in the vi...
4,170 Views
3 Replies
01-04-2020, 12:19 AM
snelledre
    Thread: Best way to share files among different CI projects, i.e. helpers, libraries
Post: RE: Best way to share files among different CI pro...

deltatangodt Wrote: (12-29-2019, 07:27 PM) -- I have 3 projects that will each be using a REST API library I customized based on the CI Rest API Library project. It has it's own helpers, models and L...
3,683 Views
2 Replies
12-30-2019, 12:26 AM
snelledre
    Thread: redirect with input
Post: RE: redirect with input

InsiteFX Wrote: (12-10-2019, 09:04 AM) -- PHP Code: -- return redirect()->back()->withInput()->with('errors', $this->validator->getErrors()); -- That is how Lonnie doe's it in his Myth/Auth I woul...
5,094 Views
2 Replies
12-11-2019, 10:13 AM
snelledre
    Thread: redirect with input
Post: redirect with input

Best, I have made an form with some input. When the validation is not ok then you can use PHP Code: -- return redirect()->back()->withInput(); -- And in the form you can use "old"as value so the...
5,094 Views
2 Replies
12-09-2019, 01:53 PM
snelledre
    Thread: Issues with migration
Post: RE: Issues with migration

Best, You forget to fill in what datatype 'create_at' is. Example from the documentation. PHP Code: -- $fields = [         'created_at' => ['type' => 'DATETIME'] ]; $forge->addColumn('use...
2,562 Views
1 Replies
11-18-2019, 09:39 AM
snelledre

Theme © iAndrew 2016 - Forum software by © MyBB