#892 closed defect (bug) (fixed)
Setting up bbPress: Secret Key escapes string delimiter
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 1.0 | Priority: | high |
| Severity: | blocker | Version: | 0.9.0.2 |
| Component: | API - Installation/Upgrade | Keywords: | |
| Cc: | fel64@… |
Description
In setting up bbPress, I entered my Wordpress secret key to integrate with Wordpress. Installation completes successfully, but in going to the forums it informs me of an "unpected T_STRING" on line 22 of bb-config.php. This is because the bbPress secret key is slightly different to the wordpress one and ends with a backslash \, escaping the ' that is supposed to end the string. The rest of the file was therefore read as part of the secret key, until line 22 where we had another ' followed by (what looked to PHP like) non-code.
I fixed this by adding a second \ to the end of my secret key. I am still able to log in. The installer has to check if modifying the secret key not to end it with a backslash.
Fixing this now whilst adding the three new cookie key settings.