/opt/lampp/var/mysql/mysql.sock
If you wanna run standard MySQL GUI tools like MySQL Administrator or MySQL Query Browser you should set up mentioned socket file in advanced details in connection manager. It will be work.
/opt/lampp/var/mysql/mysql.sock
http://dev.digi-corp.com/2009/02/xdebug-install-with-xampp-on-ubuntu/But better is just download as mentioned on
http://www.apachefriends.org/f/viewtopic.php?p=162080&sid=7311d338c7837dc2964f0d46bd44f978From Komodo site
http://code.activestate.com/komodo/remotedebugging/
ifconfig wlan0
gedit /opt/lampp/etc/httpd.conf
ServerName 192.168.0.168:80
sudo /opt/lampp/lampp startcauses mysql was not started with following error in /opt/lampp/var/mysql/copmuter.err
101106 20:18:59 mysqld_safe Starting mysqld daemon with databases from /opt/lampp/var/mysql
101106 20:18:59 [Note] Plugin 'FEDERATED' is disabled.
/opt/lampp/sbin/mysqld: Can't find file: './mysql/plugin.frm' (errno: 13)
101106 20:18:59 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
101106 20:18:59 InnoDB: Operating system error number 13 in a file operation.
InnoDB: The error means mysqld does not have the access rights to
InnoDB: the directory.
InnoDB: File name /opt/lampp/var/mysql/ibdata1
InnoDB: File operation call: 'create'.
InnoDB: Cannot continue operation.
101106 20:18:59 mysqld_safe mysqld from pid file /opt/lampp/var/mysql/ms-HP-620.pid ended
sudo chown -R nobody /opt/lampp/var/mysql
sudo apt-get install ssmtp
sudo gedit /etc/ssmtp/ssmtp.confedit variables hostname, FromLineOverride
hostname=smtp.gmail.com
FromLineOverride=YES
sudo gedit /opt/lampp/etc/php.iniadd or change following variables in php.ini
smtp_port = 465
sendmail_path =/usr/sbin/ssmtp -t
sudo /opt/lampp/lampp restart
$additional_headers = 'From: michaeljackson@heaven.org' . "\r\n";$res = mail('recipient@domain.com','test','test body', $additional_headers);var_dump($res);?>
$res should be TRUE after executing and check out your mail mailbox, there should be something like this:
Thanks to this forum post.