September 29, 2021 in Php, Tips and Tricks
Xampp Users Go to xampp\phpMyAdmin\ Open config.inc.php Search for $cfg[‘ExecTimeLimit’] = 300; Set a larger value or change to 0 for unlimited If not found add $cfg[‘ExecTimeLimit’] = 900; (or 0 for unlimited) Save the file and restart the server
September 1, 2021 in Php, Tips and Tricks
Insert this code before closing body tag Create two file init.js and firebase-messaging-sw.js store it in root of website Content for init.js Content for firebase-messaging-sw.js Login in https://console.firebase.google.com/u/0/project and send notification from firebase panel
August 11, 2021 in Laravel, MySql, Php, Tips and Tricks
config/database.php
August 8, 2021 in Laravel, Php, Technology, Tips and Tricks
How to install Laravel using composer Create View in Laravel Create model, controller and view in Laravel Step 1: Create model and controller Step 2: Create View in Laravel Step 3: call controller using route and display view Note: changing the RouteServiceProvider.php file in App/Providers/ path by uncommenting the code. protected $namespace = ‘App\Http\Controllers’; Create […]
July 29, 2021 in Only Happened In India, Php, Tips and Tricks
1, Node.js from here: https://nodejs.org/en/download/ 2, Install git from here: https://git-scm.com/downloads Clone this sample project: It will download a sample project in your computer and “npm install” to install the required node modules in the project. main.js index.html Whatever you do in this HTML file it will be included in your application. Now how to convert a website […]
July 24, 2021 in Only Happened In India, Php, Tips and Tricks, Ubuntu
For security. The files are not world writeable. They are restricted to the owner of the files for writing. The web server has to be run under a specific user. That user must exist. If it were run under root, then all the files would have to be accessible by root and the user would […]