Open evazzoler opened 3 years ago
Hi, cisco 7912 firmware file extension is ".sbin" and not ".sbn", so its filename generates a "not found" and red background in the web interface. In Sccp_manager.class.php, please change row 2117
from: $file_ext = array('.loads', '.sbn', '.bin', '.zup');
$file_ext = array('.loads', '.sbn', '.bin', '.zup');
to: $file_ext = array('.loads', '.sbn', '.bin', '.zup', '.sbin');
$file_ext = array('.loads', '.sbn', '.bin', '.zup', '.sbin');
Hi, cisco 7912 firmware file extension is ".sbin" and not ".sbn", so its filename generates a "not found" and red background in the web interface. In Sccp_manager.class.php, please change row 2117
from:
$file_ext = array('.loads', '.sbn', '.bin', '.zup');
to:
$file_ext = array('.loads', '.sbn', '.bin', '.zup', '.sbin');