Carlos Cesar Caballero Díaz

Results 17 issues of Carlos Cesar Caballero Díaz

Hi, I am not able to run codeception tests when the module is active because calls to `$I->amOnRoute(...)` or `$I->amOnPage(...)` breaks with: > [yii\base\InvalidConfigException] Unable to determine the request URI.

Right now you can use translations in title and abstract for non English languages, but you can't write an article in a different language and translate the metadata to English...

feature-request

I am using this great app and I have found that when I run `makemigrations` a new migration is created in the `site-packages` module containing: ```python # Generated by Django...

First of all, very good module and thanks for sharing it. Do you plan to update to make it compatible with PHP 8.x? Installation with compozer currently fails due to...

If I throw a HttpException in a channel send() function, it will be caught properly by YII, but if I throw (for example) an InvalidConfigException, it will pass silently and...

Hello, I have configured PHPBU to synchronize the backup files via FTP, and I have configured a cleanup on the FTP server in the following way: ``` "syncs": [ {...

I'm using Python 3.12.2 and PySide6 6.6.3.1 in Ubuntu 22.04, and when I run `ppg start` or launch `main.py` I got the following error: ``` Traceback (most recent call last):...

Hi, I am defining a pjax container in that way: ``` $.pjax({ async: false, push: false, url: "http://theurl.com/form", container: ".pjax-component[data-pjax-component-id='123']", timeout: 30000, }); ``` It loads well the url (which...

unconfirmed

Installing with CodeCeption 4 I get this error: > > Your requirements could not be resolved to an installable set of packages. > > Problem 1 > - Installation request...

Hi, Thanks for such a useful extension!! I am using this exact query: ``` $crowds = Crowd::find() ->joinWith('reports') ->select(['crowd.*', 'report.created_at']) ->andWhere(['>=', 'reports_count', Crowd::$REPORTS_TRUST_NUMBER]) ->andWhere(['>=', 'report.created_at', new Expression('DATE_SUB(NOW(), INTERVAL 12 HOUR)')])->all();...