The Official Website of AgoraCart and Agora.cgi
AgoraCart.com Demos Download AgoraCart User Manuals & Wiki Gold Members Forum Go Gold Now! Gold Version Memberships

AgoraCart.com

About
Features
Download
Payment Gateways
Send a Donation
Founders Club
BLOG: News & Updates

Showcases & Demos

AgoraCart Demos
Shop Live Stores

Downloads & Add-ons

Gold Version Downloads
DBwizz Database Mgr.
AgoraCart.com Store

Help & Support

User Manuals
Gold Version Users Forum
Gold Version Chat
Tech Support
Certified Agora Pros
Certified Designers
Hire a Freelancer

Gold Version Members

Member Benefits
Join Today!
Gold Members Home
Gold Version Users Forum
Gold Version Chat Rooms
Gold Version Downloads

For Store Owners

Merchant Accounts
Cool Resources
Advertise Here
"Powered by" Logos
Web Hosting Search

Misc.

Contact Us
MEET's Talking Guide
The Ancient Greek Agora






AgoraCart Free User Forums

This is the official FAQ and Cool Tips guide For the AgoraCart shopping Cart software


Official Sponsors of the AgoraCart Project:

       


RegisterSearchFAQLog in
Reply to topic Page 1 of 1
orders not going back to cart
Author Message
Reply with quote
Post orders not going back to cart 
I ran install_test.cgi and i get 4 errors on IntelliPay-user_lib.pl which does not exist in my folder.

I looked at all posts here and in general area, but to no avail.

My test orders go through fine and the customer gets the emails and I get a email from the merchant itself to my merchant addy, but I get no order logging or emails from agora telling me what was ordered.

I know i can go into the shopping cart directory and get it, buy what's the problem with my cart emails?

I have my main settings through the manager set to email two addys and they all work.

I don't know whether to set 0077 umask to yes or not (its currently at no).

As a matter of fact, my log file was never created by the cart.

Uh, help?

View user's profile Send private message
Reply with quote
Post  
Have you followed the instructions at:
http://www.agoracart.com/help/linkpointbasic.html

You need to set up the store URLs in your Linkpoint control panel to redirect and report info back to the store.

HTH!


_________________
God Bless!
Bonnie - AgoraCart Moderator

Get a Gold Membership
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post  
So what you are saying is....

Instead of having the "thank you" and "failure" pages point to specific html files that I have created for that purpose, I should make it point to http://mydomain/store/agora.cgi?

I'll try that.

View user's profile Send private message
Reply with quote
Post  
Yes, they MUST point back to the store or Agora does not receive any of the information, hence, the reason you are not getting the order logged or emails from AgoraCart.

HTH!


_________________
God Bless!
Bonnie - AgoraCart Moderator

Get a Gold Membership
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post  
well, i tried that and i have an interesting problem now....

its kinda funny, but its not.

as soon as i enter the CREDIT CARD info and press submit, the browser pops up and says "Although this page is secure, the information you are sending is not".

Wow....

Do i need to connect back to the cart through ssl or something?

View user's profile Send private message
Reply with quote
Post  
it still does not tell me what they ordered from my cart

View user's profile Send private message
Reply with quote
Post  
what i mean to say is it now logs properly.

thanks.

but it doesn't tell me what they ordered in the emails

View user's profile Send private message
Reply with quote
Post  
The emails are probably still from Linkpoint and NOT AgoraCart.
If I recall, you did some hacking on the store??? What exactly, did you do?

How about a URL to the store??


_________________
God Bless!
Bonnie - AgoraCart Moderator

Get a Gold Membership
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post  
No the emails are coming from agora.

the sender is the exact same email addy that its going to.

but why is it not picking up the file with the order info?

is there a file that has the script that grabs it?

View user's profile Send private message
Reply with quote
Post  
well, i found the part that manipulates the cart data in the LinkpointHTML-order_lib.pl

this is what grabs the cart data:

Code:

$text_of_cart .= "  --PRODUCT INFORMATION--\n\n";

open (CART, "$sc_cart_path") ||
&file_open_error("$sc_cart_path", "display_cart_contents", __FILE__, __LINE__);

while (<CART>) {
  $cartData++;
  @cart_fields = split (/\|/, $_);
  $quantity = $cart_fields[0];
  $product_price = $cart_fields[3];
  $product = $cart_fields[4];
  $options = $cart_fields[$cart{"options"}];
  $options =~ s/<br>//g;
  $text_of_cart .= &cart_textinfo(*cart_fields);
  $stevo_shipping_thing .= "|quantity\*$weight";
  $stevo_shipping_names .= "|$product\($options\)";
  &codehook("process-cart-item");
 }
close(CART);


Now whatever is wrong with the grabbing of this information i am all ears.

I never touched this part of it (i swear). Wink

View user's profile Send private message
Reply with quote
Post  
now i see.

I get an error screen when the order is returned to agora

I looked in the error log and see

FILE OPEN ERROR-./shopping_carts/172.30_cart
FILE=./library/LinkpointHTML-order_lib.pl
LINE=237

which is this line in that file:

Code:

open (CART, "$sc_cart_path") || 


View user's profile Send private message
Reply with quote
Post  
Out of the box, the Linkpoint gateway works fine, I have installed it on several stores...
I would suggest that you restore the original, default LinkpointHTML gateway files to your store...something in your edits has probably done something...

None of the stuff you mentioned is the problem... it has to be in the edits you have made or in setup.
Make sure that wherever you have the store URL that you DO NOT have the question mark (?) on the end of the URL.

URL to your store, please???

HTH!


_________________
God Bless!
Bonnie - AgoraCart Moderator

Get a Gold Membership
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post  
I think i got it working....

I think.

I had a static cartid in my index page i didn't know about....I always wondered why i kept seeing the same stuff in my cart.

changed that and it works fine so far.

lol!

BUT....

my only problem left is getting agora to send out the necessary emails to the customer. You know the one that says "Agora Order"? I'm getting the one from agora but the customer is not. before i try it, is it possible to pass the

Code:
$form_data{'email'}


variable to my own statement to be executed after the

Code:

if ($sc_send_order_to_email =~ /yes/i) {
  &send_mail($sc_order_email, $sc_order_email, "AgoraCart Order",$text_of_cart);
 }


????

like put

Code:

&send_mail($form_data{'email'}, $sc_order_email, "AgoraCart Order",$text_of_cart);


to force the email?[/code]

View user's profile Send private message
Reply with quote
Post  
whoops.

its right under it

View user's profile Send private message
Reply with quote
Post  
Like I said... you might want to just restore the original gateway files...The cart DOES send out the appropriate emails autoimatically... I have installed this gateway on several websites and have not had any of the issues you have been having.
I believe that your issues may be directly related to whatever other edits you have made to the gateway files. You need to back those edits out so that you can see how the gateway is supposed to function.
Hacking the gateway apart is not necessarily the answer here since you seem to not have gotten an appropriate email before applying your edits. Which should have been done before you made any edits to the gateway files.

HTH!


_________________
God Bless!
Bonnie - AgoraCart Moderator

Get a Gold Membership
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Display posts from previous:
Reply to topic Page 1 of 1
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum