CMS require update to php 8.5+
Posted: Tue Jul 21, 2026 5:39 am
In cms-admin.php page i have this error:
Warning: Undefined array key "publish_at" in D:\wamp64\www\....\cmsadmin.php on line 1047
Warning: Undefined array key "unpublish_at" in D:\wamp64\www\....\cmsadmin.php on line 1049
In cmsadmin.php at the two positions I have:
1047 - $publish_at_value = $data['publish_at'];
1049 - $unpublish_at_value = $data['unpublish_at'];
To solve the problem, it is necessary to permanently modify the page script:
1047 - $publish_at = $_POST['publish_at'] ?? null;
1049 - $unpublish_at = $_POST['unpublish_at'] ?? null;
, which is not possible for the WWB user because with each republishing of the site it returns to the initial values. I know that I can use fcgid_module in wampserver, but it is preferable without it, considering the new version of wwb(21). Thank you.
Warning: Undefined array key "publish_at" in D:\wamp64\www\....\cmsadmin.php on line 1047
Warning: Undefined array key "unpublish_at" in D:\wamp64\www\....\cmsadmin.php on line 1049
In cmsadmin.php at the two positions I have:
1047 - $publish_at_value = $data['publish_at'];
1049 - $unpublish_at_value = $data['unpublish_at'];
To solve the problem, it is necessary to permanently modify the page script:
1047 - $publish_at = $_POST['publish_at'] ?? null;
1049 - $unpublish_at = $_POST['unpublish_at'] ?? null;
, which is not possible for the WWB user because with each republishing of the site it returns to the initial values. I know that I can use fcgid_module in wampserver, but it is preferable without it, considering the new version of wwb(21). Thank you.