I made a small registration system using PHP and MySQL, it worked fine on the local server but when it comes to uploading to the server the following happens:
There is a file named view.php
in the root, this file is deleted from scratch and when I try to access I get a 500 error (Strangely, not a 404, since it was deleted), an error_log is also generated in another folder ( core / login / security.php).
[09-Dec-2014 19:02:39 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20100525/mailparse.so' - /usr/local/lib/php/extensions/no-debug-non-zts-20100525/mailparse.so: cannot open shared object file: No such file or directory in Unknown on line 0
[09-Dec-2014 19:02:48 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20100525/mailparse.so' - /usr/local/lib/php/extensions/no-debug-non-zts-20100525/mailparse.so: cannot open shared object file: No such file or directory in Unknown on line 0
[09-Dec-2014 19:02:53 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20100525/mailparse.so' - /usr/local/lib/php/extensions/no-debug-non-zts-20100525/mailparse.so: cannot open shared object file: No such file or directory in Unknown on line 0
[09-Dec-2014 19:03:43 UTC] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20100525/mailparse.so' - /usr/local/lib/php/extensions/no-debug-non-zts-20100525/mailparse.so: cannot open shared object file: No such file or directory in Unknown on line 0
The strange thing is that my system has nothing to do with mailparse (according to the PHP.net definition) Does anyone have any idea what might be causing the problem?