Page 2 of 6 FirstFirst 1234 ... LastLast
Results 11 to 20 of 57
  1. #11
    Join Date
    Jun 2007
    Location
    Arkansas
    Posts
    71
    Plugin Contributions
    0

    Default Re: Delivery control

    When I try to install the SQL Patch through ZenCart it comes back as failed, when I try to install the SQL Patch through PHPMyAdmin I get an error that says
    Error

    SQL query:

    CREATE TABLE `delivery` ( `del_id` double NOT NULL AUTO_INCREMENT ,
    `del_name` varchar( 60 ) default NULL ,
    `del_date` date default '0000-00-00',
    `del_status` tinyint( 1 ) default '0',
    `del_delivered` date default '0000-00-00',
    PRIMARY KEY ( `del_id` )
    ) CREATE TABLE `delivery_products` ( `del_id` double NOT NULL default '0',
    `prod_id` double NOT NULL default '0',
    `prod_quantity` double default '0'
    )
    MySQL said:
    #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE TABLE `delivery_products` (
    `del_id` double NOT NULL default '0',
    `' at line 10
    Justin Kumpe

  2. #12
    Join Date
    Oct 2006
    Location
    Suffolk UK
    Posts
    55
    Plugin Contributions
    1

    Default Re: Delivery control

    I had the same issue on my 1.37 install

    I fixed it by manually creating the tables

    i dont have much more than that though... the delivery report shows up under REPORTS in admin but the buttons dont work and there is no data and no real instructions to guide me in the right direction...

    I am saddened to say that this is a mod in dire need of some sort of support / manual for use

    Please please someone who knows more than us mere mortals give us some clue :)

    great idea for a mod :)

  3. #13
    Join Date
    Nov 2007
    Posts
    49
    Plugin Contributions
    2

    Default Re: Delivery control

    Hi,
    I have cereated this mod and made it working fine for me...

    I'll try to put together some manual and clean the source code, to be more transparent.

    Coming back soon... ;-)

  4. #14
    Join Date
    Oct 2006
    Location
    Suffolk UK
    Posts
    55
    Plugin Contributions
    1

    Default Re: Delivery control

    many thanks :)

  5. #15
    Join Date
    Apr 2007
    Location
    Rustenburg, South Africa
    Posts
    85
    Plugin Contributions
    0

    Default Re: Delivery control

    Quote Originally Posted by hosiya View Post
    I have a problem blow, pls help me.

    Sorry, your security clearance does not allow you to access this resource.

    Please contact your site administrator if you believe this to be incorrect.

    Sorry for any inconvenience.


    What i have to do!?
    Click on tools / admin settings look fo the orange P and give yourself permission to open the file.

  6. #16
    Join Date
    Apr 2007
    Location
    Rustenburg, South Africa
    Posts
    85
    Plugin Contributions
    0

    Default Re: Delivery control

    Try installing the first create table and then the second create table.

    The second insert is to fast after the first one and cause it to give an error.

    Inserting it seperately will do the trick.

  7. #17
    Join Date
    Sep 2006
    Posts
    35
    Plugin Contributions
    0

    Default Re: Delivery control

    The SQL error comes simply from the fact that the statements don't end with a semicolon. The code should be :

    CREATE TABLE `delivery` (
    `del_id` double NOT NULL auto_increment,
    `del_name` varchar(60) default NULL,
    `del_date` date default '0000-00-00',
    `del_status` tinyint(1) default '0',
    `del_delivered` date default '0000-00-00',
    PRIMARY KEY (`del_id`)
    );

    CREATE TABLE `delivery_products` (
    `del_id` double NOT NULL default '0',
    `prod_id` double NOT NULL default '0',
    `prod_quantity` double default '0'
    );

    However, I have the same problem of the buttons don't work and how on earth am I supposed to use this mod anyway? We need some very basic instructions here.

  8. #18
    Join Date
    Apr 2007
    Location
    Rustenburg, South Africa
    Posts
    85
    Plugin Contributions
    0

    Default Re: Delivery control

    I have repaired the error in the sql table.

    That is not the only issue we experience here.

    The mod buttons does not work on all the systems.

    I think it has to do with the fact that it was specifically written for php 4 or 5

    Can anyone clear this up for me ???

  9. #19
    Join Date
    Feb 2007
    Posts
    47
    Plugin Contributions
    0

    help question Re: Delivery control

    I've installed eveything, but it won't allow me to add any deliveries. No error messages, just 'Delivery' at the top and the rest of the page is blank.

  10. #20
    Join Date
    Feb 2007
    Posts
    50
    Plugin Contributions
    0

    Default Re: Delivery control

    Hi guys,

    When i try to add a delivery i get the following error:

    1064 You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT MAX(del_id) FROM delivery)' at line 3
    in:
    [SELECT del_id AS id FROM delivery WHERE del_id = (SELECT MAX(del_id) FROM delivery) ]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

    any suggestions??

 

 
Page 2 of 6 FirstFirst 1234 ... LastLast

Similar Threads

  1. Per Item - But different prices for 1 day delivery, 3 day delivery etc.
    By rowby in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 28 Nov 2010, 10:25 PM
  2. Free Delivery Coupon still adding VAT/TAX for delivery
    By PudzPud in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 1
    Last Post: 12 Oct 2009, 08:57 AM
  3. Category control
    By porque in forum Setting Up Categories, Products, Attributes
    Replies: 4
    Last Post: 1 Sep 2007, 03:27 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg