neoacevedo
neoacevedo
When I try the following code: ```php use Beberlei\AzureBlobStorage\BlobClient; $client = new BlobClient(); $client->registerStreamWrapper('azure'); print_r(is_dir("azure://mycontainer/")); // false print_r(is_dir("azure://mycontainer/directory1/")); // false ``` I always get a false.
I have tried to implement it as in my project with a very few changes (I don't use the User model but I use Admin model under App namespace) but...
According with https://github.com/DoTheEvo/ANGRYsearch/issues/56 I can exlude directories by spaces BUT all exluded are listed and indexed.
This is a question more than a bug/usage issue. If I'd need to implement a message notification for Android, for instance, to send to a specific user app a message,...
My app ask for permissions if the device or emulator are running Android 10 but if I try to run it in Android 11, the permissions are never asked for.
### What steps will reproduce the problem? Similar to https://github.com/yiisoft/yii2/issues/17093. ```php $dataProvider = new ActiveDataProvider([ 'query' => $query, 'pagination' => [ 'pageSize' => 1, 'totalCount' => 1, ], ]); ```...
In the documentation https://github.com/dmstr/yii2-adminlte-asset#adminlte-plugins, you explain how to include AdminLTE plugins, specifically in this attribute for AdminlteAssets object: `public $sourcePath = '@vendor/almasaeed2010/adminlte/plugins';` AdminLTE has been updated and this directory has...
### What steps will reproduce the problem? Run the web app ### What is the expected result? Frontend web rendered. ### What do you get instead? (A Screenshot can help...
### What steps will reproduce the problem? composer create-project luyadev/luya-kickstarter:^1.0 ### What is the expected result? A normal installation of Luya. ### What do you get instead? (A Screenshot can...
Good, in short words: If I don't configure access from config file for backend at this mode: ```php 'allowActions' => [ 'site/*', //'rbac/*' //'admin/*' // The actions listed here will...