How can i create custom log file using laravel 4.2 version? - php

I want to change the log format in the 4.2 version of laravel. But I have no idea about this.
Please help me to find the solution or guide me to solve my problem.
I searched a lot on google but still had no success.
Format
public const SIMPLE_FORMAT = "[%datetime%] %channel%.%level_name%: %message% %context% %extra%\n";
Any solution appreciated!

You may consider updating your laravel system. From 5.6 you can configure it easily with adding an enviroment variable. More details:
https://laravel.com/docs/5.6/logging

Related

How can i setting up HWIOAuthBundle with Symfony4?

I try to make a web application in symfony4. I want to make login/register system with HWIOAuthBundle, but I can't find a good setting up guide just for Symfony3. Anybody can help me?
Thanks a lot
I think original docs are OK: https://github.com/hwi/HWIOAuthBundle/blob/master/Resources/doc/1-setting_up_the_bundle.md
Basically, bundles' configurations in Symfony 4 are pretty similar to Symfony 3 so you can try to use original docs. BTW there're some notes about Symfony 4.1 in this docs, so I'm sure that they will help you.

Laravel - Declaration of Illuminate\Support\Carbon::__set_state(array $array) should be compatible with Carbon\Carbon::__set_state($state)

Got this weird error while trying to use laravel for the first time, look it up but couldn't find anything, could someone please help?
Laravel has a class that extends the official Carbon class. Carbon had changed their __set_state method signature, which broke Laravel's Carbon implementation. After Laravel fixed it and made a release, Carbon reverted their change to __set_state, which re-broke Laravel's implementation.
Basically, this is a temporary problem, and running composer update later should fix your issue.
Related GitHub issues:
https://github.com/laravel/framework/issues/23458
https://github.com/laravel/framework/issues/23465
The problem is already fixed: https://github.com/laravel/framework/pull/23464

How to work with stripe in laravel 5.2

I have read and tried most of the blogs and tutorials regarding implementation of stripe in laravel 5.2 but none of them work out or none of them had proper explanation. Can somebody please provide me some simple to understand tutorial link. or can guide in simple language.
I'm new to laravel
Personally I think that watching this video from Jeffrey Way at Laracasts.com will give you a basic understanding of how to use Stripe inside a Laravel project.
The video is recorded using Laravel 5.3 but not much is different - https://laracasts.com/series/how-to-accept-payments-with-stripe/episodes/1
Without watching the free video though, you can use composer require stripe/stripe-php to include the PHP library (https://github.com/stripe/stripe-php)
And then basically follow the instructions here and in the documentation - https://stripe.com/docs/checkout/php

Why showing undefined service and aliases in app file in laravel?

I am using laravel 5.1. Some files in service and aliases are showing undefined. I don't know what goes wrong here. It is showing this....
and also in aliases..
I am new in laravel. I don't know what happened there. Any kinds of help will be appreciated.Thanks
Try using this package: Laravel 5 IDE Helper Generator
This package generates a IDE helper to help your IDE. Take a look if this help you.
Regards

Sonarqube 4.2 & PHP

since I updated to sonar 4.2 and the PHP plugin to 2.1 there is no way to use results or execute external tools like phpcs and phpmd.
We used phpcs quite extensively before - I wanted to know is there any way to get our phpcs rules back in Sonar as else the php analysis run is not much use to us. I have not found a way to define my own new rules, just found those few that come with the plugin (for comparison we had 580 rules before, and now have 28).
Hope someone can help us ;)
Thanks,
Susanne
We hope to eventually include the ability to write custom rules in Java: http://jira.codehaus.org/browse/SONARPHP-270
In the meantime, please join the user list and tell us what rules you'd like to see re-implemented.

Categories