• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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