Smarty – «невозможно записать файл … templates_c». (smarty_internal_write_file.php: 44)

Я использую Smarty в первый раз. Он отлично работает на моем ноутбуке (MAMP), но когда я пытаюсь запустить базовый шаблон на моем рабочем сервере (Windows), я получаю это сообщение об ошибке:

Fatal error: Uncaught exception 'SmartyException' with message 'unable to write file C:\Inetpub\vhosts\path\to\web\root\smarty\templates_c\wrt516e53290e2095.47946913' in C:\Inetpub\vhosts\path\to\web\root\smarty\libs\sysplugins\smarty_internal_write_file.php:44 Stack trace: #0 C:\Inetpub\vhosts\path\to\web\root\smarty\libs\sysplugins\smarty_internal_template.php(201): Smarty_Internal_Write_File::writeFile('C:\Inetpub\vhos...', '<?php /* Smarty...', Object(Smarty)) #1 C:\Inetpub\vhosts\path\to\web\root\smarty\libs\sysplugins\smarty_internal_templatebase.php(155): Smarty_Internal_Template->compileTemplateSource() #2 C:\Inetpub\vhosts\path\to\web\root\smarty\libs\sysplugins\smarty_internal_templatebase.php(374): Smarty_Internal_TemplateBase->fetch('test.tpl', NULL, NULL, NULL, true) #3 C:\Inetpub\vhosts\path\to\web\root\admin-new\admin.php(99): Smarty_Internal_TemplateBase->display('test.tpl') #4 {main} thrown in C:\Inetpub\vhosts\path\to\web\root\smarty\libs\sysplugins\smarty_internal_write_file.php on line 44 

Я думал, что это может быть связано с правами доступа к файлам (не то, что я понимаю что-то о том, как права доступа к файлам работают в Windows), но когда эта строка:

 var_dump(is_writable('C:\Inetpub\vhosts\path\to\web\root\smarty\templates_c')) 

выводит bool(true)

Не знаю, куда идти отсюда. Почему не работает Smarty?