Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Set a $_GET value
Post: RE: Set a $_GET value

kenjis Wrote: (05-15-2024, 07:18 PM) -- You should not change the $_GET or the GET parameter in the request. Why do you need to change it? -- Why, why not? If it is possible in basic PHP then it...
1,426 Views
4 Replies
05-15-2024, 11:28 PM
CCAldo
    Thread: Set a $_GET value
Post: Set a $_GET value

PHP Code: -- localhost?foo=bar $_GET['foo'] = 'baar'; echo $_GET['foo']; // 'baar' localhost?foo=bar $_GET['foo'] = 'baar'; echo $this->request->getGet('foo'); // 'bar' -- I encounte...
1,426 Views
4 Replies
05-15-2024, 07:16 AM
CCAldo
    Thread: Remove Session Filehandler message from logs
Post: RE: Remove Session Filehandler message from logs

PHP Code: -- // Config/Logger.php // remove 7: Info - Interesting events, like user logging in, etc. public $threshold = [1, 2, 3, 4, 5, 6, 8]; -- Why do we need that info-log? Can we remove th...
5,859 Views
4 Replies
02-09-2023, 02:14 AM
CCAldo
    Thread: source code says Request::getMethod() is deprecated, what to use?
Post: RE: source code says Request::getMethod() is depre...

Its not a huge issue. Its just triggers the user to chose an alternative function. The issue is that the error message isn't always clear.  PhpStorm shows a strikethrough with the notice: Method ...
20,014 Views
15 Replies
07-19-2021, 07:17 AM
CCAldo
    Thread: CI4 + Lando (docker) - Main connection [MySQLi]: No such file or directory
Post: RE: CI4 + Lando (docker) - Main connection [MySQLi...

paulbalandan Wrote: (07-16-2021, 08:28 AM) -- Try  changing the host name to either 'localhost' or '127.0.0.1' -- No solution using 127.0.0.1 Lando makes his own hostname, which defaults to 'databas...
7,454 Views
2 Replies
07-19-2021, 02:26 AM
CCAldo
    Thread: source code says Request::getMethod() is deprecated, what to use?
Post: RE: source code says Request::getMethod() is depre...

But if you're not using a paramater you still got this error. Also it seems that some users would be triggered to uses a non-CodeIgniter function instead. And that would not be the way to handle t...
20,014 Views
15 Replies
07-19-2021, 12:32 AM
CCAldo
    Thread: mysqli_sql_exception No such file or directory
Post: RE: mysqli_sql_exception No such file or directory

Seems not a solution but a workaround...
24,073 Views
10 Replies
07-16-2021, 04:04 AM
CCAldo
    Thread: source code says Request::getMethod() is deprecated, what to use?
Post: RE: source code says Request::getMethod() is depre...

Having the same issue: https://i.imgur.com/hQA8cZI.png
20,014 Views
15 Replies
07-16-2021, 02:23 AM
CCAldo
    Thread: CI4 + Lando (docker) - Main connection [MySQLi]: No such file or directory
Post: CI4 + Lando (docker) - Main connection [MySQLi]: N...

I'm having some issues setting up CodeIgniter 4 with Lando. CI4 is unable to connect to the MySQL database. Code: -- "Unable to connect to the database. Main connection [MySQLi]: No such file or...
7,454 Views
2 Replies
07-16-2021, 01:05 AM
CCAldo

Theme © iAndrew 2016 - Forum software by © MyBB