skip to Main Content

Not logging PHP errors on windows IIS server – Plesk

We're running an IIS website on a dedicated windows server which has Plesk 12 on it. We're having trouble getting PHP scripts to log any errors they encounter. In the php.ini we have tried setting both error_log="C:/Inetpub/vhosts/site_name/logs/php_errors.txt" and error_log="C:Inetpubvhostssite_namelogsphp_errors.txt". We…

VIEW QUESTION

web.config to mod_rewrite returning 400 Bad Request – Plesk

First time using mod_rewrite here I have this rules working on IIS: <?xml version="1.0" encoding="utf-8" ?> <configuration> <system.webServer> <rewrite> <rules> <rule name="services" stopProcessing="true"> <match url="^([a-z]+)/service/([a-zA-Z-]+)" /> <action type="Rewrite" url="serveis.php?id={R:2}&amp;lang={R:1}"/> </rule> <rule name="categories" stopProcessing="true"> <match url="^([a-z]+)/category/([a-zA-Z-]+)" /> <action type="Rewrite" url="subhome.php?id={R:2}&amp;lang={R:1}"/> </rule>…

VIEW QUESTION
Back To Top
Search