Sample PHP Mail Script with SMTP Authentication

The below email script is for PHP emailing with SMTP authentication. //new function $to = “you@your-domainname.com”; $nameto = “Who To”; $from = “script@your-domainname.com”; $namefrom = “Who From”; $subject = “Hello World Again!”; $message = “World, Hello!”; authSendEmail($from, $namefrom, $to, $nameto, $subject, $message); ?> /* * * * * * * * * * * * […]

See More

PHP Upgrade : ionCube PHP Loader error

ionCube PHP Loader error on website after PHP upgrade (from php 5.3.x to php 5.4.x) Site error: the file */home/cpaneluser009/public_html/wp-content/plugins/sspro/plugin-update-checker.php* requires the ionCube PHP Loader ioncube_loader_lin_5.4.so to be installed by the website operator. If you are the website operator please use the ionCube Loader Wizard <http://www.ioncube.com/lw/> to assist with installation.   Open the respective php.ini […]

See More