- Left Click on Windows Start
- Select Run application
- Type Shell:Common Startup and click ok
Here is some unofficial info that I compiled for a customer some time ago. Maybe you can use it as a starting point.
ftp.drupal.org , Port 443 (for update module)
git.drupal.org , Port 22, 80, 443 (for patches)
packages.drupal.org , Port 22, 80, 443 (for Drupal Composer packages)
updates.drupal.org , Port 80, 443 (for update module)
For forcefully purging the package.
Since removing packages can be destructive, print the list of the package that will be removed:
dpkg -l | awk '{print $2}' | grep -i mysql | grep -v lib
Check if any important package is being removed. If everything seems fine, proceed to step 2.
Purge the packages:
<?php | |
use \Drupal\locale\SourceString; | |
$source_string = "Source text string"; | |
$translated_string = "translated string"; | |
$langcode = "ar"; | |
// Find existing source string. | |
$storage = \Drupal::service('locale.storage'); |
drush cdel rest.resource.{YOUR_RESOURCE_NAME}
<?php
$query = \Drupal::entityTypeManager()->getStorage('oauth2_token')->getQuery();
$entity_ids = $query->execute();
$results = \Drupal::entityTypeManager()->getStorage('oauth2_token')->loadMultiple(array_values($entity_ids));
//var_dump($results);
curl --request POST \
-Li 'URL_VALUE' \
--header 'cache-control: no-cache' \
--header 'content-type: application/json' \
--data '{\n\n"Name":"Test"\n\n}'
Angular 8 to 9 :-
- Follow the official migration guide.
- Add "ng add @angular/localize" and add "import '@angular/localize/init';" in polyfills.ts, remove entryComponents
Angular 9 to 11 :-
-
Add a slash before assets url (if you get - Module Error (Emitted value instead of an instance of Error)) - https://stackoverflow.com/questions/53024995/module-error-emitted-value-instead-of-an-instance-of-error
-
Hammerjs - https://indepth.dev/posts/1075/exciting-times-ahead-be-ready-for-angular-9#hammerjs-is-now-optional & https://stackoverflow.com/questions/63613272/hammer-gesture-config-import-error-after-updating-angular-project-from-7-to-10 & https://github.com/angular/components/blob/master/guides/v9-hammerjs-migration.md#the-migration-reported-ambiguous-usage-what-should-i-do