• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

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