| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 8 months |
| seen | 22 hours ago | |
| stats | profile views | 21 |
|
May 19 |
comment |
HTML5 <audio> tag do not work/play in IE10 By using online-convert.com for converting my .mp3 to .ogg, uploaded them and used them as this: <audio controls> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg"> Your browser does not support the audio tag. </audio> I got it too work with Opera and Firefox but not for IE so whats up with IE? I know it supports .mp3 and I hav latest version. |
|
May 17 |
comment |
Subject in PHPmail $head gets doubled and in wrong encoding Found solution: fixed by breaking down your $message to base64 code lik this: $message = chunk_split(base64_encode($message)); and then add this to mail header: "Content-Transfer-Encoding: base64\r\n\r\n" |
|
May 17 |
comment |
PHP script adds a space randomly This worked for me too. |
|
May 17 |
comment |
Subject in PHPmail $head gets doubled and in wrong encoding One other thing - the word "whenever" in the sentence "Welcome back to energyshop.se whenever you like!" is different in my mail inbox outside the webhost one.com which I use and in the webhost mail which I also send the same mail to, but as a copy. It has the exact same code, but in the mail outside webhost its interpreted as "whenever" as it should but in the copy, in the mail of the webhost its interpreted as "whene ver" with a white space in the middle of the word. I have copied it into a notepad and indeed there is a white space. Also not VERY important, but interesting. Do you know why? |
|
May 17 |
comment |
Subject in PHPmail $head gets doubled and in wrong encoding Exactly as Blazemonger pointed out I actually pass $subject two times without realizing it. This code is just sending the UTF-8 encoded $subject: mail($to, NULL, $message, implode("\r\n", $headerFields)); |
|
May 17 |
comment |
Subject in PHPmail $head gets doubled and in wrong encoding Omg you are right, I be back soon with the solution when I tested some, thanks bro! |
|
May 15 |
comment |
Loop through $_POST array item_nameX (Dynamically Add Number to End of Variable Name) I did it! I didnt use all ur code, but what I needed to gt it done. Im sure it could be better, but its working and its by my hands so im happy! :) Updated code. |
|
May 15 |
comment |
Loop through $_POST array item_nameX (Dynamically Add Number to End of Variable Name) Yep! I just on my own realized that I had been trying to use: $item_number = $response['item_number'].$i; instead of $item_number = $response['item_number'.$i]; where the $i is INSIDE of the []. Silly me. Thanks a lot, the rest of the code is also very helpful and I think I will manage to sort this out now. |
|
May 15 |
comment |
Loop through $_POST array item_nameX (Dynamically Add Number to End of Variable Name) Yes that is true, thanks. But I dont think it even served a function, I deleted it and I have the same result. Only name showing, but that indicates that it still can find the name, but still the item_name is just item_name and not item_name1 for example. Ill update the code. |
|
May 11 |
comment |
Going from sandbox environment to Live PayPal I ws able to edit the IPN to following: pastebin.com/xdq7RUV8 and to get both mails (to customer and to seller as receipt/copy o receipt) sent. This is in sandbox mode so I dont know if its working in "live". Im gonna test this ASAP. But question remains, what should I do with the PDT? Its almost exactly the same as in xcommerce's PDT code sample and its working fully in sandbox, but item_name is lost when going live, so something is not working. Heres PDT: pastebin.com/rXmyHkqv |
|
May 11 |
comment |
Going from sandbox environment to Live PayPal The problem with thee PDT is that its the sam eas the xcommerce code sample for PDT but it still dont work - only in sandbox test environment. Some of the tx-tokens variabls is sent but not all and not the most important ones. |
|
May 11 |
comment |
Going from sandbox environment to Live PayPal The problem with the IPN is that I have done it by myself and other sources than the xcommerce code sample for the IPN and in my solution I insert the purchase into a DB which is neat and I dont know how to edit this file to suit the code from xcommerce - to have the best of both. |
|
May 11 |
comment |
Going from sandbox environment to Live PayPal Sorry that was my PDT. Hers my IPN where Its not quite the same as the PDT and I dont have the CURL-check: pastebin.com/MrAFD98p |
|
May 11 |
comment |
Going from sandbox environment to Live PayPal As you can see the changes between them is 1: cmd=_notify-synch TO cmd=_notify-validate, 2: added the lines curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);, curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1); curl_setopt($ch, CURLOPT_FORBID_REUSE, 1) and lastly 3: if(!$res){ //HTTP ERROR }else { //parsedata.. TO: if(!$res){ //HTTP ERROR }else if (strcmp ($res, "VERIFIED") == 0) { //parse Am I on right track? This is the last piece of thing that has to e solved for this project to be done and I cant seem to get it done by myself and I think I could do it with your expert help! |
|
May 11 |
comment |
Going from sandbox environment to Live PayPal Sigh. I cant understand this: isnt the CURL-lines the code that does the POSTBACK? I already have this in my ipn... Really cant you try to explain this thoroughly? It would be RLY appreciated. This is some of my code before I checked up on some sample code: pastebin.com/YT1SJV1X and this is where I have edited to "match" the code example: pastebin.com/hSVRquix |
|
May 9 |
comment |
Going from sandbox environment to Live PayPal Found this: is this sufficient, and after where should I paste it? PHP // post back to PayPal system to validate $header .="POST /cgi-bin/webscr HTTP/1.1\r\n"; $header .="Content-Type: application/x-www-form-urlencoded\r\n"; $header .="Host: www.paypal.com\r\n"; $header .="Connection: close\r\n"; |
|
May 9 |
comment |
Going from sandbox environment to Live PayPal Heres my IPN and PDT: pastebin.com/tBvkkdyk pastebin.com/uet9nNeX the question now is Where to put this post back? In the IPN or PDT or both? |
|
May 9 |
comment |
Going from sandbox environment to Live PayPal Also, this affects IPN too since the mail sent to customer CAN show for example total amount and payer_mail wiht my solution and their name, but not item_name. Is this also fixed by doing that post back? |
|
May 9 |
comment |
Going from sandbox environment to Live PayPal Ok thanks for the input I guess I have to read up on that. But why is it working during sandbox? Is it because when testing the tx-token is automatically VERIFIED without having to do the post back? Which is only needed to in live environment? Where can I read up on the post back thingy? |
|
Mar 30 |
comment |
UTF-8 and ÅÄÖ special characters PHP tried and wthout result :/ |