-
Content count
1,481 -
Joined
-
Last visited
About mark27uk3
- Birthday 02/02/1974
Profile Information
-
Real Name
Mark
-
Gender
Male
-
Location
24-7 Mobile Accessories
-
ok changed all $HTTP_POST_VARS to $_POST and the same error still occurs and no data is in the hidden fields in the source code. Mark
-
Hi Tom, Yes the details are shown as hidden fields <input type="hidden" name="cc_owner"><input type="hidden" name="cc_expires"><input type="hidden" name="cc_type"><input type="hidden" name="protx_direct_cc_number"><input type="hidden" name="cc_cvv"><input type="hidden" name="cc_start"><input type="hidden" name="cc_issue"><input type="hidden" name="osCsid" value="466fd9b1be86151e8dc6f235af21dfc7"><input type="hidden" name="shipping_total" value="1.95"><input type="hidden" name="ord_total" value="3.74"><input type="image" src="includes/languages/english/images/buttons/button_confirm_order.gif" border="0" alt="Confirm Order" title=" Confirm Order " value="submit"> I presume thats a good thing then lol Mark
-
ok looking again at the debug output, I see that all the customer data shows in the debug i.e. name, address, product, product description however the cc data does not I presume then that CC data should be in the string along with the name, address and order details hence why this error is being produced: The BIG BIG question is should the cc data be in string and if so why aint it lol I know I posted alot above, just trying to get my around it and understand it. Thanks Mark
-
Ok so I uninstalled the module in the admin and then reinstalled it and some of the error disappeared and has now been replaced by this: Now normally headers already sent indicates white space but there is no white space in protx_process urgh Mark
-
Ok after looking deeper I saw your reply about this in January, however register_long_arrays is 'On' so something else must be causing it. Regards Mark
-
Hi Tom, Thanks for posting back. I have done as suggested and now it skips the checks, now when I confirm the order on checkout_confirmation I am presented with this error: I can be a pain cant I lol Mark
-
Tom, this is error is generated before checkout_confirmation.php Mark
-
Hi Tom, I have tried various expiration dates as it states in the module Mark
-
Hi Guys, I have installed protx 4.4 and thought all was well until I tried to run a test transaction through the protx test server. I am receiving this error: I have googled forever and day and have noticed that others have had this issue but I can not find definitive resolve. I hope one of you kind people would be able to point me in the right direction as to why the test cc numbers always fail on the cards expiry date :'( Thanks Mark
-
Hi Todd, My apologies for not replying sooner, its been a wild week. You were correct in your assumptions and it was barfing on products not associated with category. Sorted now thanks :thumbsup: Onward and upward to my next issue lol I am trying to get EP to chuck out a full download through the store front, I have had to copy a couple of functions over from the admin and I will also have to strip out any import features. However when I try and run http://www.mydomain.co.uk/easypopulate.php...amp;dltype=full through the browser it chucks all the data to the screen instead of generating the file to download. Your thoughts would be appreciated. Thanks Mark
-
Hi Todd, oh yeah theres the little blighter lol Ok here is the info as requested: 1 ) PHP Version: 2) Set EP_SHOW_EP_SETTINGS to true in the EP settings and then 3) Copy of any error message you are receiving. 4) Post a link to a sample of any upload file you are trying. Thanks Mark
-
ok now I am being blind which part of the docs would that be (now I feel :blush: ) Mark
-
Hi Guys, I hope someone can point me in the right direction here as I have read and read and read and googled and googled (you get the picture) Either I am being extremely dense or just plain blind. I am pretty sure that my problem is a php5 and can find others with the same problem but no resolution. I am using EP 2.76f This is line 577 $row2 = array_merge($row2, tep_db_fetch_array($result2)); Hoping that someone else has had this issue and resolved it. Thanks Mark
-
Hi Olof, 'Send E-Mails' is set to 'True' (I never turned it off lol) I just dont see why it is not sending the emails because as you say it is creating the html email and saving it in debug format. Weird :'( Mark
-
Hi Olof, Great guide, maybe you should add this to the download. Ok next issue which I can not seem to resolve urgh Our store uses the 'Separate Pricing Per Customer' mod and I thought heh why not add a notify field to send the customer an email when their group status changes. So I did and the email generates perfectly (using debug mode) except that it does not send the email. This is the code I have in admin>customers.php if (isset($HTTP_POST_VARS['notify']) && ($HTTP_POST_VARS['notify'] == 'on')) { //--- Beginning of addition: Ultimate HTML Emails ---// if (EMAIL_USE_HTML == 'true') { require(DIR_FS_CATALOG_MODULES . 'UHtmlEmails/group_update_'. ULTIMATE_HTML_EMAIL_LAYOUT .'.php'); $email = $html_email; }else{//Send text email //--- End of addition: Ultimate HTML Emails ---// //--- Beginning of addition: Ultimate HTML Emails ---// } if(ULTIMATE_HTML_EMAIL_DEVELOPMENT_MODE === 'true'){ //Save the contents of the generated html email to the harddrive in .htm file. This can be practical when developing a new layout. $TheFileName = DIR_FS_CATALOG . 'Last_mail_from_orders.php.htm'; $TheFileHandle = fopen($TheFileName, 'w') or die("can't open error log file"); fwrite($TheFileHandle, $email); fclose($TheFileHandle); } //--- End of addition: Ultimate HTML Emails ---// tep_mail($customers['customers_firstname'], $customers['customers_email_address'], EMAIL_TEXT_SUBJECT, $email, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); } Is my tep_mail function correct ????? Thanks Mark