What is a patch in drupal and how will we apply patch in drupal?
Answer Posted / Pankaj Sen
A patch in Drupal refers to changes made to the codebase, which can be applied to update or modify existing modules. To apply a patch in Drupal, you need to download it as a .patch file and then use the 'patch' command from the terminal. Change into your Drupal root directory and run the following command: `patch -p0 < path/to/your_patch_file.patch`. If successful, you will see the message "Hunk #1 succeeded at line ...".
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers