Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Smarter forms in regards to ENTER key
Post: RE: Smarter forms in regards to ENTER key

what about this version Code: -- (() => {   'use strict';   let cancelButtonId = null;   let theForm = null;   const ourInputs = [];   const focusNext = () => {     const currentField = do...
164 Views
4 Replies
09-20-2023, 04:02 AM
SubrataJ
    Thread: how to write command to run cron on hostinger
Post: RE: how to write command to run cron on hostinger

I will assume it's CodeIgniter 3 since you have an application folder. Your cron path should be "public_html/admin/index.php send_birthmail" to trigger the cron job that sends emails
223 Views
2 Replies
08-03-2023, 06:44 AM
SubrataJ
    Thread: How to paginate queries in CodeIgniter 4 without using a model?
Post: RE: How to paginate queries in CodeIgniter 4 witho...

PHP Code: --     // Load the pager library     $pager = \Config\Services::pager();     // Get the current page number from the query parameters, default to 1 if not provided     $page = (int) ($...
453 Views
6 Replies
07-21-2023, 12:27 AM
SubrataJ
    Thread: Can we process multiple urls at once in curlrequest
Post: RE: Can we process multiple urls at once in curlre...

Muzikant Wrote: (06-13-2023, 02:36 AM) -- You can download files parallelly directly from PHP CURL with multi CURL. If I can ask you, what type of project do you making? -- It's a document manageme...
296 Views
2 Replies
06-13-2023, 03:26 AM
SubrataJ
    Thread: Can we process multiple urls at once in curlrequest
Post: Can we process multiple urls at once in curlreques...

Is there any way we can process multiple URLs  in  PHP Code: -- $client = \Config\Services::curlrequest(); -- for example, this is URL set which is coming from the database itself PHP Code: --...
296 Views
2 Replies
06-13-2023, 12:01 AM
SubrataJ
    Thread: Events (SOLVED)
Post: RE: Events

kenjis Wrote: (06-12-2023, 04:44 PM) -- You need to load your CustomEvents.php by yourself. For example, add `require 'path/to/your/CustomEvents.php';` in app/Config/Events.php. -- Thank you @"...
322 Views
2 Replies
06-12-2023, 10:56 PM
SubrataJ
  Big Grin Thread: Events (SOLVED)
Post: Events (SOLVED)

Can we do this by extending Events? PHP Code: -- This s my CustomEvents.php file ---
322 Views
2 Replies
06-12-2023, 05:16 AM
SubrataJ
    Thread: ci4 curl
Post: RE: ci4 curl

InsiteFX Wrote: (02-16-2023, 12:05 AM) -- PHP Code: --
821 Views
5 Replies
05-19-2023, 03:55 AM
SubrataJ
    Thread: Upsert
Post: Upsert

hey yall,  I just noticed a weird behavior while using the upsert method auto-increment value keeps on incrementing even if it's just updating data. for example, If I insert a record through Upsert a...
2,844 Views
3 Replies
05-15-2023, 03:23 AM
SubrataJ
    Thread: v4.3.4 released
Post: RE: v4.3.4 released

A thank you is not enough to show my gratitude to the whole team, so I will try my best to acquire skills so that one day I can be part of this team too.
2,857 Views
19 Replies
04-28-2023, 08:46 PM
SubrataJ
    Thread: Shield Beta 6 Released
Post: RE: Shield Beta 6 Released

wow great news, Hats off to all the contributors and team.
831 Views
3 Replies
04-26-2023, 04:31 AM
SubrataJ
    Thread: redirect issue to avoid a double path when using Ion Auth with Codeigniter 3
Post: RE: redirect issue to avoid a double path when usi...

what is your base url?
273 Views
1 Replies
04-25-2023, 04:51 AM
SubrataJ
    Thread: Access ajax data from the function and use it outside CI3
Post: RE: Access ajax data from the function and use it ...

InsiteFX Wrote: (04-23-2023, 10:30 PM) -- You need to use  Code: -- jQuery.parseJSON( json ) -- -- pardon me for any mistakes, but he is using dataType: "JSON", is it really required to parse the...
1,854 Views
5 Replies
04-23-2023, 10:37 PM
SubrataJ
    Thread: Burner - CodeIgniter4 High Performance Server Library
Post: RE: Burner - CodeIgniter4 High Performance Server ...

Great stuff, yes I agree with @"demyr" YouTube videos would great help for the community.
1,574 Views
5 Replies
04-23-2023, 09:17 PM
SubrataJ
    Thread: Access ajax data from the function and use it outside CI3
Post: RE: Access ajax data from the function and use it ...

What do you mean by "access data from function edit_book", you want to use the response of this function outside, once the Ajax request is complete?
1,854 Views
5 Replies
04-23-2023, 09:07 PM
SubrataJ
    Thread: what happen is error with redirect to codeigniter 4.3.3
Post: RE: what happen is error with redirect to codeigni...

byoosdigital Wrote: (04-22-2023, 02:29 AM) -- thjs code under line  working  good header("Location:".base_url('login')); -- your code won't work until you use die or exit after header function.
2,266 Views
5 Replies
04-22-2023, 02:51 AM
SubrataJ
    Thread: part of source of index.php visible
Post: RE: part of source of index.php visible

what I meant was the link you provided in your post, that is for Codeigniter 4, would you mind showing your code of index.php and what's your base_url
3,702 Views
9 Replies
04-22-2023, 01:16 AM
SubrataJ
    Thread: part of source of index.php visible
Post: RE: part of source of index.php visible

you said CI 3, but you are checking the user guide of Codeigniter 4, which does not make any sense.
3,702 Views
9 Replies
04-22-2023, 12:38 AM
SubrataJ
    Thread: What could be causing redirect errors?
Post: RE: What could be causing redirect errors?

You are doing it wrong to redirect to a URI path you have to use PHP Code: -- // Go to specific URI path. "admin/home" is the URI path relative to baseURL. return redirect()->to('admin/home'); -- ...
1,262 Views
2 Replies
04-21-2023, 07:49 AM
SubrataJ
    Thread: What is causing 404 error in CodeIgniter?
Post: RE: What is causing 404 error in CodeIgniter?

to remove index.php from URL you do not have to change in .htacess you can achieve the same just by changing in PHP Code: -- /app/Config/App.php public string $indexPage = ''; -- although ...
1,638 Views
2 Replies
04-21-2023, 04:13 AM
SubrataJ

Theme © iAndrew 2016 - Forum software by © MyBB