3

I have a few websites running with IIS 10 that use the same php.ini, and I now changed a value in the php.ini file which cannot be set via the ini_set() method in PHP.

Is there any way to reload the php.ini for one of the websites without stopping and starting the entire server? Restarting the website itself does not work.

I don't want to stop operation for users who might be using the other websites now

1 Answers1

2

You don't have to restart IIS.

It's enough to restart the Application Pool associated with the specific site.

harrymc
  • 498,455