Run the PHPSTORM debugger with postman
Any url can be appended with the following: "?XDEBUG_SESSION_START=PHPSTORM" to initiate the debugger.
As an example: http://freida-admin.lndo.site/api/aci-post?XDEBUG_SESSION_START=PHPSTORM
Any url can be appended with the following: "?XDEBUG_SESSION_START=PHPSTORM" to initiate the debugger.
As an example: http://freida-admin.lndo.site/api/aci-post?XDEBUG_SESSION_START=PHPSTORM
lando drush user:login --name=usernamehttps://www.drush.org/11.x/commands/user_login/
gunzip -c [/path/to/db/dump/file] | drush @[target] sql:cli
sass --watch _modernization.scss ../css/modernization-page.css
sed -i '' 's/utf8mb4_0900_ai_ci/utf8_general_ci/g' backup.sql sed -i '' 's/CHARSET=utf8mb4/CHARSET=utf8/g' backup.sql
https://tecadmin.net/resolved-unknown-collation-utf8mb4_0900_ai_ci/
* Install pipelines cli
* configure pipelines https://docs.acquia.com/pipelines/cli/install/
* connect to the github account https://docs.acquia.com/pipelines/cli/github/connect/
https://stackoverflow.com/questions/17931571/freeze-screen-in-chrome-de…
Get the hover state in play on the screen while debugger tools are open, then on a mac hit fn f8.
function waitForElm(selector) { return new Promise(resolve => { if (document.querySelector(selector)) { return resolve(document.querySelector(selector)); } const observer = new MutationObserver(mutations => { if (document.querySelector(selector)) { resolve(document.querySelector(selector)); observer.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true }); }); } waitForElm('.ief-entity-submit').then((elm) => { console.log('Element is ready'); console.log(elm.textContent); });