Reload error cannot touch ‘/etc/asterisk//etc/asterisk/extensions_custom_scripter.conf’: No such file or directory

I stumbled upon this problem while installing fop2. fwconsole reload was giving me an error
Reload error cannot touch ‘/etc/asterisk//etc/asterisk/extensions_custom_scripter.conf’: No such file or directory

I checked were it might originate:

[root@freepbx ~]# grep -Hnr 'extensions_custom_scripter.conf' /etc/
/etc/asterisk/extensions_custom.conf:37:#include "/etc/asterisk/extensions_custom_scripter.conf"
/etc/asterisk/extensions_custom_scripter.conf:3:;! Filename: /etc/asterisk/extensions_custom_scripter.conf
``

So I uncommented the below line in /etc/asterisk/extensions_custom.conf and reload went smoothly:

include "/etc/asterisk/extensions_custom_scripter.conf"

The # character in asterisk dialplan files is not a comment, it’s a required part of the include statement. Presumably the referenced file doesn’t exist or has incorrect permissions.

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.