-
Hi, I just found a broken link at the end of the [debugging page](http://www.redbeanphp.com/index.php?p=/debugging).
![img](https://cloud.githubusercontent.com/assets/8798694/14403775/39dab8ac-fe64-1…
-
Every action that has to do with modifying DB records should be logged somewhere.
Now, here are my experiences with logging, summarized in rough unordered list:
- We can put logs in DB.
- We can do i…
-
https://github.com/gabordemooij/redbean/blob/feb86ccd5612856519d76befcd7aac9c98a28538/RedBeanPHP/Driver/RPDO.php#L314
This hides the original exception and doesn't give you much info.
Original excep…
-
Could a `ConvertToBean` method be added, which takes a single row, such as the one returned from `R::getRow()`.
-
```
http://www.redbeanphp.com/downloadredbean.php
```
Gives Access Denied :cry:
-
Could `convertToBeans` allow additional columns to be put as meta data on the bean? This way you could do
``` sql
SELECT library.*, COUNT(books.id) as book_count FROM library
JOIN books ON book.libra…
-
the implementation is very simple:
``` php
public class Test implements ArrayAccess {
public function &offsetGet( $offset )
{
return $this->__get( $offset );
}
}
```
The actual c…
-
It is not clear how these plugins should be used. Any advice?
I'm trying to make SQLHelper work again due to legacy reasons. Thank you.
-
Would be nice if R::setup would take an ssh2_tunnel parameter to connect with a database over an ssh tunnel.
For example:
```
$connection = ssh2_connect('123.123.13.1', 22);
ssh2_auth_passwo…
-
This code is problematic for tables that happen to have columns named `something`, and `something_id`, from [OODBBean.php, line 1003](https://github.com/gabordemooij/redbean/blob/master/RedBeanPHP/OO…