Sunday, May 3, 2026

Friday, May 1, 2026

How to enable right click on website

Add this line to console


document.addEventListener('contextmenu', event => event.stopPropagation(), true); 

Wednesday, April 29, 2026

How to recover message from Google message app

 > Open google message app

> Click on profile icon and there is trash folder

>Reply the message(9355036914) in the Google Message app and you will see the message in Google Message App

or

If there is no profile icon visible in google message app

> Open any other app like "SMS Organizer" app from Microsoft and you will see all the messages. 


Thursday, April 23, 2026

Error in importing database in drupal - Missing expression. (near "ON" at position 25) - XAMPP - set foreign_key_checks on error

Missing expression. (near "ON" at position 25)

MYSQL

SET FOREIGN_KEY_CHECKS = ON;



Solution:-
Change max_allowed_packet=1 to max_allowed_packet=1024M in MY.ini
in PHP.ini add these four lines
 max_execution_time = 600
max_input_time = 600
memory_limit = 1024M
post_max_size = 1024M
upload_max_filesize=1024M

Also please check below link:-