πΊπ¦Ukraine NightAr Kharkiv
Hello, this is issue not of this module. This just drush working.
You can modify it by 2 solutions:
- When you use the drush command
drush storybook:generate-all-stories
, add global parramaeter for setting you uri(--uri=SITE_URI
). it should be like:
drush storybook:generate-all-stories --uri=https:\\your_project.test
- Second solution is set you the URI only once. In this case, you should create the drush settings file in your current Drupal root folder: drush/drush.yml. For example, in my case it will be /home/snight/projects/your_project/drush/drush.yml where /home/snight/projects/your_project is your_project root folder. For this file you should add options for your uri:
options:
uri: 'https://test_project.test'
In some cases its need to run clear cache command: drush cc drush
πΊπ¦Ukraine NightAr Kharkiv
Hello, I got same error. After the payment complete the session was closed and when I try to render order for search API, I got an error "headers already sent" On my side i have this error on method:
class CartSession
...
public function hasCartId($cart_id, $type = self::ACTIVE) {
$key = $this->getSessionKey($type);
$ids = $this->session->get($key, []);
return in_array($cart_id, $ids);
}
So, I have a little bit changed your fix.