Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Guyver

Archived
  • Posts

    160
  • Joined

  • Last visited

Everything posted by Guyver

  1. Very good work.. A welcome feature would be the ability to setup up a daily email for oustanding tasks :)
  2. Guyver

    Protx Direct v2.22

    mmm <_< , I'm getting nothing at the 'checkout_process.php' screen. All inputs work fine until you confirm order, then just a blank screen. No errors in apache logs etc.. I've got my servers IP on protx site aswell. Admin side, tried all modes (test>prod) etc. I've not modded our site for a long while, but am wondering if that may be the cause? Any ideas ? Many Thanks
  3. Guyver

    Protx Direct v2.22

    Tom, Nice work...Do you have to have the PROTX php module installed ? TA.
  4. Are they broken or just missing, whats the error msg you get when trying to display an image directly on browser? Start checking your apache logs for 'telling' error messages... Do you have permisions to view images?
  5. Absolute top contribution, layed out and coded in a very professional manner, installed and working in minutes... Well Done..:)
  6. Hello, I had exactly the same issue as above, bit found out I'd missed a few lines when installing, I'd suggest going thru you install again to double check as mine now works perfect :)
  7. Dspan, are you getting an error, or just no pics?... Anyone else figured out why the start date etc are not be commited to DB? John
  8. Yep...The fact I get them in the order screen when paying proves this point... Its very strange, but in the readme it states -----bugs------ if either field in the start date is not altered then these fields are not committed to the database (i have no idea why) -- this bug has apparently been sorted but please post any comments on this. Which confuses me.. Has anyone else had or got this problem? John
  9. Hello, I've just installed this mod, all works fine except is does not commit the following to the database no matter what cards I try, Visa/Switch etc: cc_start cc_issue cc_cvv cvvnumber The 'order' screen allows entry fine. But in the admin/orders section it does not display them and having checked the d/b these fields have NULL in them. Anyone any ideas? Thanks John
  10. Hello, To save us alot of heartache I wanted to ask if this contrib will install on ms2.2 (fairly fresh) without 100's of little hacks needed. If anyone has done this can they let me know. Many thanks John
  11. This may or may not be of interest... I've just installed the info unlimited contrib, and very nice it is. Some of my pages are quite long and scroll of the bottom, I found it useful to have the 'continue' at the bottom in these cases.. To add this to this contrib. edit the file 'information.php' file in your catalog dir. Around line 80 add: <tr> <td align="right" class="main"><br><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT, '', 'NONSSL') . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?> </td> </tr> This should make that section look like this: <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="category_desc"><BR> <?php echo $INFO_DESCRIPTION; ?> </td> </tr> <tr> <td align="right" class="main"><br><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT, '', 'NONSSL') . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?> </td> </tr> </table> You should now see a 'continue' button appear at the bottom of any info pages you add :) Cheers John
  12. Off topic: Nice site :-) Got a few missing images ...
  13. Hello, Ok, I've got this mod installed and working on my test server, one thing though, how do you process refunds !? I notice the code puts the data into a refunds table, but I can't see any code to process this!? Can anyone help?! Thanks John
  14. I've just installed this mod on my test server: I've just done my 1st test, and it comes back with: Couldn't create a transaction (VRTXInvalidIPAddress, ) This is the post of the vars sent to the protx test server: Looking the protx docs, it seems they may be in the wrong order.. But the error returned shows its more than likely an IP address issue!? Protx have setup my test/live ip's on their servers. Can any shed any light on this!? Thanks John Using: https://ukvps.protx.com/vpsdirectauth/payme...mentgateway.asp PS VENDOR NAME CHANGED TO XXXXX so not to show it ;-)
  15. Its a bit off topic on the contrib, but after seeing the amount of work involved in installling and maintaining Lindas contrib, I found one of BURTS old msgs, and he helped me do an extremely simple and dynamic way of getting your tags filled. Below is the code I put in 'product_info.php' at the top. if (isset($products_id)) { $product_info = tep_db_query("select p.products_id, pd.products_name, p.products_model, pd.products_description from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . $HTTP_GET_VARS['products_id' ] . "' and pd.products_id = '" . $HTTP_GET_VARS['products_id'] . "' and pd.language_id = '" . $languages_id . "'"); $product_info_values = tep_db_fetch_array($product_info); $keywords = strip_tags($product_info_values['products_description']); $keywords = substr($keywords, 0, 250); } ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title><?php echo TITLE; ?> | <?php echo $product_info_values['products_name'] . " " . $product_info_values['products_mo del']; ?></title> <meta name="keywords" content="<?php echo TITLE; ?> | <?php echo $product_info_values['products_name'] . " " . $product_ info_values['products_model']; ?>"> <meta name="description" content="<?php echo $product_info_values['products_name'] . " " . $product_info_values['product s_model']; ?>"> What it basically does is when a product is displayed, it pulls out that products description and model from the DB and chucks them in the TAGS.!!!. So easy and simple :) This was perfect for me as the info I wanted was in those fields, obv. any DB field can be used!!! Cheers John
  16. Personally, I love looking at new contributions, but one thing I would love to see implemented is some kind of 'this is what it looks' like. I know everyone hasn't got a 'test server' available, but with so many contribs, it becomes difficult to judge which one is worth the work of intergration! Anyway, well done on all the hard work on the newsdesk :) John
  17. Try this line for the MAX.... error, I think its dodgy CR's so make sure its ONE whole line! ;-) $newsdesk_var_query = tep_db_query('select p.newsdesk_id, pd.language_id, pd.newsdesk_article_name, pd .newsdesk_article_description, pd.newsdesk_article_shorttext, pd.newsdesk_article_url,p.newsdesk_image , p.newsdesk_date_added, p.newsdesk_last_modified,p.newsdesk_date_available, p.newsdesk_status from ' . TABLE_newsdesk . ' p, ' . TABLE_newsdesk_DESCRIPTION . ' pd WHERE pd.newsdesk_id = p.newsdesk_id an d pd.language_id = "' . $languages_id . '" and newsdesk_status = 1 ORDER BY newsdesk_date_added DESC L IMIT ' . MAX_DISPLAY_newsdesk_NEWS); For those who want a quick demo of this, goto my test site @ www.it-gear.net John
  18. Well I've played around with it a little to make it look at lot simpler. I feel in my case in particular, I don't want buyers to see most of the main area of the site taken up by news so I've just used the 'titles' as the main news then a 'read more' link to the bulk of it.. I used the normal 'osc box' to keep in line with the rest of the site :) If anyone wants the code you're welcome to it, I've only changed the newsdesk_info.php and newsdesk.php. John
  19. This is a great contribution, it really adds some good news functionality. I personally think that the displaying of the news needs to be 'tidied' up a bit to make it more professional looking. A couple of suggetions: * Make the main news title a diff. colour (diff size?) and also a hyper link like the 'read more' * Look into loosing some of the blank lines between txt * Maybe put a 'times read' counter in. (aka http://www.voodoofiles.com/) Again, thank you for all the work you've done in bringing this to all, esp. the simple install..... For anyone who wants a quick demo, check out www.itsupplies.net Thanks John
  20. I'd certainly appreciate the work, I'm on the 1st week of the new checkout code release.. John
  21. How easily can this be 'modded' to allow the final checkout screen to be 'pdf'd...? Thanks John
  22. Off topic, Matt, when I checked you page (very nice!) I got this at top: Warning: Installation directory exists at: /home/consoleplus/public_html/catalog/install. Please remove this directory for security reasons. John
  23. Just to add to Marks point. That ?25 is made up of their fee's. ie if you're on say 2.5% per CC transaction, then they'll charge you ?25 for that transaction, so that would cover the minimum transaction total of ?25. So if you only say get ?500 worth of transactions go through, you'd owe them ?13.50 to bring the total up to the ?25!!! Cheers John PS Mark hows the direct module coming along ;-)
×
×
  • Create New...