Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: i want exclude debug infomation when output csv
Post: RE: i want exclude debug infomation when output cs...

@"kenjis" thanks. I understanded this fact. I was referring to was probably not the CodeIgniter4 way. I have searched for "Codeigniter4 csv" and found that the way to do this `exit()` seems to ...
5,126 Views
6 Replies
07-25-2022, 05:13 AM
yoshi
    Thread: i want exclude debug infomation when output csv
Post: RE: i want exclude debug infomation when output cs...

@"InsiteFX"  @"kenjis" thanks every time. :) The cause this time seemed to be that a string was returned upon return. I stopped returning view and replaced it with exit PHP Code: --     publi...
5,126 Views
6 Replies
07-23-2022, 04:03 PM
yoshi
    Thread: i want exclude debug infomation when output csv
Post: i want exclude debug infomation when output csv

hello :) this is simple csv. I try output the csv. PHP Code: -- public function csvExport(): string { // load from user table into entity $user = [ ['id'...
5,126 Views
6 Replies
07-22-2022, 07:34 PM
yoshi
    Thread: I need to know the recommended pdf manufacturer.
Post: RE: I need to know the recommended pdf manufacture...

@"tgix" @"InsiteFX" @"abatrans" Thanks everyone, I was able to use the fonts in mPDF.
6,739 Views
6 Replies
07-22-2022, 05:44 PM
yoshi
    Thread: I need to know the recommended pdf manufacturer.
Post: I need to know the recommended pdf manufacturer.

hello :) I am trying to trial and error the pdf maker. First up is 'tcpdf'. To pass the process through tcpdf, I need the raw html. However, the `view` function no longer returns html (codeigniter...
6,739 Views
6 Replies
06-21-2022, 07:51 AM
yoshi
    Thread: Where to store login information in codeigniter.
Post: RE: Where to store login information in codeignite...

InsiteFX Wrote: (05-08-2022, 01:25 AM) -- Yes as @"ignitedcms"  mentioned above the Session is the place to save it, but you could also create a variable in the BaseController and access it using $...
6,745 Views
5 Replies
05-08-2022, 05:50 AM
yoshi
    Thread: Where to store login information in codeigniter.
Post: RE: Where to store login information in codeignite...

ignitedcms Wrote: (05-08-2022, 12:55 AM) -- If you want variables to persist across the entire app save it in a session. -- thanks ignitedcms-san. I will study 'session'
6,745 Views
5 Replies
05-08-2022, 01:05 AM
yoshi
  Smile Thread: Where to store login information in codeigniter.
Post: Where to store login information in codeigniter.

Perhaps this is more of a web application topic than codeigniter. When a user logs in, the session retains the user id, so I can retrieve the entity from the user table in the controller immediatel...
6,745 Views
5 Replies
05-07-2022, 06:27 PM
yoshi
    Thread: How to add users in Myth/Auth in batches
Post: RE: How to add users in Myth/Auth in batches

kenjis Wrote: (05-03-2022, 05:17 AM) -- What's your problem? Myth:Auth has administration commands: https://github.com/lonnieezell/myth-auth/blob/develop/src/Commands/CreateUser.php https://github...
6,544 Views
6 Replies
05-03-2022, 09:21 PM
yoshi
    Thread: (Myth/Auth)how to input username in Japanese
Post: RE: (Myth/Auth)how to input username in Japanese

kenjis Wrote: (05-03-2022, 04:31 PM) -- Add routes in app/Config/routes.php and check. $ php spark routes -- thanks, kenjis I was able to override it by simply changing the direction of the sam...
3,821 Views
4 Replies
05-03-2022, 09:13 PM
yoshi
    Thread: (Myth/Auth)how to input username in Japanese
Post: RE: (Myth/Auth)how to input username in Japanese

kenjis Wrote: (05-03-2022, 05:20 AM) -- See https://github.com/lonnieezell/myth-auth/blob/68a940950573fc539532de98cfe1da4caab02031/src/Models/UserModel.php#L22 -- thanks kenjis :) I have debugge...
3,821 Views
4 Replies
05-03-2022, 07:17 AM
yoshi
  Smile Thread: (Myth/Auth)how to input username in Japanese
Post: (Myth/Auth)how to input username in Japanese

Thanks for everything. I was able to add login functionality to an existing app using Myth/Auth, but the next step is that Japanese cannot be used for user names. Can this be solved by customizing My...
3,821 Views
4 Replies
05-03-2022, 04:05 AM
yoshi
    Thread: How to add users in Myth/Auth in batches
Post: RE: How to add users in Myth/Auth in batches and h...

InsiteFX Wrote: (05-03-2022, 12:53 AM) -- Why not use the Database Seeder to add the data to the database table? -- thanks InsiteFXWhy. Yes, I am. I am using a database seeder to create users. ...
6,544 Views
6 Replies
05-03-2022, 01:17 AM
yoshi
    Thread: How to add users in Myth/Auth in batches
Post: RE: How to add users in Myth/Auth in batches and h...

JustJohnQ Wrote: (05-02-2022, 11:29 PM) -- I use the site below to generate dummy data: http://filldb.info/ -- thanks, JustJohnQI. :) I'm not having trouble creating dummy data itself, I just don...
6,544 Views
6 Replies
05-03-2022, 12:50 AM
yoshi
  Smile Thread: How to add users in Myth/Auth in batches
Post: How to add users in Myth/Auth in batches

Thanks for everything. I was able to add login functionality to an existing app using Myth/Auth, but the next step is to add a large number of dummy users for development. For example, creating a sch...
6,544 Views
6 Replies
05-02-2022, 09:44 PM
yoshi
    Thread: How to set Codigniter 4 Email Config from Env
Post: RE: How to set Codigniter 4 Email Config from Env

kenjis Wrote: (05-02-2022, 05:47 AM) -- Like this: https://github.com/codeigniter4/devkit/blob/develop/src/docker/README.md#env-3 -- Thank you Kenjis-san. Your Japanese page is also useful to me....
3,552 Views
2 Replies
05-02-2022, 06:35 AM
yoshi
  Shocked Thread: How to set Codigniter 4 Email Config from Env
Post: How to set Codigniter 4 Email Config from Env

I was able to create a login function using "myth / auth". However, in the current state, information such as passwords will be published on github. Is there a way to read the settings from `env`?
3,552 Views
2 Replies
05-02-2022, 05:39 AM
yoshi
    Thread: I want make login function
Post: RE: I want make login function

ignitedcms Wrote: (04-29-2022, 08:28 PM) -- This is the state of affairs with SMTP. You'll also find out, google will silently turn unsafe apps back to safe. If you want to use it properly, there's s...
5,391 Views
4 Replies
04-29-2022, 11:27 PM
yoshi
    Thread: I want make login function
Post: RE: I want make login function

@"SubrataJ" Thank you. I have successfully sent an email. https://www.positronx.io/codeigniter-send-email-with-smtp-tutorial-with-example/ However, it was successful because I was able to send ...
5,391 Views
4 Replies
04-29-2022, 06:29 PM
yoshi
    Thread: I want make login function
Post: I want make login function

reference: kenjis page https://zenn.dev/kenjis/articles/95f38b7e447155 I am trying to create a login function. It worked fine up to the point where I got the login screen, but I don't seem to rece...
5,391 Views
4 Replies
04-29-2022, 06:18 AM
yoshi

Theme © iAndrew 2016 - Forum software by © MyBB