Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Own validation rules with CodeIgniter >4.5
Post: RE: Own validation rules with CodeIgniter >4.5

Thank you very much for your feedback. To be honest, I'm still a bit in the fog, although I have looked at the code and the documentation again. Quote: -- You've modified your $rulesets array to us...
884 Views
10 Replies
02-07-2025, 04:49 PM
minsk832
    Thread: CodeIgniter CustomGPT for ChatGPT Help
Post: CodeIgniter CustomGPT for ChatGPT Help

I found this AI Assistant for CodeIgniter at ChatGPT and have to say that it has really helped me several times with some questions. It is also regularly updated with the latest documentation. Maybe ...
433 Views
3 Replies
02-06-2025, 08:12 AM
minsk832
    Thread: CodeIgniter v4.6.0 released!
Post: RE: CodeIgniter v4.6.0 released!

Many thanks for the further development and PHP 8.4 support! Will soon test the update with https://packagist.org/packages/tatter/patches :)
5,981 Views
24 Replies
02-05-2025, 02:41 PM
minsk832
    Thread: Own validation rules with CodeIgniter >4.5
Post: RE: Own validation rules with CodeIgniter >4.5

@"ozornick" Thanks for the feedback! What exactly do you mean by ExpenseRules? Your link leads to this post :)
884 Views
10 Replies
02-05-2025, 02:27 PM
minsk832
  Star Thread: Own validation rules with CodeIgniter >4.5
Post: Own validation rules with CodeIgniter >4.5

Based on the CodeIgniter documentation on validation, there are still a few things that are a bit unclear to me, so I wanted to ask here for advice on whether my approach is in line with best practice...
884 Views
10 Replies
02-05-2025, 09:08 AM
minsk832
    Thread: Codeigniter VIteJs Integration
Post: RE: Codeigniter VIteJs Integration

Are there any plans for an update? Vite 5.3.1 is now available (package.json 2.9.13). I noticed that with the current CodeIgniter integration it can mean a significant slowdown in view rendering. Oth...
6,055 Views
3 Replies
06-24-2024, 02:32 PM
minsk832
    Thread: Update docs: Testing > Benchmarks
Post: RE: Update docs: Testing > Benchmarks

I understand your incorrect example and it is obvious to me. But where is the third call here so that it continues counting anyway? In the short version, I am only trying to query the seconds. PHP...
1,215 Views
9 Replies
06-24-2024, 11:49 AM
minsk832
    Thread: No direct output from $this->renderSection
Post: RE: No direct output from $this->renderSection

Thank you very much for the implementation and consideration! You are great! :-)
885 Views
3 Replies
06-24-2024, 11:45 AM
minsk832
    Thread: CodeIgniter very long loading times under Xampp and Wamp server
Post: RE: CodeIgniter very long loading times under Xamp...

As a test, I had set the view code to Code: -- Test Hello World! -- So only this static HTML. Still > 8.4 seconds. I just tested whether this was the case with a brand new version of CodeIgn...
1,490 Views
9 Replies
06-22-2024, 03:32 AM
minsk832
    Thread: CodeIgniter very long loading times under Xampp and Wamp server
Post: RE: CodeIgniter very long loading times under Xamp...

Hello everyone! Thanks for your answers! Hot reload is disabled. I don't see any errors in xampp/apache/logs/error.log. Even if I write the following in the view: Code: -- Test Hello World! -- I s...
1,490 Views
9 Replies
06-22-2024, 02:58 AM
minsk832
    Thread: CodeIgniter very long loading times under Xampp and Wamp server
Post: RE: CodeIgniter very long loading times under Xamp...

Yes, I have configured the baseURL to a different one by .env with trailing slash: app.baseURL = 'http://website.intern/' It also makes no difference if I set app/Config/App.php public string $baseU...
1,490 Views
9 Replies
06-22-2024, 02:26 AM
minsk832
    Thread: CodeIgniter very long loading times under Xampp and Wamp server
Post: CodeIgniter very long loading times under Xampp an...

Hello, I've recently been having very long loading times for my CodeIgniter pages. Even without database queries, it takes > 16 seconds to load a simple view. PHP memory_limit etc. is set to > 4 GB. I...
1,490 Views
9 Replies
06-22-2024, 01:58 AM
minsk832
    Thread: Update docs: Testing > Benchmarks
Post: RE: Update docs: Testing > Benchmarks

Is this what you mean by the third call? timer()->getElapsedTime('test1') I actually only do this to get the seconds. Or would this also stop the timer?
1,215 Views
9 Replies
06-20-2024, 06:34 AM
minsk832
    Thread: Recommendation .htaccess customization
Post: RE: Recommendation .htaccess customization

I would also recommend using this in the .htaccess so that it works on many webspaces :-). Options +SymLinksIfOwnerMatc
714 Views
3 Replies
06-20-2024, 06:32 AM
minsk832
    Thread: Update docs: Testing > Benchmarks
Post: RE: Update docs: Testing > Benchmarks

https://www.codeigniter.com/user_guide/testing/benchmark.html#timer But it says here that the timer would be stopped the second time? PHP Code: --
1,215 Views
9 Replies
06-20-2024, 04:45 AM
minsk832
    Thread: Update docs: Testing > Benchmarks
Post: RE: Update docs: Testing > Benchmarks

Hello! Is it possible that in a loop using these variant: PHP Code: -- $timer = service('timer'); for ($i = 0; $i < 5; $i++) { timer('test1'); sleep(2); timer('test1'); echo timer()->g...
1,215 Views
9 Replies
06-20-2024, 04:07 AM
minsk832
    Thread: Curl best practice for API calls? Protecting sensitive data like API keys
Post: RE: Curl best practice for API calls? Protecting s...

Thank you: Here I read: https://www.codeigniter.com/user_guide/libraries/curlrequest.html#sharing-options Quote: -- "Since v4.4.0, the default value has been changed to false." -- system/Con...
1,582 Views
3 Replies
06-19-2024, 04:55 PM
minsk832
    Thread: Web Scraping in CI4
Post: RE: Web Scraping in CI4

You can easily use and integrate PHP libraries like https://github.com/voku/simple_html_dom https://github.com/spekulatius/PHPScraper in CodeIgniter. Simply create a library. PHP Code: -- n...
1,123 Views
2 Replies
06-19-2024, 04:38 PM
minsk832
    Thread: Update docs: Testing > Benchmarks
Post: Update docs: Testing > Benchmarks

Hi there! It's described here: https://www.codeigniter.com/user_guide/testing/benchmark.html#displaying-execution-time timer()->getElapsedTime('render view'); Returns elapsed time in seconds. But it's...
1,215 Views
9 Replies
06-19-2024, 05:52 AM
minsk832
    Thread: Curl best practice for API calls? Protecting sensitive data like API keys
Post: Curl best practice for API calls? Protecting sensi...

Hey! Assuming I use the following in a self-created OpenAI library: PHP Code: --
1,582 Views
3 Replies
06-18-2024, 08:55 PM
minsk832

Theme © iAndrew 2016 - Forum software by © MyBB