Upload image problem in Dynamic row add record

I am trying to upload images in a Master-Detail (one-to-many) relationship using a Dynamic Row to add detail records. When I add new records, all the data is saved correctly. However, the images are uploaded to the temporary folder and do not appear in the list view. Please assist me in resolving this issue.

Additional details are attached.

  1. What version of RS are you using?
  2. What project type are you working with?

1.I am using RADSystems version 8.1.8 because of the limitations of the host I will use, which supports PHP version 7.4 and an older version of Laravel.

2.I am using PHP Laravel + Bootstrap.

This would require manual code for you to fix. But first, share your laravel.log file in the {Project root}/storage/logs/ folder.

Note: make sure to perform the upload task that is having issues last before sharing the log file.

laravel log file
It seems that my log file is not updating with the latest data. Is there a way to save the log so that it stays up-to-date?


This is your error.

Thank you for analyzing the root cause of the problem.

I will work on finding a solution for the error in the next steps.

Could you kindly provide me with a bit more guidance? I would greatly appreciate it.

In the controller file where the upload is done or the app/Http/Controllers/Controller.php, check for a function call moveUploadedFiles it expects 2 parameters to be passed but only one is passed. You can check the App\Helper\Uploader.php you should see the function definition there.