Jeff
Jeff
I tried this on another computer running MInt 21 but with similar specs. It ran fine, then I ran composer update with a newer version of the composer.json file and...
Thanks. I did try that but I still get the same error if I do not select "Generate ActiveQuery" which leaves the queryClass field as null, because the form will...
Arrghhh! I have this in my site config file for dev: error_reporting(E_ALL & ~E_STRICT & ~E_DEPRECATED & ~E_NOTICE); This project is very old since before 2011 (originally Yii1), and I've...
My thinking is that the FilterValidator -> validateAttribute should check whether the filter is trim or not. Or have some way to handle or a mechanizm for null values and...
Actually the code calling the Filter Validator needs to be adjusted as per it's comments: /** * FilterValidator converts the attribute value according to a filter. * * FilterValidator is...
Prior to PHP 8.2 traits cannot have constants. [https://www.php.net/manual/en/language.oop5.traits.php#language.oop5.traits.constants](https://www.php.net/manual/en/language.oop5.traits.php#language.oop5.traits.constantsl) Also, even though PHP 8.2 _allows_ constants, it is still very likely that the main class will have the constants that...
Follow up. [ ] I copied the .env.example to .env.dist [ ] I edited the .env.dist to match the project name: yii2_hisite Now I get a new error when running...
Yeah, I kind of figured it was more a pastime for you, at least lately. But it really looks like the best way to implement Yii2, especially looking at the...
Sorry, "pastime" was probably not the best word. I'm seriously interested in this project - I agree that it's a better way to deploy a yii2 app. No, I don't...
I adjusted Deployer.php to allow for no Docker. When I run deploy I now get: ``` ./vendor/bin/hidev deploy > ln -sf .env.dist .env > ln -sf docker-compose.yml > sudo chmod...