You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Storm saves the state of each visitor in a cookie. In this client the cookie is encrypted with a private encryption key. A script to generate the key is included in the storm-client root. This should be invoked from the storm-client root directory.
98
98
99
99
```
100
-
$ cd vendor/iveo/storm-client
100
+
$ cd vendor/storm/storm-client
101
101
$ php generate-key.php
102
102
```
103
103
@@ -121,8 +121,8 @@ The following needs to be configured to run the Storm Client:
121
121
$dirname = dirname(__FILE__);
122
122
/*
123
123
* application_name: The name of the application is used in various cache keys and if multiple instances are running you need different names
124
-
* certification_path: The path to the certificate file obtained and converted from Enferno
125
-
* certification_password: The password to the certificate obtained from Enferno
124
+
* certification_path: The path to the certificate file obtained and converted from Storm Commerce
125
+
* certification_password: The password to the certificate obtained from Storm Commerce
126
126
* redis_path: Your address to redis server, e.g. tcp://127.0.0.1:6379
127
127
* app_path: path to application encryption key
128
128
* base_url: The base URL to the Storm API
@@ -155,7 +155,7 @@ Instantiate the client:
155
155
$client = StormClient::self($config);
156
156
$client->context(); // Boots context and saves StormContext encrypted cookie
157
157
158
-
$client->expose()->generateClasses(); // Generate expose, only needs to run once if Enferno updates the StormApi
158
+
$client->expose()->generateClasses(); // Generate expose, only needs to run once if Storm Commerce updates the StormApi
0 commit comments