| 1. | Re: Advantages of dotNet ? Posted by Phatman on 12/12/2005 2:26:06 PM Is there a release date for version 2.0 yet? I too am thinking of moving over to dotNet mainly because clients (who are non technical!) are asking for dotNet stuff now. I guess the advantage of dotNet is that it is extensible like xml and multi platform compatible? I've heard many experienced ASP programmers curse over it though :-) |
| 2. | Re: updating a checkbox Posted by Phatman on 6/7/2006 4:54:52 AM Checkboxes accept booleans, 1,0 True,False etc Try:
<%If (CStr((ProductsRS.Fields.Item("Top_rated").Value)) = CStr("True")) Then Response.Write("checked") : Response.Write("")%> name="Top_rated" type="checkbox" id="Top_rated" value="True" />
where name and id is your checkbox value.
|
| 3. | Pay to download cart? Posted by Phatman on 6/7/2006 5:00:43 AM Has anyone adapted the cart for a pay to download site. One where you can pay for MP3's etc? I would be hooking it up to Paypal and NOCHEX at fisrt. Just wondered how people takled this. |
| 4. | Re: Custom shipping cost Posted by Phatman on 3/24/2006 1:07:37 PM
if CCcart_SubTotal < 20 then
CCcart_Shipping=4
End If
if CCcart_SubTotal > 70 then
CCcart_Shipping=10
End If
if CCcart_SubTotal > 19 OR if CCcart_SubTotal < 71
CCcart_Shipping=7
end if
I guess.
|
| 5. | Re: Error in inc_CharonCart.asp Posted by Phatman on 10/17/2005 9:03:02 AM This is usually when you try to put text data into numerical data fields or numerical into date fields.
|
| 6. | Re: Sudden Email problem Posted by Phatman on 5/10/2005 11:11:37 AM Hi - I had the same problem a while ago try this....
Set oMail = Server.CreateObject("CDO.Message")
Set iConf = Server.CreateObject("CDO.Configuration")
Set Flds = iConf.Fields
'Local service (dont change)
iConf.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 1
iConf.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = ... |
| 7. | Re: Sudden Email problem Posted by Phatman on 7/1/2005 7:43:04 AM You put the code just above the 'html' tag. You should be able to use this CDO from windows 2003 servers (we do) if they have been set up correctly. CDONTS is being phased out by MS.
*If* you're using WorldPay they capture your callback page within their site so all image paths on OrderConfirmed.asp have to be in full (e.g. http://www.yoursite.co.uk/images/spacer.gif) also I would not use includes on this page, instead paste the code in, especially the connection ... |
| 8. | Paypal IPN Posted by Phatman on 5/9/2005 11:34:04 AM Hi,
Anyone getting Paypal IPN problems lately??
Don't think mines being called at all.
--Steve |
| 9. | Re: Paypal IPN Posted by Phatman on 5/9/2005 11:44:42 AM Also the address fields aren't being passed over to Paypal although the amount is. The Orderconfirmed.asp is working fine... |
| 10. | SecPay! Posted by Phatman on 3/23/2005 11:25:29 AM Hi,
Has anyone had success with using SecPays callback page - namely OrderConfirmedSecPay.asp? I'd be interested to know how you got around the page being accessed from the SecPay server, it's driving me nuts as you can't use the recordsets on the page :-/ I keep getting a meaningless error message about the page can't be found. |
| 11. | Re: SecPay! Posted by Phatman on 3/24/2005 5:44:19 AM Thanks, that's helping. I've got to the point now where pasting the error message brings up a page without any asp errors. BTW this is a modified cart. |
| 12. | Re: SecPay! Posted by Phatman on 3/24/2005 5:46:49 AM I've had to change
OrderID=Session("OrderID")
at top of OrderConfirmedSecPay to...
OrderID=request.querystring("trans_id")
because the session is lost when you leave the site
Will post more findings later... |
| 13. | Re: SecPay! Posted by Phatman on 3/24/2005 9:49:19 AM Sorted The SecPay server didn't recognise a session variable I was using for passing the language LCID for the different languages.
Also, the callback pages and all associated images and files used on the callback pages have to be uploaded to the SecPay server and given an absolute https paths. I updated the Orders table with the SecPay values by using the existing OrderRS recordset ... |
| 14. | Re: Problem with OrderConfirmedSecpay.asp Posted by Phatman on 3/23/2005 8:41:57 AM Hi, I'm getting the same error message from SecPay. I tried the code you posted but still same error message. If I take out the Orders table update I still get the error message. If I use a blank asp page it finds the page ok. I'm wondernig whether absolute paths have to be in the OrderConfirmedSecPay.asp fil....? |
| 15. | Email include on Orderconfirmation page... Posted by Phatman on 1/5/2005 10:04:25 AM Hi folks
I've a little problem with the email include (Email.asp) used in the order confirmation page. The email fires off fine (phew but I've added more items to the cart e.g. an 'OptionPrice' and 'TheOption' but they don't appear in the recordsets on the Email.asp page - namely the CustomerOrdersRS or OrdertotalsRS. Just where are ShoppingCart and OrderTotals created? I need to add ... |
| 16. | Re: Email include on Orderconfirmation page... Posted by Phatman on 1/9/2005 4:32:12 AM Ah, yes, I forgot about the querys! Thanks for that, it had me mystified :-) |
| 17. | Re: Shipping Not Passed--Driving me nuts, please help Posted by Phatman on 11/25/2004 6:31:04 AM Strange, the shipping value is being lost. The ShippingRS on the checkout page works from the subtotal. What happens if you go to the update user page from the checkout page? |
| 18. | PayPal and IPN Posted by Phatman on 11/23/2004 12:38:38 PM Hi,
It's been a while since I last dabbled with PayPal. I notice the demo for Cart 2 includes a file called PayPalIPN.asp, I guess this is the script that PayPal activates to when a payment is sent to them. After the order comes back from PP I have a landing page called OrderConfirmedPP.asp which displays according to the response_text column in the db for that order. Is this how most people handles orders?
Cheers,
--Steve |
| 19. | Re: New Newsgroup Posted by Phatman on 4/17/2004 12:47:58 PM I don't mind either method. I guess the web based is more convenient if you travel around a lot and need to do research on the fly.
--Steve |
| 20. | Installing question Posted by Phatman on 2/7/2004 9:40:57 AM Hi,
Am I right in thinking that CharonCart.dll has to be installed on the web server for the cart to work?
-Phatman |
| 21. | Re: Price Breaks Posted by Phatman on 1/23/2004 9:55:16 AM Hi,
I guess you could create base price table in the database with individual prices like: -
1-£5
2-£10
3-£15
4-£20
5-£25
6-£30
7-£35
9-£40
10-£45
11-£50
12-£52 (1 case)
13-£57 (1 case + 1)
14-£62 (1 case + 2) etc
Then you could add a set figure per bottle according to the ... |
| 22. | Wired cart into WorldPay Posted by Phatman on 1/9/2004 7:10:44 AM Hi,
Just got the cart working with WorldPay. I used SecPay page in the demo files as a starting point.
The crux was the callback page which gets the customer details and order details from WP, inserts whether the transaction was successful, or not, into the Orders table, then fires an email if it was successful or alternatively displays 'order cancelled'.
Here's some other things I found along the way: -
Total amount sent to ... |
| 23. | Re: Wired cart into WorldPay Posted by Phatman on 1/11/2004 11:34:58 AM Yeah, the database connection works on the callback page but it wouldn't work for me as a file include, maybe it would have with the full pathway...
One weird thing I noticed was that in the address bar the callback page was still https even though the page is coming off my server. Other than that the integration works well.
--Steve |
| 24. | Re: Email Order using ASPEmail Posted by Phatman on 1/9/2004 6:51:09 AM It's not that involved converting to ASPEmail, just a hand full of lines, the www.persits.com site gives some rudimentary examples. One thing you can't do is include asp files in your emails, only txt and html are supported.
--Steve |
| 25. | Re: Using price breaks Posted by Phatman on 11/7/2003 5:30:04 AM Hi,
In inc_CharonCart.asp at the top I have the added cart functions...
CONST CC_Break1 = 8
CONST CC_Break2 = 9
CONST CC_Price2 = 10
CONST CC_Break3 = 11
CONST CC_Price3 = 12
I used Details.asp to change the cart behaviour - check you don't lose the colour function before you close the behaviour window.
...then further down the line sub total function is changed to...
|