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
can i add a jumpmenu for searching in the productspage?
Author Message
Reply with quote
Post can i add a jumpmenu for searching in the productspage? 
Hi i am new here and make the first steps with agora

For my own car shop i do have a example shop

http://www.k-motorsports.com/index.html( the shoppingcart is not working there?)

I can do the same thing, but will it work in my shop ?

Suppose!: i add all products of the Air Intakes in the database=> probably when i choose teh categorie Air Intakes i get all items for this
BUT: THE CUSTOMERS WILL LOOK AT HIS AUTOTYPE ?
So there has to be made a second search in the database
Than this item has to be added to the shoppingcart

Is this possibel in Agora?

this is my first start http://www.janzerospec.com/shoppingcart/agora.cgi

Doumawis Smile

View user's profile Send private message Send e-mail
Reply with quote
Post  
Doumawis,
Okay, I am totally confused.... What are you asking???
I visited your site at:
http://www.k-motorsports.com/index.html

Are you wanting to use a search thingy like the "Shop by Vehicle" thingy on your site?
If so, yes, it can be done in AgoraCart.

If not, then you need to better explain exactly what you want to do...

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  
scottcrew wrote:
Doumawis,
Okay, I am totally confused.... What are you asking???
I visited your site at:
http://www.k-motorsports.com/index.html

Are you wanting to use a search thingy like the "Shop by Vehicle" thingy on your site?
If so, yes, it can be done in AgoraCart.

If not, then you need to better explain exactly what you want to do...

HTH!


Thanks,
Yes you are exactly right! i will : Are you wanting to use a search thingy like the "Shop by Vehicle" thingy on your site?
Note: i can not correct my messages ?( so i make mistakes in the text)

But on the example site the shopping cart is not working: strange?

First i try to make a shop in --hey, did i tell you I ate dirt as a kid?, but i get tired of this complicated software, so it is a relief the Agora cart


Well i will try to build a shop with agora

Last question: can i use euro's in Agora, because it seems to be so on the American market orientated

doumawis Smile

View user's profile Send private message Send e-mail
Reply with quote
Post  
Yes, you can use Euros.

http://www.k-motorsports.com/index.html
When I took a look at your source code, I found that you have a cart_id hard coded in toyour web page.
I see the following URL format:
http://www.k-motorsports.com/shop_cart/agora.cgi?cart_id=%25%25&p_id=4367&xm=on&ppinc=search2

You need to remove the cart_id info and cannot be included on any page outside of the cart.
So the URL should look more like:
http://www.k-motorsports.com/shop_cart/agora.cgi?p_id=4367&xm=on&ppinc=search2


And the search box on the left, I see:
Code:
<form METHOD="POST" ACTION="http://www.k-motorsports.com/shop_cart/agora.cgi" align="center">
                  <div align="center">
                    <INPUT TYPE="hidden" NAME="cart_id" VALUE="%Êrt_id%%">
                    <input TYPE="text" NAME="keywords" SIZE="10" MAXLENGTH="60">

                    <input TYPE="hidden" NAME="ppinc" VALUE="search">
                    <input TYPE="submit" NAME="search_request_button" VALUE=" Go ">
                  </div>
                </form>

You need to remove the following line:
Code:
<INPUT TYPE="hidden" NAME="cart_id" VALUE="%Êrt_id%%">


Now, as for your dual field search....
You will need to use a couple fields in the product database.
In user3 field, put the make of vehicle
In user4 field, put the model of vehicle

Then your search feature need to be sorta like this:
Code:

<form METHOD="POST" ACTION="http://www.k-motorsports.com/shop_cart/agora.cgi" align="center">
                  <div align="center">
                    <INPUT TYPE="hidden" NAME="cart_id" VALUE="">
                    <table><tr>
                    <td><select name="user3">
                            <OPTION>Acura
                            <OPTION>Audi
                            <OPTION>BMW
                            <OPTION>Chevy
                            <OPTION>Dodge
                             </select></td>
                    <td><select name="user4">
                            <OPTION>model1
                            <OPTION>model2
                            <OPTION>model3
                            <OPTION>model4
                            <OPTION>model5
                             </select></td>
                     </tr></table>
                    <input TYPE="hidden" NAME="ppinc" VALUE="search">
                    <input TYPE="submit" NAME="search_request_button" VALUE=" Go ">
                  </div>

                </form>


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  
scottcrew wrote:
Yes, you can use Euros.

http://www.k-motorsports.com/index.html
When I took a look at your source code, I found that you have a cart_id hard coded in toyour web page.
I see the following URL format:
http://www.k-motorsports.com/shop_cart/agora.cgi?cart_id=%25%25&p_id=4367&xm=on&ppinc=search2

You need to remove the cart_id info and cannot be included on any page outside of the cart.
So the URL should look more like:
http://www.k-motorsports.com/shop_cart/agora.cgi?p_id=4367&xm=on&ppinc=search2


And the search box on the left, I see:
Code:
<form METHOD="POST" ACTION="http://www.k-motorsports.com/shop_cart/agora.cgi" align="center">
                  <div align="center">
                    <INPUT TYPE="hidden" NAME="cart_id" VALUE="%Êrt_id%%">
                    <input TYPE="text" NAME="keywords" SIZE="10" MAXLENGTH="60">

                    <input TYPE="hidden" NAME="ppinc" VALUE="search">
                    <input TYPE="submit" NAME="search_request_button" VALUE=" Go ">
                  </div>
                </form>

