It would be great to add a field to the recordings form, allowing the end user to add a note regarding the recording. This would allow the end user to more easily find the recording later.
It is not that hard to do it yourself, the code is there to tweak. I will write directly here, this is untested, it might contain typos or little errors.
You must add a new column into the mysql table, something like:
Comments
You must add a new column into the mysql table, something like:
After the table has the new field, edit the file /var/www/html/fop2/recordings.php . Find the line:
And add your new field there:
And to include the field in the search query, find the line:
And add your field there too:
Best regards,
Pressing the record button acts normal, but when you go to the recordings menu, no new recordings are there.
You will see a line like this:
$query = "INSERT INTO $MYSQLTABLE VALUES ('','$uniqueid',now(),'$whorecorded','$whomrecorded','$finalrecording','$duration','$context');";
Just add the empty value for note, if its the last field on the table it should look like:
$query = "INSERT INTO $MYSQLTABLE VALUES ('','$uniqueid',now(),'$whorecorded','$whomrecorded','$finalrecording','$duration','$context','');";
Best regards,