I am trying to scale up my programming skills every day. So I go through this program problem. It shows me I need to work on my coding skill and need more improvements in logical programming. I am sharing this code snippet with you, so you can review this code at your end. You can …
I recently bought a new MacBook Air. PHP 7 is the default version installed in my MacBook Air. But I need to work on Laravel 9 and other updated PHP CMS is required the PHP 8 version. So I faced this issue and search about it and fixed this problem. Now I am sharing these …
This blog post information will help in the drupal login attempt failure. This issue generally comes, if you shift your drupal setup from local to live server or shift from one server to another server. You need to place the following code snippet into this file path. File Path: DRUPALROOT\core\modules\user\src\UserAuth.php Function Name: authenticate($username, $password) 1. …
Gravity Forms plugin is a very popular WordPress plugin. I am a big fan of this fabulous plugin. One this disappoints me while working on one of my projects based on Gravity Form. Gravity Form not offering the entry edit feature by default, especially for the frontend. You’ve probably wanted an easy way to edit …
Local storage is a client-side data storage feature. It is completely JavaScript-based, so no need for server end programming required. Generally, we are using two types of storage in client end programming. 1. LocalStorage: LocalStorage data will be consistent even after a refresh or close the browser window. 2. Session or Cookies storage: Session or …
CKEditor has a drag and drops image upload feature. But generally, in the Laravel application, it gives an error message “Incorrect Server Response”. Similar to the following screenshot. To resolve this issue, we will discuss it in this blog post. 1. Setup the CKEditor in Laravel Download the CKEditor version 4. After unzipping place folder …
Today we are discussing an internet safety tip about your Laravel web application. That is Password guessing or Brute Force attack. I will share a method of how we can avoid it. What is a Brute Force attack? A brute-force attack consists of an attacker submitting many passwords or passphrases with the hope of eventually …
This blog post will help create an event on Google Calendar. The blog post covers version 3 of Calendar API. The code snippet will use the HTML form and PHP Curl code for processing. Google also provides a PHP Client Library, through which you can make Calendar API calls, but it is 6 MB in …
In this blog post, we will discuss and resolve the common feature, display the URL preview like Facebook and WhatsApp. The blog post provides two methods. Using WordPress Standards Using the Core PHP Curl. HTML Code for WordPress. If you have an existing input field, add the following input field class attribute and add the …
Are you looking for file upload functionality with CKEditor and Laravel? I hope this blog post will help you. 1. Download the Ckeditor. This blog post is using Ckeditor 4. Unzip the downloaded file and put the extracted “ckeditor” folder under the Laravel Public folder. So we can use it in the Laravel View file. …