Jump to content

Alexander Archon

Clients
  • Joined

  • Last visited

Everything posted by Alexander Archon

  1. Great news, our agency has been following the development closely and are keen to start working with our client on their community with V5. A question relating to this is when can we expect to see updated developer documentation? Currently it is still referencing only IPS4: Appreciate that you are all very busy and deserve a bit of a break after getting the release over the line :)
  2. I am trying to add custom permissions to a category. I want the bottom group to have permission to add records, however the checkbox is greyed out so I am unable to do this. Is there a setting somewhere I can change to allow this? Thanks
  3. Hello, We've recently completed upgrades to the latest version and have found that a previously working integration is now failing through the REST API. The error logs show an SQL issue: INSERT INTO `cms_database_revisions` ( `revision_member_id`, `revision_date`, `revision_database_id`, `revision_record_id`, `revision_data` ) VALUES ( 5268, 1712654770, 1, NULL, '{<DATA OMITTED>}' ) Column 'revision_record_id' cannot be null Looking further we can see that code was introduced in 4.7.15 that now tries to save a revision when creating a new record in this core file: applications/cms/api/records.php if ( $item::database()->revisions ) { $revision = new \IPS\cms\Records\Revisions; $revision->database_id = $item::$customDatabaseId; $revision->record_id = $item->_id; // .... rest of file It sounds similar to the reported issue here after a search of this forum: It would be great to know if there is a fix we can apply from a working case, or if this is a bug? Many thanks.