Jump to content

Nati323

Members
  • Posts

    93
  • Joined

  • Last visited

Everything posted by Nati323

  1. Nati323

    Paypal payment

    Hi, I hope I'm in the right forum. I have a problem with paypal, I want to use PDT, so I read the Documentation about PDT (https://developer.paypal.com/docs/classic/products/payment-data-transfer/) But no where there written what is the link the auth the transaction. To which url should I do a request in order to verify the transaction?
  2. Hey all, I want to send data to server using AJAX But I dont want to send it via post/get variables I want to send the data in the request body in JQuery I just do: $.ajax({ url: 'someurl', data: 'foo' }); But how can I do it in Pure JS ?
  3. Hey all, I want to install ffmpeg on my localhost I have xampp version;5.6.8 PHP 5 What I need to do to install it? I run before search on google and I found some answers in some forum but the links there was broken
  4. thanks, its not possible to do this in one query?
  5. hey , suppose i have the next table: ---A-------B--- 1 2 2 3 now, i need to know how many rows there is from each value, for example the result should be: A - [1] - 1A - [2] - 1B - [2] - 1B - [3] - 1 how can i do that? EDIT: I know which values will be in each culomn
  6. who is Webkit? thanks on the link to msdn, now i know its support since 5.0 :} in mdn says that they support only from > 40 you know a replace for this propety for old versions of Mozilla?
  7. be sure its biased, its work for me in IE and Chrome, so tell me, is thereis no other way to check it for sure? IE , Chrome, Opera .... dont have Documetation that shows this stuff?
  8. i read the first link that you gave when i search in google, but the meaning of: they dosent say which broswers support, they only say that the imlementetion is inconsistently, whats the meaning of that? thanks for the other link.
  9. hey, i use the offsetX propeti on the mouse event object and i want to know in which broswers its supported? also, is there anyway to get the elements with some classname withos getElementsByClassName method?
  10. yes , i try now... i just think that this variable belong only to cart...
  11. i know, but want i want is to set the cmd variable to _xlick, mean buy now, and then i cant to use the bussines variable...?
  12. i read about this variable, bus as you can see in the page i gave before there is an explantion berfore this variable that says and i'm quote: what i understand that this variables uses only for shopping cart....? am i wrong?
  13. hey i read this: https://developer.paypal.com/webapps/developer/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/#id08A6HH00W2J about html variables, i almost understand all, i just not see nothing about where i set to where the pays will transferd... do you know something about that?
  14. i know, but i suppos that i dont need all paypal API, only some chapters, but i dony know what i need ... because that i ask you to direct me...
  15. hey, i read they documentation beafore i post here, 1) my english is not so good so i didnt find my self there, can you direct me?
  16. hey, i hope i'm in the right forum, i want to use paypal payments that pepole can pay to me with cretids cards and paypal in my website. now, i dont want to create a button with preset price, i want its to be dynamic, i mean that i can change the price in my site, and than to send pepole to pay in paypal. how can i do this? also , i can i do that after that pepole pay to me the paypal site will transfer them to my site? and how can i check with paypal if they realy paid to me? thanks .
  17. so why its dosent work for me on Some hosting server that i have tried? can you try my code with the same parameters just for a check, maybe its was problem with the server...
  18. i use PHPMailer with gmail SMTP, the code: $mail = new PHPMailer(true); $mail->Mailer = "smtp"; $mail->IsSMTP(); // telling the class to use SMTP $mail->SMTPDebug = 0; $mail->SMTPSecure = 'tls'; $mail->Host = "smtp.gmail.com"; // SMTP server $mail->Username = "nati323@gmail.com"; $mail->Password = "******"; $mail->addCustomHeader('Content-Type: text/plain; charset="utf-8"'); $mail->SMTPAuth = true; $mail->Port = 587; $mail->From = $from; $mail->AddAddress($to); $mail->Subject = $subject; $mail->Body = $msg; return $mail->Send(); i dont know what is isp...
  19. a) i try to sent to another mail address and its didnt work to. with PHPMailer this mail send good. c) i read in stackoverflow about what you say and i did all they say there, still not work. d) You or another pepole trying my code, and i get mails
  20. i define every thing like they say there but still it dosent work, i also tried to send mail vie some hosting that have sendmail and still dosent work. at the end i use PHPmailer with connect to Gmail SMTP server, but still i want to know why its didnt work for me...
  21. i also check on some server , not on my xampp, and its still dosent send, i try to copy the mail send code from php.net, and still no result, please someone i very need this thing work for me...
  22. hey, i have a problem , i try to send email vie php mail() function, and the mail dosent get to my mail acount, the function return true, but the mail dosent came to my inbox or spam boxes on my mail, my code: if (!mail($_POST['mail'], $text['EMAIL_RECOVER_MSG_SUBJECT'], $text['EMAIL_RECOVER_MSG'], $from)) { $msg = $text['MAIL_ERROR']; $msgDisplay = 'inline'; } else { $recover = false; echo "<div class='alert alert-success'> {$text['RECOVER_MAIL_SENT']}</div>"; } the code show that all run good and the function return true, example for information that i try to send: nati323@gmail.comPassword Recover: From dmworld24.comYou Forget Your Password To Recover it Please Go Into The Next Link:rn http://dmworld24.com/login.php?act=rec&token=44524977019863526261982473991 rn If You Didnt Ask For Password Recovering Just Ignore This MessageFrom: system@dmworld24.com the first line is to, second subject, three msg, four: from header i'm usins xampp, so maybe somthing need to be installled.. ??
×
×
  • Create New...