drush @alias cim //for point config changes
Friday, 30 July 2021
How to point the branch changes to Acquia by Git?
drush @alias cim //for point config changes
Monday, 14 June 2021
Create and move to New branch in Git.
We are going to explain with some steps..
Git Bash process..
1. 'git checkout' // from current branch.
2. 'git checkout postlaunch_qa' //You can rename underline area, from where you get the branch data.
3. git pull
Cmd process..
- mysql -u drupal -p cvent < dev-cvent.sql // Run the fresh database here. (dev-cvent.sql this will be on root) [optional - not every time required]
- drush cr //for clear cache
- drush cim //for config import changes.
4. 'git branch --all' // for get all branches. (optional)
5. 'git branch <new branch name>' // for create new branch for new work.
6. 'git checkout <new branch name>' //for checkout that branch
After this process For login/reset password:
drush uli // run this command and will return kind of url:
'/en/cms/reset/1/1627312926/saMxys3WxEQ2I8DowhnRIhEYbxNdkc3yVuhwj9DQ33c/login'
put this on url website url and it will redirect to reset password for login.
Note: If have any suggestions or issue regarding 'Create and move to New branch in Git.' then you can ask by comments.
How to resolve max execution time error in drupal ?
When you found error regarding 'max_execution_time' exceed, then you can follow steps for resolve this error: Steps: You can put t...
-
It's a easy way to clear or remove cache with using this simple code. Code : \Drupal::service('page_cache_kill_switch')->t...
-
If we don't want to show any file or folder to 'Anonymous user', 'Authenticated user' then we have 2 options. 1. We...
-
We have syntax change in drupal 8 for base_path and base_path_url, Please have a look.. base_path = base_path(); // This code is for b...