JQuery Code to add class in the first class div (Bootstrap Carousel)

If you have a bootstrap carousel for my post display( code is below ). And If you want to put in the loop to the posts, there comes problem of first child active. This carousel will be displayed only after the first child has class active. You cannot make all the inner item active and … Read moreJQuery Code to add class in the first class div (Bootstrap Carousel)

Window does not refresh while adding new categories and tags?

You might have experienced this while adding new category. When you ad category title and slug and description and submit the form by clicking “Add new Category” button. Screen freezes (doesn’t refresh). And same issue occurs while deleting the category and tags. I have been struggling to this problem so long. I used to give … Read moreWindow does not refresh while adding new categories and tags?

KMS Activator Free windows and Office Activation

KMSPico Window 10 activator is the free activator of windows 10 and previous version developed by a team of hacker Team Daz. It is free of cost, easy to use, activates windows and virus free. It also Activate Microsoft Office and supports 32 and 64 both architecture. There are no advertisements. It can be removed … Read moreKMS Activator Free windows and Office Activation

ERROR: Invalid default value for ‘created_at’ [solution]

I got a problem while adding a new column in the database as well as editing the column. The error says invalid default value for ‘created_at’ So I tried to do run this code in this code in the SQL. SET sql_mode = ”;   But It didnt work. So I tried the command allowing … Read moreERROR: Invalid default value for ‘created_at’ [solution]

HOW TO CHECK VERSION OF LARAVEL

1. by command line method open command prompt and go to the laravel application directory. type php artisan –version   2. By checking laravel file In your application directory go to vendor>framework>sric>Illuminate>Foundation and open Application.php search “VERSION” and it contains the laravel version

LARAVEL PROBLEM IMAGE NOT UPLOAD PROBLEM (THE SAME PROBLEM WORKED IN LOCALHOST)

Problem Description: I have recently created a site in laravel and I had the no issue. But when I uploaded the script in the live server, there was an issue in uploading images. My form was absolutely fine <form action=”{{route(‘subject.store’)}}” method=”POST” enctype=”multipart/form-data”> {{csrf_field()}} <input type=”file” name=”image”> <button type=”submit”> Submit </button> </form> My controller was absolutely … Read moreLARAVEL PROBLEM IMAGE NOT UPLOAD PROBLEM (THE SAME PROBLEM WORKED IN LOCALHOST)

Problem in composer create-project

To start a new project in laravel we generally do the following code composer create-project –prefer-dist laravel/laravel projectname OR composer create-project –prefer-dist laravel/laravel projectname “version_of_laravel” You may get error as below   Now the solution for this I found is to put the code below in your command prompt. composer global require “laravel/lumen-installer”