Skip to content

Amixa Technical Blog

Tag: PHP

eXtplorer does not allow login under PHP 5.6 and IIS Windows Server

Have you deployed out eXtplorer and received this error: PHP Deprecated:  Non-static method PEAR::isError() should not be called statically, assuming $this from incompatible context in X:\XXXXXX\WWW.AAAAA.com\www\libraries\JSON.php on line 828 it’s an easy fix. edit the file X:\XXXXXX\WWW.AAAAA.com\www\libraries\pear.php edit line 247 change this: function isError($data, $code = null) to this: static function isError($data, $code = null)

Read article

Problem with PHP mailer sending mail – Result: delayed, Status: 4.1.1 452 4.1.1 requested action aborted: try again later – GL/GL

If you see this type of message logged in your outbound mail logs, and your clients are unable to get email delivered to their domain, then I may have the s0lution for you. In our particular scenario, we have a PHP site running WordPress and the email server is located with IPOWER.  So the website…

Read article

How to migrate MYSQL to a new Windows server

Here is the easiest process that I know of for migrating (and upgrading) from one version of MYSQL running on Windows server, to a new Windows server. Setup the new Windows server, give it a fixed IP address (we’ll change that later to be at the same IP as the old server). Run all Windows…

Read article