1
There is a client who sells real estate and the real estate data is taken from an external json link. The system is working, but the system takes time because it is TOO much data. It spends about 1 - 2 minutes loading and then reports a 500 error (Internal server error). I use a 2GB RAM VPS server.
This 500 code usually indicates an incorrect programming error or permissions for folders/files, place at the beginning of your code:
ini_set('display_errors',1);
error_reporting(E_ALL);
, check again and see if more specific errors appear, also check the log message on/var/log/message
.– stderr