I have installed PrestaShop on IIS server using Plesk to a root folder of a domain - it installed without any apparent issue
Once I open the site, I get a bunch of similar errors:
PHP Warning: file_exists(): open_basedir restriction in effect. File(C:\inetpub\vhosts\pharmamalta.com\httpdocs/themes/default/modules/blocksearch/C:\inetpub\vhosts\pharmamalta.com\httpdocs/modules/blocksearch/blocksearch-top.tpl) is not within the allowed path(s): (C:/inetpub/vhosts/pharmamalta.com\;C:\Windows\Temp\) in C:\inetpub\vhosts\pharmamalta.com\httpdocs\classes\Tools.php on line 1380
I found that php.ini needs to be altered to have the following settings:
extension = php_mysql.dll
extension = php_gd2.dll
allow_url_fopen = On
register_globals = Off
magic_quotes_gpc = Off
allow_url_include = Off
My server had these settings before installation.
Any idea how to fix this?