Oliv
Oliv
Finally found THE trick Change the buffer size to 1 !! That's it !
`$handler = new CloudWatch($client, $groupName, $streamName, $retentionDays, 10000, $tags);` to `$handler = new CloudWatch($client, $groupName, $streamName, $retentionDays, 1, $tags);` If you look at the `protected function write ` in Cloudwatch.php...
Hi dude, I will try to find you a great logo Awesome lib btw Thx
Hey this issue is still active ? If no please close Thanks
Finally managed to make it work You can follow this [tutorial]( https://medium.com/@hassan_omar/custom-laravel-filesystem-provider-for-oracle-object-storage-4b18ab2a140) but you will have to make some changes in your Provider As mentionned in the [Official Laravel Documentation](https://laravel.com/docs/9.x/upgrade#flysystem-3)...
> @olivier1208 Hello, > > Can you show me how is your config OCI file in filesystem.php? > > how u set the URL parm? > > any way i...
You need to update all the occurences of hardcoded localhost in all places by changing : `http://localhost` to `http://localhost:` so for you `http://localhost:8080` I've listed for you all the places...