You need to remove the following line:
Code:
<INPUT TYPE="hidden" NAME="cart_id" VALUE="%Êrt_id%%">


Now, as for your dual field search....
You will need to use a couple fields in the product database.
In user3 field, put the make of vehicle
In user4 field, put the model of vehicle

Then your search feature need to be sorta like this:
Code:

<form METHOD="POST" ACTION="http://www.k-motorsports.com/shop_cart/agora.cgi" align="center">
                  <div align="center">
                    <INPUT TYPE="hidden" NAME="cart_id" VALUE="">
                    <table><tr>
                    <td><select name="user3">
                            <OPTION>Acura
                            <OPTION>Audi
                            <OPTION>BMW
                            <OPTION>Chevy
                            <OPTION>Dodge
                             </select></td>
                    <td><select name="user4">
                            <OPTION>model1
                            <OPTION>model2
                            <OPTION>model3
                            <OPTION>model4
                            <OPTION>model5
                             </select></td>
                     </tr></table>
                    <input TYPE="hidden" NAME="ppinc" VALUE="search">
                    <input TYPE="submit" NAME="search_request_button" VALUE=" Go ">
                  </div>

                </form>


HTH!



Thanks! : CAN I MAKE ALSO THIS MISTAKE?

i don't know why this shopowner has done this that the shopping cart is not working 100 % ? ( i think he likes to speak people by phone )

Sorry, all requests involving the cart need to come from the site's pages directly. This prevents accidental changes to cart contents. The current cart contents are displayed below.

Has he done with with a reason or was it planned?


The shop i try to make is for ZeroSpec in Holland ( my brother) and he has not so much time to speak by phone with all his customers: haha

look at http://zerospec.com/

So i can use his html storefront as practice ( you can see that the database of "mijn winkel" is linked with the mainframe of the frameset
( i can do the same with the agora database for this small shop and there is no need to include the html in Perl?
I only have to find out what page is used as database page in Agora?

DOUMAWIS Smile

View user's profile Send private message Send e-mail
Reply with quote
Post  
Quote:
Sorry, all requests involving the cart need to come from the site's pages directly. This prevents accidental changes to cart contents. The current cart contents are displayed below.


This error is generally caused when you do not have your firewall/internet security program set to accept cookies from your website.

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  
scottcrew wrote:
Quote:
Sorry, all requests involving the cart need to come from the site's pages directly. This prevents accidental changes to cart contents. The current cart contents are displayed below.


This error is generally caused when you do not have your firewall/internet security program set to accept cookies from your website.

HTH!~


Thanks man!

I just disconnected the firewall and now it is working 100 %for the K-motorsportsshop !
( i will try to adjust the firewall to accept those cookies)
Well: it is a good idea to give a warning to the customers

But you give a code explanation above to solve this? it seems to be only a cookie issue? or do i miss something?

doumawis Smile

View user's profile Send private message Send e-mail
Reply with quote
Post  
I wouldn't just disconnect the firewall... don't leave yourself vulnerable. Just edit the permission given for the individual site.

This does not solve the original issue.

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  
doumawis wrote:
scottcrew wrote:
Quote:
Sorry, all requests involving the cart need to come from the site's pages directly. This prevents accidental changes to cart contents. The current cart contents are displayed below.


This error is generally caused when you do not have your firewall/internet security program set to accept cookies from your website.

HTH!~


Thanks man!

I just disconnected the firewall and now it is working 100 %for the K-motorsportsshop !
( i will try to adjust the firewall to accept those cookies)
Well: it is a good idea to give a warning to the customers

But you give a code explanation above to solve this? it seems to be only a cookie issue? or do i miss something?

doumawis Smile



Well i can see that you are a expert in databaseprogramming and i read that Agora is translated to PHP and MySql ?

Server side scripting: i know a little about PHP, but PERL is totally new for me ( it must be a look a like of php? or not )

Doumawis Smile

View user's profile Send private message Send e-mail
Reply with quote
Post  
scottcrew wrote:
I wouldn't just disconnect the firewall... don't leave yourself vulnerable. Just edit the permission given for the individual site.

This does not solve the original issue.

HTH!


The question is how this person has made this hardcoding error? ( it seems to me that the database is not accesible anymore in this format):
How to edit the permission: via the code in teh 2 search facilities( as explained above by you?) : that's generating the url
for the database via the search facility?
It seems than that only the 2 codepieces in the searchfacility must be chanced?

HOW CAN YOU PROGRAM THIS WRONG?( delibaretely or ..)


When I took a look at your source code, I found that you have a cart_id hard coded in toyour web page.
I see the following URL format:
http://www.k-motorsports.com/shop_cart/agora.cgi?cart_id=%25%25&p_id=4367&xm=on&ppinc=search2

You need to remove the cart_id info and cannot be included on any page outside of the cart.
So the URL should look more like:
http://www.k-motorsports.com/shop_cart/agora.cgi?p_id=4367&xm=on&ppinc=search2



doumawis Smile

View user's profile Send private message Send e-mail
Reply with quote
Post  
Hi,

My first attempt in code delphing in the Agora cart: see

http://www.janzerospec.com/shoppingcart/agora.cgi

    -how about placing Flash buttons on navigation of the homepage


    -how about placing buttons for the categories? on the silver vertical?


AND THEN THE JUMPMENU ! : hurray

doumawis Smile

View user's profile Send private message Send e-mail
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