Ross Addison
Ross Addison
``` //yii2 controller ```
Yes on wampserver I adjusted the following file located at: C:\wamp64\www\dotplant2\web\theme\views\modules\basic\layouts\main.php and changed the https to http so that it could be tested locally on my wampserver. `
Working nicely. xdebug in apache's php.ini disabled as mentioned in your suggestions. yii-debug and api disabled. Significant speed increase. Alternating between the following in config/params.php especially the first or former...
I am using the invoiceplane database schema at https://www.github.com/rossaddison/yii3-i as a basis. This opensource software can generate openPeppol Ubl Invoices. It uses sabre.io to write the xml. I have developed...
I can avoid this issue completely if I simply present the **current date** on the client form. In this way the user will have to edit the current date to...
This is the mySql documentation: [5.1.11 Server SQL Modes](https://dev.mysql.com/doc/refman/8.0/en/sql-mode.html) https://dev.mysql.com/doc/refman/8.0/en/sql-mode.html With strict mode disabled, invalid dates such as '2004-04-31' are converted to '0000-00-00' and a warning is generated. NO_ZERO_DATE The...
Please review these changes
Hi, try this ```` echo Html::span(empty($post ->getPublishedAt()) ? '' : $post ->getPublishedAt() ->format('H:i d.m.Y')); ````
Brilliant! Thank you for your contribution pcbal. I will try xepozz's suggestion on issue [#462](https://github.com/yiisoft/demo/issues/462). Desperately looking for simplification of issue 462 into a simple 'save' instead of separate 'add'...
Hi vjik, getting the following reminder when running 'php requirements.php' at the console: ```` Deprecated: Creation of dynamic property Yiisoft\Requirements\RequirementsChecker::$result is deprecated in C:\wamp128\www\invoice\vendor\yiisoft\requirements\src\RequirementsChecker.php on line 67 ```` Any ideas...