anjanesh this was migrated through opalstack wfmigrate
from webfaction, and readded automatically on opalstack backoffice during that process.
I was able to also migrate another app that was responsable for frontend, and now I have frontend running as expected, but on django backoffice, I am only able to check the login part, but if I login I receive this http message:
Page not found (404)
Request Method: GET
Request URL: http://web.opalstacked.com/repair/rma/
App 'repair', model 'rma', not found
You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.
I've changed both settings.py and httpd.conf to use the new home folder path, and have also removed those two VirtualHost fields that was not being used, and changed database password to the new one.
After some search I didnt found any logs related with django in my home folder, only from apache2, but doesnt have any errors or warnings there...
Django:
Frontend:
Not sure how can I debug what is happening with that login.
The database on webfaction was MySQL, and in Opalstack is MariaDB, so Django is still using the db engine for mysql. I tried to edit it to other engine just to see if there was another type of error on http, and it was, so I think that the db is not the issue, and that db engine its retrocompatible with mariadb, and the problem relies with django frontend because of 404 error after performing login.
Note: This django have like almost 15 years, and I got zero documentation about this on my side, and the guy who made this desappeared 4 years ago.