I'm developing a system that uses HTML, JS, PHP and MySQL. Pages have multiple AJAX calls to the bank. I have approximately 350 users today.
Lately I've been getting a lot of errors from:
-
ERR_CONNECTION_TIMED_OUT
-
ERR_CONNECTION_REFUSED
- And others.
Users are also having these issues.
A basic overview of my system:
- The system is hosted on
LOCAWEB
- I use
SESSION
- All queries are located in separate PHP files, as needed.
- There are some functions that use
file_get_contents()
because I need to fetch user data from another site. - All pages have their own JS file to separate the functions I need.
- I use the
ADMINLTE
theme as the base.
I ask:
- What is the relationship of these errors to my system?
- Is there a wrong setting in
PHP.INI
?
NOTE: For local testing, I use WAMP, and never had any problems.