![]() |
Admin 2/4/2025 |
What build of PHPRunner 11 is this? |
C
|
ChrisOB author 2/4/2025 |
Hi Sergey, It's 11.0.14 Mac but have also tried with 11.0.14 on Windows and it's the same. I wonder if there is an issue somwhere that 10.92 let pass but 11 is more strict, but I can't find it. |
![]() |
Admin 2/4/2025 |
Chris, thi doesn't answer the question. I'm not asking what version to you use, I'm asking the build number. |
C
|
ChrisOB author 2/4/2025 |
Apologies, it's 42780. |
![]() |
Admin 2/4/2025 |
Thank you.
If this still doesn't help contact support directly sending your project export ( Project -> Export project ). |
C
|
ChrisOB author 2/5/2025 |
Thanks Sergey, Unfortunately the same happens with build 42781, after synchronising the DB and Project->save and build project structures. I have opened a support ticket with the export. Many thanks, Chris |
C
|
ChrisOB author 2/6/2025 |
Thanks to Sergey this is issue is resolved. So it helps others, the problem was that I have fields from a joined table (i.e. not the main table) on the in the "form" area of the Edit page of the main table. Most of these fields are for display purposes but one does get updated and it was this updating that was causing the error. Sergey spotted the issue and sent me to this link: https://xlinesoft.com/phprunner/docs/update_multiple_tables.htm about updating multiple tables and unsettng joined fields. The code that works for me is in the "Edit->Before record updated" event, and is: // To updated the editable field from the joined table // Unset the joined fields so it's just the mian Edit table fields that get written back. return true; |