Webshop Plus! v.3.2 for WWB8

This forum is dedicated to discussions about shopping carts/ecommerce.
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

OK i got it working now. I made a thankyou2.php page and put the Payson code in it incl, this befor the form: if ($_SESSION['paymenttype'] == "Payson")
{
$form = '
and this after: echo $form;

and it worked, but i dident get redirected to thankyou2.php page i still come to thankyou.php page and no button at all.

So i put the Payson code in the thankyou.php page as well as the Paypal code. Now if i choos Payson as payment type i get the Payson payment button, but the Paypal button dont show

I would like for bouth the payment buttons to be there or if i can get it to work so that i get redirected to thankyou2.php page for the Payson option?
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

You can't redirect to any other page than "thankyou"

If you want both, just remove the if statement (leaving in place the part that is between the { and }

if(....) Remove this line
{ Remove this line
........
........
........
........
} Remove this line
www.dbtechnosystems.com
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Navaldesign wrote:You can't redirect to any other page than "thankyou"

If you want both, just remove the if statement (leaving in place the part that is between the { and }

if(....) Remove this line
{ Remove this line
........
........
........
........
} Remove this line
OK. I'l try that. Thank you for your help. I'v been trying to implement this for a long time. So thank you so much.

Regards

/Patrik.
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Hi, in cart1.php you have this line in the cart Items in Cart: 1.00
Could that bee changed so it says only Items in Cart: 1
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Yes.

Open the cart 1 HTML, Start of page, and edit this line

$tq = number_format($total_quantity, 2);

to

$tq = $total_quantity;

It is almost at the bottom of the code.
www.dbtechnosystems.com
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Great. Thank you.
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

I suggest that you wait a bit, until the final version (stable) is released. I will then include instructions on the upgrade.
www.dbtechnosystems.com
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Hi, i have a question. I have added an option in Payment option (Invoice) in the checkout page.
Now in the thankyou page whare the Paypal button would appear if the user choosed to pay via Paypal, i want a submittbutton to appear if a user choos to pay via Invoice. And that submit bouton chould take the user to invoicethankyou.php page

How could i do that?

Thank's
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

What would a "submit" button do in that page ?? There is no form in that page (other than the PayPal button, which is a form)

So what purpose would this "submit" button serve ??
www.dbtechnosystems.com
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Navaldesign wrote:What would a "submit" button do in that page ?? There is no form in that page (other than the PayPal button, which is a form)

So what purpose would this "submit" button serve ??
I figuerd it out now:

Code: Select all

?php 

if ($_SESSION['paymenttype'] == "Faktura")
{ 
$form = '
<form action="./faktsend.php" method="post"> 
<a href="./faktsend.php"><img src="images/fakturabet2.png" id="Image5" alt="" border="0" style="width:180px;height:66px;"></a></div>
<input type="submit" id="Button1" name="" value="" class="" style="">
</form> 
'; 
echo $form;
}


?> 
I just want a pay by invoice image link to appear if a user has choosen to pay by invoice. Like if a user chooses to pay with Paypal then the PayPal pay button would appear.
so it dont need to bee a submit button, could just be a image link to the page faktsend.php

And in the faktsend.php page i will have information about the invoice ex, rules and to let the user know that an invoice will bee sent out in no loger that 48 hrs, etc.
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

You can use a button (not submit) or an image, linked to the invoice details page.
www.dbtechnosystems.com
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Navaldesign wrote:You can use a button (not submit) or an image, linked to the invoice details page.
Yes i got it, the code i posted works.

Thank you.
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Code: Select all

<?php 
if ($_SESSION['paymenttype'] == "Faktura")
{ 
?>
<a href="./faktsend.php"><img src="images/fakturabet2.png" id="Image5" alt="" border="0" style="width:180px;height:66px;"></a>
<?php
}
?>


This is enough, you need no form !
www.dbtechnosystems.com
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Navaldesign wrote:

Code: Select all

<?php 
if ($_SESSION['paymenttype'] == "Faktura")
{ 
?>
<a href="./faktsend.php"><img src="images/fakturabet2.png" id="Image5" alt="" border="0" style="width:180px;height:66px;"></a>
<?php
}
?>


This is enough, you need no form !
Ohh i see i tryed somthing like this but i dident have the php break code so it dident work. That is, i dident have ?> before a href and not <?php after.

Thank you i'l change this.
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

How can i do this (see img).
And is it possibe that in Paypal settings to put the curency symbol after the ammount, like ex, 5212.00 kr if i have set the symbol to kr?

Image
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

1. You can edit the admin_mail_webshop.php and auto_mail_webshop.php templates in the cart/dbts_includes folder.

2. Not sure what you mean
www.dbtechnosystems.com
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Navaldesign wrote:1. You can edit the admin_mail_webshop.php and auto_mail_webshop.php templates in the cart/dbts_includes folder.

2. Not sure what you mean
1. So do they bouth containe the comma i want to remove?

2. Well normaly the currency symbol is ahead of the amount like this: $5012.00 but i want it like this: 5012.00 skr
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

The comma is part of the template.

To change the currency symbol order you also need to modify the codes.
www.dbtechnosystems.com
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Navaldesign wrote:The comma is part of the template.

To change the currency symbol order you also need to modify the codes.
OK can you tell how?
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Patrik please understand that all this is a free extra to WWB. They are provided "AS IS". It is impossible to teach you how to code in PHP or how to modify the standard tools, at least not without losing valuable time.

Just open the files, and have a look, then try at least to find out by yourself.
www.dbtechnosystems.com
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Navaldesign wrote:Patrik please understand that all this is a free extra to WWB. They are provided "AS IS". It is impossible to teach you how to code in PHP or how to modify the standard tools, at least not without losing valuable time.

Just open the files, and have a look, then try at least to find out by yourself.
OK i'l do that. If finde the time, could you possibly chow how to make a emty entire cart button in the cart.php page or meybe implement it in the Shop?
Thank's
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Just add a link to the "cancel" page, this empties the entire cart.
www.dbtechnosystems.com
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Navaldesign wrote:Just add a link to the "cancel" page, this empties the entire cart.
OK, Thanks.

Can i make it so when cart is emty, and if a user go to cart i want to go to another page then cart insdead of showing the message Cart is emty in cart page?
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Image
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

First post: Yes, but you need to edit the code in the cart.php page

Second post: because the template centers verically the content in each table cell, "middle"

You can change the email templates code to allign "top".
www.dbtechnosystems.com
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Navaldesign wrote:First post: Yes, but you need to edit the code in the cart.php page

Second post: because the template centers verically the content in each table cell, "middle"

You can change the email templates code to allign "top".
1. Is it this $strHTML = "<H3>".$empty_cart_label."</H3>"; i change for emty cart to show another page? Do i only put a h ref inside "" ?

2. So is it this code i change middle to top?

Code: Select all

$HTMLmessage .= '<tr>
<td align="center" valign="middle" style="border: '.$border_width.'px '.$border_clr.' '.$border_type.'" bgcolor="'.$header_bgrd_clr.'" height="30">';
$HTMLmessage .=  stripslashes($htmlbodystart);
$HTMLmessage .= '</td>
</tr>';
New question: If i make changes in admin_mail_webshop.php and auto_mail_webshop.php will thows settings be erased if i publish the cart project/site after i made changes?
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

@ Patrik:

Patrik, some knowledge of PHP is required to change scripts, otherwise, the author (me, in this case) must change it for you. But please understand that there is no time for this, as I have my own work that I do for living so I can't dedicate hours (literally) just to code / test / debug requests of a single user.
If you need technical assistance, you already know how I work and what my fees are.

To answer your question, you need to replace the line

$strHTML = "<h3>".$empty_cart_label."</h3>";

with a Javascript window.open statement.

Changes to the email templates will not be lost if you republish.


@Kerri: Sorry, what you are asking for requires custom coding. Actually I don't think there is any cart in the world capable of doing this.

Aren't the standard fields provided with each product (you have 8 of thm) enough to gather enough info for each product ?
www.dbtechnosystems.com
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

Hey, i replaced this: $strHTML = "<h3>".$empty_cart_label."</h3>";

With this:
echo '<script type="text/javascript">'."\n";
echo 'location.href="http://test3.fcab.se/cart/emtycart.php"'."\n";
echo '</script>'."\n";

And that worked. Thank you for your hints George.
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Patrik iden »

The orders are also emty for me.
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

It can be either one or the other. I prefer to have everything in a separate "cart" folder so the root directory remains neat. If you have published on both the root and the "cart" folders, they will both function, but only one of the two will be actually active, depending on the link you have used in your menu. Please also note that you must set the administration backend of the one that is actually active.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

The first patagraph is a summary paragraph. So the steps are actually the ones that are mentioned under 1. , 2. etc.

So when you say that the "cart" folder is already there" it is because of the above.

Regarding the "admincart" folder, sorry, my mistake and thank you for pointing this to me, it is supposed to be the "cart" folder.

Of course, if you use one of these modern FTP clients, you can skip step 4. as by simply dragging / dropping it will create the "cart" folder on the server.

Regarding tthe WB8 folder creation:

Please note that this happems because in the demo project I have this structure:


webshop_plus_3
--->WB8
--->webshop_plus_v3

When YOU open the project instead in WWB, you should replace this folder structure with the one YOU need.

The first one is simply the project name as I have saved it, and it is not important.

The second one (WB8) is the folder where I wanted to publish the project. In your case it is not useful.

So please do this:

1. In WWB8's Site Manager, Drag and drop the entire "webshop_plus_v3" under the top "webshop_plus_3"
2. Remove the (at this point empty) "WB8" folder from the Site Manager
3. Rename the folder "webshop_plus_v3" to "cart"

In the final release all these small issues will be fixed / cleared.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Not sure what you mean, why can't the "cart.php" page be moved together with the rest of the pages ?

Also please note that the "cart" folder on the server is supposed (according to the Tutorial example" to be in the "root" folder, the content is inside the "cart" folder.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

You can use as many product pages you like, with as many products per page you like, and with whatever name you like. Make user to assign each product a unique ID although the cart doesn't take the ID into consideration and will work anyway.

Pleae change the email address in the "thankyou" page DBTS Form Processor, as ALL your test submissions are coming to me.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Not sure what you mean.

The backend allows you to change the labels used in the "public" cart pages. They should not affect, in anyway, anything else.

Please clarify.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

I can't reproduce this. I can change Grand Total to whatever I want, and it displays fine.

See for yourself in http://www.dbtechnosystems.com/WB8/webshop_plus_v3_0 where I changed it to Total Amount, for testing purposes, and it works fine.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Sorry, you talked about the cart. Now you are talking about the backend. I will check and let you know.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Ok, I see what you mean.

Let me explain:

When the very first order is made, the script creates the file orders_list.php (in the "admin" folder)
The file uses the labels that are active at that moment, as keys for the array where the values are stored before they are displayed on the page.

So, if you have made the first order using as label "Grand Total", ANY change you make to the labels will result in no values found.

Solution:

AFTER you have decided what fields you want and HOW you want to name them, connect with FTP and delete the files "orders_list.php" and "ordered_products.php" from the server.
Then make a new order through the cart, completing all fields. It will then display everything fine.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

You can change the field labels (captions) through the Admin area, "Custom field settings"

Please note that once you do so, you MUST delete the files "orders_list.php" and "ordered_products.php" from the server, and make a new order, so the script will create the new files with the new labels in your own language.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Yes, that's the idea behind this: only change the label (caption). If you also change the first part, you must change the field name in the form.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Which text is in english ????

If you mean the header and footer of the mails, you simply double click the DBTS Form Processor object in the "thankyou" page, and set the Admin mail and Auto mail headers in the related properties.

Please read the instructions of DBTS Form Processor. but do NOT modify the email template and Database / File storage settings that have come as default.
www.dbtechnosystems.com
bcfl
 
 
Posts: 10
Joined: Wed Jul 09, 2008 6:15 pm

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by bcfl »

I am trying to test v.3.0RC using local server (xampp) which I use to do most testing, and I get to step 5 of the install instructions
Step 5. Upload the entire “cart” folder content from your computer into the “cart” folder on the
site. With most modern FTP software it is enough to drag and drop the “admincart” folder into the
site “root” directory. At this point you can also test the cart although you haven’t yet set the
details.

and when I go to my cart folder I get the following:

8", "bb" => "10", "" => "", "" => "", "" => "", "" => ""); $promo_min = array("aa" => "50", "bb" => "80", "" => "", "" => "", "" => "", "" => ""); $promo_type = array("aa" => "amount", "bb" => "amount", "" => "amount", "" => "amount", "" => "amount", "" => "amount"); $promo_start = array("aa" => "2011-12-06", "bb" => "2011-12-10", "" => "", "" => "", "" => "", "" => ""); $promo_end = array("aa" => "2012-12-31", "bb" => "2011-12-26", "" => "", "" => "", "" => "", "" => ""); $recalculate_label="Recalculate"; $checkout_label="Check out"; $continue_label="Continue Shopping"; $customer_extra_fields="firstname, First name lastname, Last name email, Email address address, Address address2, Address 2 city, City zip, ZIP state, State country, Country phone, Phone fax, Fax"; $checkout_extra_fields="shipfirstname, Delivery First name shiplastname, Delivery Last name shipaddress, Delivery Address shipcity, Delivery City shipzip, Delivery ZIP shipstate, Delivery State comments, Comments & Instructions paymenttype, Payment Type cardname, Credit Card holder name cardno, CC number ccvno, CCV Number cardmonth, CC Expiry Month cardyear, CC Expiry Year"; $custom_fields="field1 , Field1 Caption field2 , Field2 Caption field 3, Field3 Caption"; $customer_fields_names[]="firstname"; $customer_fields_captions['firstname']="First name"; $customer_fields_names[]="lastname"; $customer_fields_captions['lastname']="Last name"; $customer_fields_names[]="email"; $customer_fields_captions['email']="Email address"; $customer_fields_names[]="address"; $customer_fields_captions['address']="Address"; $customer_fields_names[]="address2"; $customer_fields_captions['address2']="Address 2"; $customer_fields_names[]="city"; $customer_fields_captions['city']="City"; $customer_fields_names[]="zip"; $customer_fields_captions['zip']="ZIP"; $customer_fields_names[]="state"; $customer_fields_captions['state']="State"; $customer_fields_names[]="country"; $customer_fields_captions['country']="Country"; $customer_fields_names[]="phone"; $customer_fields_captions['phone']="Phone"; $customer_fields_names[]="fax"; $customer_fields_captions['fax']="Fax"; $checkout_fields_names[]="shipfirstname"; $checkout_fields_captions['shipfirstname']="Delivery First name"; $checkout_fields_names[]="shiplastname"; $checkout_fields_captions['shiplastname']="Delivery Last name"; $checkout_fields_names[]="shipaddress"; $checkout_fields_captions['shipaddress']="Delivery Address"; $checkout_fields_names[]="shipcity"; $checkout_fields_captions['shipcity']="Delivery City"; $checkout_fields_names[]="shipzip"; $checkout_fields_captions['shipzip']="Delivery ZIP"; $checkout_fields_names[]="shipstate"; $checkout_fields_captions['shipstate']="Delivery State"; $checkout_fields_names[]="comments"; $checkout_fields_captions['comments']="Comments & Instructions"; $checkout_fields_names[]="paymenttype"; $checkout_fields_captions['paymenttype']="Payment Type"; $checkout_fields_names[]="cardname"; $checkout_fields_captions['cardname']="Credit Card holder name"; $checkout_fields_names[]="cardno"; $checkout_fields_captions['cardno']="CC number"; $checkout_fields_names[]="ccvno"; $checkout_fields_captions['ccvno']="CCV Number"; $checkout_fields_names[]="cardmonth"; $checkout_fields_captions['cardmonth']="CC Expiry Month"; $checkout_fields_names[]="cardyear"; $checkout_fields_captions['cardyear']="CC Expiry Year"; $custom_fields_names[]="field1"; $custom_fields_captions['field1']="Field1 Caption"; $custom_fields_names[]="field2"; $custom_fields_captions['field2']="Field2 Caption"; $custom_fields_names[]="field 3"; $custom_fields_captions['field 3']="Field3 Caption"; $display_custom_fields="Do not display custom fields page"; $cart_redirect="customer.php"; $customer_redirect="checkout.php"; $checkout_redirect="thankyou.php"; $custom_details_redirect="customer.php"; $uploadfolder="custom_uploads"; $allowed_extensions="jpg, jpeg, png, pdf, doc, xls"; $max_filesize="4"; ?>
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at D:\xampp\htdocs\webshop3\cart\admin\config.php:202) in D:\xampp\htdocs\webshop3\cart\admin\index.php on line 3

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at D:\xampp\htdocs\webshop3\cart\admin\config.php:202) in D:\xampp\htdocs\webshop3\cart\admin\index.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at D:\xampp\htdocs\webshop3\cart\admin\config.php:202) in D:\xampp\htdocs\webshop3\cart\admin\index.php on line 6

My permissions seem to be correct, can you point me in the right direction?

Thanks for the assistance
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

I'm sorry but I don't understand what you mean.

The above code seems to be the "config.php" file of the cart.

But I don't understand what you mean when saying "and when I go to my cart folder I get the following:
". I also don't understand why this is only a part of the full code.

I don't think this is a permissions issue, but since you are testing on xampp, you should set it to NOT report errors and messages. However there is no much help or advise I can provide for local systems.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

No, it isn't possible.

However, it believe that you have a point here. Probably the mini frame should only display value net of shipping. I'll give it a thought.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Not your mistake, it is a bug which I fixed already and will be available for download tomorrow.

Added also ability to include or exclude taxes, shipping and discount in miniframe.

Added "State" tax feature, for those USA states that apply tax only for State Residents.

The same feature can be used for EU residents, where VAT applies (that is, IF you need to aply VAT separately).

Test: http://www.dbtechnosystems.com/WB8/webshop_plus_v3_0 (it is set to calculate tax only for residents).
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

luap78 wrote:
Question:
How can I post total amount to pay and order ID to first data - credit card processing page (external url) from your webshop plus 3 checkout page when customer select in payment options field visa or mastercard and how can I together handle (copy) customer and shiping address and other session data for thankyou page when first data will redirect to thankyou page? Also how can I setup an confirmation email about: Your payment was recieved. I would like send order confirmation email after successful payment and not before.
This requires custom coding. Th eexample about CC card holder, number etc is only for demo purposes, to use it you need to implement an API provided by your payment gateway.
Alternatively, you should code a button (just like the PayPal button) but with the parameters and security algorithms provided by your payment gateway.
Question 2:
Why ordered items posted from webshop plus 3 are displayed in paypal order summary like one item? Please see attached pics (webshop1 vs. webshop plus 3)
Because what you are actually paying is the "Order". You are not using PayPal's cart, you are using YOUR cart (Webshop Plus) and you only redirect to PayPal for the payment. If you implement a payment through your own bank payment gateway, it will also be the same.
Question 3:
It is possible to store order in admin and send order confirmation email to customer only in case when the payment is successfully processed?
Yes, but also requires custom coding.
Question 4:
It is possible to use your DBTS preview directly after checkout page?
No. It "could" be done also with custom coding.
I would like sell products in next steps:

1. customer select products (products, product page)
2. selected products customer can preview and modify ordered items quantity at cart (cart page)
3. after confirmation, customer is redirected to customer details page where enter first, last name and other contact details. At the same page customer enter shipping address too if it is diferent as contact andress.
4. after confirmation, customer is redirected to "order summary preview page" where can preview order summary with shipping address with using DBTS preview. At the same page, customer must confirm with terms and conditions (using checkbox) and select paymemt option. After checking checkbox and payment option selection, customer click proceed and is redirected to paypal or other external payment processor.
5. finally, customer is redirected from payment processor page to thankyou page (now is the time right time to send to customer order confirmation email and store order into admin)

All of the above are part of my Pro (paid) cart.

They do not come as standard with the free Webshop Plus.
www.dbtechnosystems.com
User avatar
tat1477
 
 
Posts: 1
Joined: Thu Dec 10, 2009 11:04 pm
Location: NH
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by tat1477 »

DBTS Form Processor through the Extension Manager.

when I go to manual install and go to the folder I can not see any extention to load. I must be missing a step so can you please walk me threw it so I can get it working.
Thanks Bob
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Manual install is only used if you download the extension zip through my site.
Do an automatic installation instead, throuh the extension manager.

Available updates
when they are loaded, click on Forms
Select DBTS Form Processor and click Install (or Update)
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Most probably you have removed the Admin and Auto responder mail "Custom template" from the processor settings or from the server.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

But, How can I know what you have done ?

I mean, it was working perfectly (as you say) then you changed some settings in the DBTS Form Processor properties.

I can only guess that the files admin_mail_webshop.php and auto_mail_webshop.php are missing from the "dbts_includes" folder.
www.dbtechnosystems.com
User avatar
Navaldesign
 
 
Posts: 862
Joined: Sat Mar 01, 2008 8:08 pm
Location: Italy
Contact:

Re: Webshop Plus! v.3.0 RC (Release Candidate)

Post by Navaldesign »

Final version, classified as 3.2, has been released.
Please download from the link included in the original post of this very thread.
www.dbtechnosystems.com
Post Reply