Why the application is regenarating the tables every day?
Hi,
I have created an application and it was uploaded to one external web server. When I was working in my local server it was ok but now that we have it in that external server we have one problem. We don't know why the application is running the code generator everyday. Is there any way to deactivate this option or knowing why is doing the regeneration day after day.
We have changed the index file to redirect the application to our login form, the code is:
<?php
// Redirect to the QCubed start page
//header('Location: assets/_core/php/_devtools/config_checker.php');
header('Location: includes/sesion/sesion.php');
?>But the application is not redirect to the codegen.php, besides, the action is done just from one day to another, not anytime the application is open.

There is no built-in mechanism to have the codegen run automatically in any fashion, and no way in PHP to schedule such an action on a daily basis.
So whatever is triggering it is outside of QCubed / PHP. I suggest looking at cron jobs / scheduled tasks / etc for the culprit.