Page 114 of 123 FirstFirst ... 1464104112113114115116 ... LastLast
Results 1,131 to 1,140 of 1222
  1. #1131
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: My Checkout Without Account Mod

    All mods that have admin control pages will need to take account of new v1.5 page registration methods. If this has not yet been done, it will probably not be usable.

  2. #1132
    Join Date
    Sep 2006
    Posts
    542
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    I am trying to install the COWA I have it loaded on my localhost, and it worked just fine, However when adding the sql on the hosted server I will not let me alter tables. I get I error that states something like can't alter table there is no table customers

    My site was down due to no connection to the database and it would not restore my backup. I had to add a new database - upload the backup to it and change configure files.

    I have downloaded a backup copy of my database and want to insert into the sql backup and then add the patch by pasting into the query window.

    The zen cart version on my hosted server is 1.3.8
    version on localhost is 1.3.9

    This is my table customer

    Code:
    DROP TABLE IF EXISTS `customers`;
    SET @saved_cs_client     = @@character_set_client;
    SET character_set_client = utf8;
    CREATE TABLE `customers` (
      `customers_id` int(11) NOT NULL auto_increment,
      `customers_gender` char(1) NOT NULL default '',
      `customers_firstname` varchar(32) NOT NULL default '',
      `customers_lastname` varchar(32) NOT NULL default '',
      `customers_dob` datetime NOT NULL default '0001-01-01 00:00:00',
      `customers_email_address` varchar(96) NOT NULL default '',
      `customers_nick` varchar(96) NOT NULL default '',
      `customers_default_address_id` int(11) NOT NULL default '0',
      `customers_telephone` varchar(32) NOT NULL default '',
      `customers_fax` varchar(32) default NULL,
      `customers_password` varchar(40) NOT NULL default '',
      `customers_newsletter` char(1) default NULL,
      `customers_group_pricing` int(11) NOT NULL default '0',
      `customers_email_format` varchar(4) NOT NULL default 'TEXT',
      `customers_authorization` int(1) NOT NULL default '0',
      `customers_referral` varchar(32) NOT NULL default '',
      PRIMARY KEY  (`customers_id`),
      KEY `idx_email_address_zen` (`customers_email_address`),
      KEY `idx_referral_zen` (`customers_referral`(10)),
      KEY `idx_grp_pricing_zen` (`customers_group_pricing`),
      KEY `idx_nick_zen` (`customers_nick`),
      KEY `idx_newsletter_zen` (`customers_newsletter`)
    ) ENGINE=MyISAM AUTO_INCREMENT=274 DEFAULT CHARSET=utf8;
    SET character_set_client = @saved_cs_client;
    Would I just add to the code?

    COWOA_account tinyint(1) NOT NULL default 0;
    and would I need some commas around.

    and do the same for the orders and then what would I do with the code?

    Or is there a better suggestion?

  3. #1133
    Join Date
    Jan 2008
    Posts
    39
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Quote Originally Posted by ms paperlicious View Post
    Does anyone know if this mod works with newest zencart version 1.5?

    Trying a fresh install on a fresh 1.5 and so far I can't get it to even show up on the checkout page (split login is set to "true".) Wondering if it's because it's not compatible or because I did something incorrect.

    Thanks!
    I have the same issue...I am guessing that it's not compatible with the 1.5. Loved the mod in my last cart and am hoping that someone will update to make it usable with the new version!

  4. #1134
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: My Checkout Without Account Mod

    Quote Originally Posted by BALCO View Post
    I have the same issue...I am guessing that it's not compatible with the 1.5. Loved the mod in my last cart and am hoping that someone will update to make it usable with the new version!
    Well since this mod doesn't really have an "owner/developer" it might be a while before it's updated for v1.5.. If it's vital to your business, you might consider investing in the cost of paying someone to update this mod for you.. or even having a crack at the updates yourself..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  5. #1135
    Join Date
    Sep 2006
    Posts
    542
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    The zen cart version on my hosted server is 1.3.8
    version on localhost is 1.3.9

    1.3.9 works but the hosted server does not

    My question i more a sql question about dropping a the table and inserting the code and then adding the table back.

    I think it is a host issue that won't allow a table to be altered. Good for me as it doesn't allow hackers to alter my sql but bad for me.

    I don't know about sql. Maybe I should post in a forum for sql experts.

  6. #1136
    Join Date
    Jan 2008
    Posts
    39
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Quote Originally Posted by DivaVocals View Post
    Well since this mod doesn't really have an "owner/developer" it might be a while before it's updated for v1.5.. If it's vital to your business, you might consider investing in the cost of paying someone to update this mod for you.. or even having a crack at the updates yourself..
    I wish I had the knowledge to update it and would if I could. It is not vital for my cart but a nice mod for those that don't want to create an account. I will function fine without it though and love the changes in 1.5...big changes from my other cart!

  7. #1137
    Join Date
    Feb 2012
    Posts
    1
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Does anyone know where I can find the latest version of the download? The links on http://www.zen-cart.com/wiki/index.p...ithout_Account are invalid.

  8. #1138
    Join Date
    Mar 2010
    Location
    Bonners Ferry, Idaho
    Posts
    69
    Plugin Contributions
    1

    Default Re: My Checkout Without Account Mod

    You can download it from the contributions page here: http://www.zen-cart.com/index.php?ma...oducts_id=1655

    OR, if you want a bit more functionaltiy and or need a mod fully compatible with 1.5.0 you can install the Esay Checkout mod from Numinix: https://www.numinix.com/zen-cart-mod...27edf630ac40dd

    HTL,
    Jacob

  9. #1139
    Join Date
    Jan 2012
    Posts
    65
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Hello,

    I installed successfully the mod, but I have just one question -
    I have 2 languages in my cart, how can I adapt the COWOA mod to work not only in the English version, but the French as well?

    (Are there any translations out there?)

    Thanks

  10. #1140
    Join Date
    Sep 2006
    Posts
    542
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Make copies of the english folders and then change the names to french and paste them in your french language folders
    ~~~~~~~~~~~~~~~~~~~~~~~~~~

    Play with it long enough and you will break it.

 

 

Similar Threads

  1. Checkout without account problem
    By weblasomnath in forum Addon Templates
    Replies: 0
    Last Post: 23 Nov 2010, 02:56 PM
  2. Checkout without account
    By GDOrn in forum All Other Contributions/Addons
    Replies: 194
    Last Post: 14 Sep 2010, 08:05 PM
  3. Fast and Easy Checkout - Checkout Without Account not showing
    By Lee-oh in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 3 Feb 2010, 05:09 PM
  4. question about the checkout without account mod
    By hxkknba in forum Addon Payment Modules
    Replies: 1
    Last Post: 12 Oct 2009, 05:48 PM
  5. Changing checkout flow with Checkout Without Account (COWOA)?
    By pe7er in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 7 Feb 2008, 06:09 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR