• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Resolved phpMyAdmin reject 200

Frank.P

Regular Pleskian

I dont know what happend ¿?¿¿?¿??¿​


I can see al tablet, but show rejected error and I cannot see any select sql​


1646834992024.png
 
I found the problem. The new cookie standar with parameter SameSite

I use a rewtite to set this new parameter to None

The cookie phpMyAdmin_https need this in moderm browsers

Now all work
 
I found the problem. The new cookie standar with parameter SameSite

I use a rewtite to set this new parameter to None

The cookie phpMyAdmin_https need this in moderm browsers

Now all work
Thats would be great if you could explain us how you did it ? Facing the same issue ..
Thanks in advance
 
FIRST METHOD:

- Connect to RPD
- Open Notepad
- Open File : C:\Windows\System32\inetsrv\config\applicationHost.config
- Search code "<proxy"
- Bellow paste this code :

<rewrite>
<outboundRules>
<clear />
<rule name="AddSecureCookieFlag" preCondition="" enabled="true">
<match serverVariable="RESPONSE_Set_Cookie" pattern=".*" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="true">
<add input="{HTTPS}" pattern="on" />
</conditions>
<action type="Rewrite" value="{R:0}; secure" />
</rule>
<rule name="AddSameSiteCookieFlag" preCondition="" enabled="true">
<match serverVariable="RESPONSE_Set_Cookie" pattern=".*" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="true">
<add input="{HTTPS}" pattern="on" />
</conditions>
<action type="Rewrite" value="{R:0}; SameSite=None" />
</rule>
</outboundRules>
</rewrite>

1650713936400.png


SECOND METHOD:

- Connect to RPD
- Open IIS Manager
- Go to Server
- Go to Rewite URL

1650714045249.png

- Click on Add new rule
- Select Blanck Outbound

1650714115707.png

- Variable Name : RESPONSE_Set_Cookie
- Pattern : .*
- Condicion : {HTTPS} and Pattern : on
- Action: Rewrite and Value : {R:0}; secure

1650714285438.png




- Add second Rule
- Variable Name : RESPONSE_Set_Cookie
- Pattern : .*
- Condicion : {HTTPS} and Pattern : on
- Action: Rewrite and Value : {R:0}; SameSite=None



1650714384367.png


When add the 2 rules and go back see this :

1650714498942.png
 

Attachments

  • 1650714475158.png
    1650714475158.png
    7.6 KB · Views: 0
Back
Top