Friday, June 20, 2014

Aestan Tray Menu has encountered a problem WAMP SERVER


Aestan Tray Menu has encountered a problem

Make sure no other program conflict Wamp such as IIS,

Microsoft Web Deploy, Web Deployment Agent Service, SQL,

Skype, Zonealarm, firewall/antivirus, NOD32, Eset, any web

related program including Remote Desktop, Teamviewer or

Apache, MySQL, PHP outside wamp folder (ie. in Program

Files or System32 folder) ...

IIS and Apache/Wamp are both web server and might conflict

in some way, so you have to disable IIS in order for Wamp

to work

Disable IIS in Vista/W7:

Control Panel, Uninstall Programs, Turn Widows Features On

or Off, uncheck Internet Information Services

Disable IIS in XP:

Control Panel, Add/Remove Programs, Add/Remove Windows

Components, uncheck Internet Information Services (IIS)

Restart computer, then restart Wamp

Also, in folder C:\WINDOWS\System32\drivers\etc, open file

hosts and delete anything in this file and have only this

line below and nothing else

127.0.0.1 localhost

If using Skype, open Skype > Tools > Options > Advanced >

Connection then uncheck "use port 80..." restart Wamp then

Skype

--------------------
Try this: open file httpd.conf through wamp tray icon and

find:

listen 80

Replace with:

listen 8181

In browser, use 'http://localhost:8181'
If it work, then probably your ISP block port 80

-----------------------------------

   

Try to install .Net framework Latest version.

 Link:
http://www.microsoft.com/en-us/download/details.aspx?id=21
Before Installing WAMP make sure that you uninstalled old

versions.

FOR 32 Bit windows

http://www.microsoft.com/en-us/download/confirmation.aspx?id=5582

FOR 64 Bit windows

http://www.microsoft.com/en-us/download/details.aspx?id=15336

Friday, June 6, 2014

send mail using codeigniter

Taste Your Words ... Judge tosses interrogatio...
Taste Your Words ... Judge tosses interrogation in fatal Brevard deputy shooting (Oct. 8, 2013) ...item 2.. 'Rapebait' Fraternity Email Causes Stir (Oct 09, 2013) -- Class stupid @ 'Phi Kappa Tau' ... (Photo credit: marsmet53)
Funny Internet Spam for eMail and Websites is ...
Funny Internet Spam for eMail and Websites is Spicy (Photo credit: epSos.de)
LIFE Magazine (September 27, 1923)  ...item 3....
LIFE Magazine (September 27, 1923) ...item 3.. Is life really fair? -- This is the calculus of unfairness. (October 9, 2011 / 11 Tishrei 5772) ...item 4.. Coping with homework insanity (Posted on Tuesday, 09.18.12) ... (Photo credit: marsmet541)
 
If you want send mail using codeigniter
 on loclahost then you can use the following code for this purpose.
 
 
 
 
 
 
 
 
 
function sendMail()
{
    $config = Array(
  'protocol' => 'smtp',
  'smtp_host' => 'ssl://smtp.googlemail.com',
  'smtp_port' => 465,
  'smtp_user' => 'xxx@gmail.com', // change it to yours
  'smtp_pass' => 'xxx', // change it to yours
  'mailtype' => 'html',
  'charset' => 'iso-8859-1',
  'wordwrap' => TRUE
);

        $message = '';
        $this->load->library('email', $config);
      $this->email->set_newline("\r\n");
      $this->email->from('xxx@gmail.com'); // change it to yours
      $this->email->to('xxx@gmail.com');// change it to yours
      $this->email->subject('Resume from asd for your Job posting');
      $this->email->message($message);
      if($this->email->send())
     {
      echo 'Email sent.';
     }
     else
    {
     show_error($this->email->print_debugger());
    }

}
Enhanced by Zemanta

GitHub repository using Git Bash command

  To add a project to a GitHub repository using Git Bash command line, you can follow these steps: Create a new repository on GitHub by logg...