Ref: awesomeopensource.com/projects/cryptocurrency-exchanges
Ref: awesomeopensource.com/projects/cryptocurrency-exchanges
# apt-get install php5-gd
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
Reading package lists... Done Building dependency tree Reading state information... Done The following extra packages will be installed: libgd2-xpm Suggested packages: libgd-tools The following packages will be REMOVED: libgd2-noxpm The following NEW packages will be installed: libgd2-xpm php5-gd 0 upgraded, 2 newly installed, 1 to remove and 7 not upgraded. Need to get 270 kB of archives. After this operation, 176 kB of additional disk space will be used. Do you want to continue [Y/n]? y Get:1 http://debian.osuosl.org/debian/ squeeze/main libgd2-xpm amd64 2.0.36~rc1~dfsg-5 [231 kB] Get:2 http://security.debian.org/ squeeze/updates/main php5-gd amd64 5.3.3-7+squeeze9 [39.1 kB] Fetched 270 kB in 2s (124 kB/s) dpkg: libgd2-noxpm: dependency problems, but removing anyway as you requested: libgvc5 depends on libgd2-noxpm (>= 2.0.36~rc1~dfsg) | libgd2-xpm (>= 2.0.36~rc1~dfsg); however: Package libgd2-noxpm is to be removed. Package libgd2-xpm is not installed. (Reading database ... 206928 files and directories currently installed.) Removing libgd2-noxpm ... Selecting previously deselected package libgd2-xpm. (Reading database ... 206919 files and directories currently installed.) Unpacking libgd2-xpm (from .../libgd2-xpm_2.0.36~rc1~dfsg-5_amd64.deb) ... Setting up libgd2-xpm (2.0.36~rc1~dfsg-5) ... Selecting previously deselected package php5-gd. (Reading database ... 206930 files and directories currently installed.) Unpacking php5-gd (from .../php5-gd_5.3.3-7+squeeze9_amd64.deb) ... Processing triggers for libapache2-mod-php5 ... Reloading web server config: apache2. Setting up php5-gd (5.3.3-7+squeeze9) ... |
Proof that ;
$ php5 -m | grep -i gd
!!! _
BAYKALDA sende ISTIFA ET !!!
HER ZAMAN SOYLEDIM, ISTEMIYORUZ. …
VMwareDiskMount_kutayzorlu.com
–
1 |
mklink "C:\Users\KUTAYZORLU\AppData\Roaming\FileZilla\sitemanager.xml" "\\192.xx.xx.\x\settings\sitxemanager.xml" |
–
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
To make File Zilla, Common - Shared Site Manager - \\Dropbox\Settings\sitemanager.xml “softlink” to your shared sitemanager.xml #use COMMAND PROMPT (Windows), or TERMINAL (Linux and OSX) for this. # Windows: # mklink “C:\Users\YourUserName\AppData\Roaming\FileZilla\sitemanager.xml” “C:\Users\YourUserName\Dropbox\Settings\sitemanager.xml” # OS X: # ln -s /users/YourUserName/Dropbox/Settings/sitemanager.xml /users/YourUserName/.config/filezilla/sitemanager.xml # Linux: # ln -s /home/YourUserName/Dropbox/Settings/sitemanager.xml /home/YourUserName/.filezilla/sitemanager.xml |
PopupDiv
https://gist.github.com/madan712/4546371
1 2 3 4 5 6 |
<div id="blanket" style="display:none"></div> <div id="popUpDiv" style="display:none"> <a href="#" onclick="popup('popUpDiv')" >Click to Close CSS Pop Up</a> </div> <a href="#" onclick="popup('popUpDiv')">Click to Open CSS Pop Up</a> |
1 2 3 4 5 6 7 |
If you want to use TLS, try adding: $mail->SMTPSecure = 'tls'; If you want to use SSL, try adding: $mail->SMTPSecure = 'ssl'; Keep in mind that: |
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
include 'class.phpmailer.php'; $mail = new PHPMailer(); $mail->IsSMTP(); $mail->SMTPAuth = true; $mail->SMTPSecure = 'ssl'; $mail->SMTPDebug = 0; $mail->AddAddress($mail->Username, 'Information'); $mail->AddReplyTo($email, $name); # kutay zorlu $mail->Username $mail->CharSet = 'UTF-8'; $mail->Subject = $e_subject; $mail->MsgHTML($msg); # if($mail->Send()) {} // https://code.google.com/a/apache-extras.org/p/phpmailer/source/browse/trunk/class.phpmailer.php |
Download it here : PHPMailer_5.2.4
Another Examples:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<?php use PHPMailer\PHPMailer\PHPMailer; require 'vendor/autoload.php'; $mail = new PHPMailer; $mail->isSMTP(); $mail->SMTPDebug = 2; $mail->Host = 'smtp.kutayzorlu.com'; $mail->Port = 587; $mail->SMTPAuth = true; $mail->Username = 'box1@kutayzorlu.com'; $mail->Password = 'EMAIL_ACCOUNT_PASSWORD'; $mail->setFrom('box1@kutayzorlu.com', 'Your Name'); $mail->addReplyTo('2box@kutayzorlu.com', 'Your Name'); $mail->addAddress('kutayzorlu.com@gmail.com', 'Receiver Name'); $mail->Subject = 'PHPMailer SMTP message'; $mail->msgHTML(file_get_contents('message.html'), __DIR__); $mail->AltBody = 'This is a plain text message body'; $mail->addAttachment('testkutayzorlu.txt'); if (!$mail->send()) { echo 'Mailer Error: ' . $mail->ErrorInfo; } else { echo 'Message sent!'; } ?> |