-
I updated an old app from
php 5.4.16
postgres 9.2
redbean 5.3.4
to
php 8.2.7
postgres 15.3
redbean 5.7.4
And now I am having a problem with boolean types.
…
-
after I designed my tables and corrected their types, I decided that it was possible to freeze redbeanphp and ran into an unexpected problem, it started deleting the letter 's' at the end of my tables…
-
It looks like column names undergo a mandatory transformation into snake case.
I understand the rationale behind underscore(`_`) restrictions but can someone explain What's the issue with PascalCas…
-
Hi,
The following example works:
return R::exec("UPDATE mytable SET archived = ? WHERE id = ?", array(true, 68));
The following does not:
return R::exec("UPDATE mytable SET archived = ? WHERE …
-
Hi!
```php
use RedBeanPHP\R;
R::setup();
var_dump(R::testConnection());
R::close();
var_dump(R::testConnection());
```
result:
```
bool(true)
bool(true…
-
I didn't find anything useful on the first pages. When importing by the ancient collective farm method db.php file, everything works. But after installation with a modern adequate composer method, for…
-
Error from nginx error log:
```PHP message: PHP Notice: Undefined index: parental_guidance in /var/www/php4dvd/includes/movie.inc.php on line 37
PHP message: PHP Notice: Trying to access array…
-
```
Deprecated: Creation of dynamic property RedBeanPHP\QueryWriter\MySQL::$sqltype_typeno is deprecated in /var/www/html/vendor/gabordemooij/redbean/RedBeanPHP/QueryWriter/MySQL.php on line 169
D…
-
I'm sure this is being dealt with but just in case :
System Error - Error 8192 Creation of dynamic property RedBeanPHP\QueryWriter\MySQL::$svalue is deprecated /opt/httpd/htdocs/vendor/gabordemooij…
-
Please see the attached code snippet as explaining the issue is a bit hard.
```php