How to Change Mysql Root password ? By Saurabh Patel June 04, 2015 Use the mysqladmin command. From the man page:```mysqladmin password "dontUseThisBogusPassword" Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps Comments
Email Address Validation By Saurabh Patel September 13, 2012 User this regular expression : ^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.(?:[A-Z]{2}|com|org|net|edu|gov|mil|biz|info|mobi|name|aero|asia|jobs|museum)$ Read more
HTML Emailing in ZF2 By Saurabh Patel October 29, 2014 <?php namespace Application\Model; use Zend\Mail\Message; use Zend\Mime\Message as MimeMessage; use Zend\Mime\Part as MimePart; use Zend\Mail\Transport\Sendmail as SendmailTransport; use Zend\Mail\Transport\Smtp as SmtpTransport; use Zend\Mail\Transport\SmtpOptions; use Zend\View\Renderer\PhpRenderer; use Zend\View\Resolver\TemplatePathStack; use Zend\View\Model\ViewModel; use Zend\View\Model\ModelInterface; class ApiEmail extends ApiInterface { protected $From = "XXXXX@gmail.com"; protected $FromName = "XXXX"; protected $To = "" ; protected $Subject = "" ; protected $Body = "" ; protected $Cc = "XXXXXX@gmail.com"; protected $Bcc = "XXXXX@gmail.com" ; protected $ReplyTo = "XXXX@gmail.com" ; protected $Sender = "" ; protected $Encoding = "UTF-8" ; protected $MESSAGE ; // getter setter ... Read more
CMS Integration By Saurabh Patel June 16, 2012 · CMS Driven Approach · Technical Considerations · The UserConnectModule · Passwords · Entity Attributes · Dealing with Legacy Attributes · Registration · Synchronizing Sessions · Magento Listeners · CMS Sessions · Shared Themes · Store Driven Integration Read more
Comments
Post a Comment