How to ignore wp-toolkit process?

alexf
Junior Member
Posts: 22
Joined: 27 May 2023, 15:49

Re: How to ignore wp-toolkit process?

Post by alexf »

If you have more than 1 version of PHP running on your server, you will need a version specific rule for each version.
Sergio
Junior Member
Posts: 1689
Joined: 12 Dec 2006, 14:56

Re: How to ignore wp-toolkit process?

Post by Sergio »

No, as you can write your regex to take care of all PHP versions in just one line.
alexf
Junior Member
Posts: 22
Joined: 27 May 2023, 15:49

Re: How to ignore wp-toolkit process?

Post by alexf »

Sergio wrote: 21 Aug 2023, 05:18 No, as you can write your regex to take care of all PHP versions in just one line.
Sergio,
Thank you. I never thought to code the line with a regex [74|80|81].
I will take it as my birthday present today, 21-Aug.
Sergio
Junior Member
Posts: 1689
Joined: 12 Dec 2006, 14:56

Re: How to ignore wp-toolkit process?

Post by Sergio »

You can do it simpler, just write \d+ instead of [74|80|81], using \d+ you will take care of any PHP version old or future.

Happy Birthday!
Post Reply