Re: Drop Shipping Purchase Orders Module for v1.3.8
Just searched around and it appears your MYSQL is set to strict mode. See this thread here:
http://www.zen-cart.com/forum/showthread.php?t=63993
Turn strict mode off by editing your my.ini file like the poster in this thread did. That should fix the problem.
Re: Drop Shipping Purchase Orders Module for v1.3.8
Having a heck of a time getting this pmod to work, but I think Im close....
Use 1.3.8a on a windows server.
When I go to Extras->PO Edit Subcontractors, I see some strange things happening...
Below "Edit Subcontractors" and immediately above "ID Short name" you see what looks like some garbage code on two lines like this:
' . "\n"; } else{ echo '
' . "\n"; } for($i=0; $i
in addition, on the right, there are nine text boxes and they have the following... each line is what each text box has a syou move downward:
<? echo $row2[1]; ?>
<? echo $row2[2]; ?>
<? echo $row2[3]; ?>
<? echo $row2[4]; ?>
<? echo $row2[5]; ?>
<? echo $row2[6]; ?>
<? echo $row2[7]; ?>
<? echo $row2[8]; ?>
<? echo $row2[9]; ?>
Anyone?....
Thanks in advance.
Re: Drop Shipping Purchase Orders Module for v1.3.8
Just by what I see I have to guess your php server is not handling short tags.
Short tags have the beginning of a php block as <? instead of <?php
If this is the case the php.ini or the file will need to be edited.
Re: Drop Shipping Purchase Orders Module for v1.3.8
I just looked at edit_subcontrac.php and they have mixed the tags with some short and some long.
You need the following line in your php.ini
short_open_tag = On
Re: Drop Shipping Purchase Orders Module for v1.3.8
please send installation details about dropshipping/supplier interface for the zencart version 1.3.8.:(
Re: Drop Shipping Purchase Orders Module for v1.3.8
Installation details are included with the module. If you have a problem or question after that, come back and we can try and help you.
Re: Drop Shipping Purchase Orders Module for v1.3.8
Quote:
Originally Posted by
srturner47
That did the trick!! I modified my my.ini file, it didnt work, but using the SET command it did.
Open your "my.ini" file within the MySQL installation directory, and look for the text "sql-mode".
Find:
Code:
# Set the SQL mode to strict
sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"Replace with:
Code:
# Set the SQL mode to strict
sql-mode="NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"Or, you can run an SQL query within your database management tool, such as phpMyAdmin:
Code:
SET @@global.sql_mode= '';
THANKS!
Re: Drop Shipping Purchase Orders Module for v1.3.8
Hi everyone, I'm testing Customers>POs - Send/Resend. I just sent out a PO to one SC (myself for testing). Then I hit the button "View old POs and resend them". The order I just sent out doesn't show on the page. Should it list all the POs I sent out to SCs?
In other words, how does this button "View old POs and resend them" work?
Thanks.
Re: Drop Shipping Purchase Orders Module for v1.3.8
You need to search for the order you just sent. See the top of the page. There are search options. Enter them, and click the search button.
Re: Drop Shipping Purchase Orders Module for v1.3.8
I want to switch the location of the billing address and the shipping address. How do I switch their location? Thanks!