Log message #4046752

# At Username Text
# Jun 30th 2017, 14:38 dakota joepferguson, what's wrong with https://github.com/alt3/cakebox :slightly_smiling_face:
# Jun 30th 2017, 14:36 jeremyharris what SQL are you expecting from those conditions?
# Jun 30th 2017, 14:32 eBugg cake 2.9
# Jun 30th 2017, 14:31 eBugg https://gist.github.com/anonymous/9207c618493b75c812e9d049773b5dd6
# Jun 30th 2017, 14:30 adriencs Cake 2 ?
# Jun 30th 2017, 14:30 adriencs look weirdo
# Jun 30th 2017, 14:30 eBugg but I pull $lista from $this->request-data and the format is wrong
# Jun 30th 2017, 14:29 eBugg something like this: 'conditions' => [ '(transporte_id,asociado_id,operacion_venta_id)' => $lista ]
# Jun 30th 2017, 14:29 adriencs @eBugg and do a damn Gist/Snippet ;)
# Jun 30th 2017, 14:28 adriencs @eBugg replace things
# Jun 30th 2017, 14:28 eBugg not sure it's ok to copy/paste code here...
# Jun 30th 2017, 14:27 eBugg hi, i'm struggling with a find conditions problem...
# Jun 30th 2017, 14:18 joepferguson If anyone is in the market for a managed vagrant box for local development, check out https://www.joeferguson.me/using-homestead-with-cakephp-framework/
# Jun 30th 2017, 13:48 ian_d_h You main this page? https://book.cakephp.org/2.0/en/installation/advanced-installation.html#installing-cakephp-with-composer
# Jun 30th 2017, 13:45 cjquinn Like recreating the autoload file?
# Jun 30th 2017, 13:20 neon1024 Can anyone recall is there is a book page about using Composer with CakePHP 2.x? About re-binding the autoloader when you use Composers autoloader
# Jun 30th 2017, 13:16 manuweg_ will be sure to use gist for posting code in future
# Jun 30th 2017, 13:14 manuweg_ yes, but a nasty hack
# Jun 30th 2017, 13:13 spencdev Ok so in the end you got it to work?
# Jun 30th 2017, 13:11 manuweg_ apologies
# Jun 30th 2017, 13:11 manuweg_ just downloaded this client and havent set that up
# Jun 30th 2017, 13:11 manuweg_ yes, sorry
# Jun 30th 2017, 13:11 spencdev https://gist.github.com/
# Jun 30th 2017, 13:10 spencdev whoa
# Jun 30th 2017, 13:09 manuweg_ anyway I just set $max to 10 which allows faker to run and insert the fake data
# Jun 30th 2017, 13:08 manuweg_ $max = pow(10, $nbDigits) - 1;
# Jun 30th 2017, 13:08 manuweg_ and this line is where the variable is being sets that causes the exception
# Jun 30th 2017, 13:08 manuweg_ }
# Jun 30th 2017, 13:08 manuweg_ return mt_rand(0, $max);
# Jun 30th 2017, 13:08 manuweg_ }
# Jun 30th 2017, 13:08 manuweg_ return mt_rand(pow(10, $nbDigits - 1), $max);
# Jun 30th 2017, 13:08 manuweg_ if ($strict) {
# Jun 30th 2017, 13:08 manuweg_ }
# Jun 30th 2017, 13:07 manuweg_ throw new \InvalidArgumentException('randomNumber() can only generate numbers up to mt_getrandmax()');
# Jun 30th 2017, 13:07 manuweg_ if ($max > mt_getrandmax()) {
# Jun 30th 2017, 13:07 manuweg_ $max = pow(10, $nbDigits) - 1;
# Jun 30th 2017, 13:07 manuweg_ }
# Jun 30th 2017, 13:07 manuweg_ $nbDigits = static::randomDigitNotNull();
# Jun 30th 2017, 13:07 manuweg_ if (null === $nbDigits) {
# Jun 30th 2017, 13:07 manuweg_ }
# Jun 30th 2017, 13:07 manuweg_ throw new \InvalidArgumentException('randomNumber() generates numbers of fixed width. To generate numbers between two boundaries, use numberBetween() instead.');