undo some spelling fixes when upstream has those issues

This commit is contained in:
h00die 2023-10-11 06:30:11 -04:00
parent 557a15a115
commit 7ffc1ca491
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ where no SMB options are required to be set:
comment = CVE-2017-7494
path = /tmp
writable = yes
browsable = yes
browseable = yes
guest ok = yes
```

View File

@ -68,7 +68,7 @@ If at some point the IP (base URL) of Magento has changed, then you will need to
1. From the terminal, do: ```mysql -h localhost -u [username] -p[password]```
2. In the SQL prompt, do: ```use [magento database name]```
3. Do: ```select * from core_config_data;```, you should see both web/insecure/base_url (config ID 2) and web/secure/base_url (config ID 3) with the hardcoded IP.
3. Do: ```select * from core_config_data;```, you should see both web/unsecure/base_url (config ID 2) and web/secure/base_url (config ID 3) with the hardcoded IP.
4. Do: ```update core_config_data set value='http://[IP]/' where config_id=2;```
5. Do: ```update core_config_data set value='https://[IP]/' where config_id=3;```
6. Back to the Magento directory, do: ```sudo rm -rf var/cache/*```