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
{{ message }}
This repository has been archived by the owner on Jul 15, 2022. It is now read-only.
this prevents wordpress from functioning as its authentication process sets multiple cookies in a single request. (cf wp_set_auth_cookie in wp-includes/pluggable.php.)
i have tried using the version of node-php currently available from npm as well as the current head on github with the same results. am i doing something wrong?
edit: in case it's relevant, here is the code that i am using to start the server:
if php's
setcookie
is called multiple times per response, only the last cookie will be included in the response.for example, the response from the following php code will include only the "bbb" cookie.
for contrast, the following express code works as expected.
this prevents wordpress from functioning as its authentication process sets multiple cookies in a single request. (cf
wp_set_auth_cookie
inwp-includes/pluggable.php
.)i have tried using the version of node-php currently available from npm as well as the current head on github with the same results. am i doing something wrong?
edit: in case it's relevant, here is the code that i am using to start the server:
edit2: and just in case this is relevant...
edit3: i've also confirmed that the above php code works as expected when served by invoking the php executable as follows
The text was updated successfully, but these errors were encountered: