Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • This happens to me also when there is a wordpress automatic update, it changes my htaccess to

    RewriteBase /ja/

    It should be just (in my case)
    RewriteBase /

    Its annoying because it takes the whole website out & I dont know its happened until i get an email from a customer.

    Thread Starter riquez

    (@riquez)

    Thank you!
    Hold Stock minutes was blank & I guess therefore pending orders never became auto-cancelled. (I was cancelling them myself, but had missed this one)

    I set it to 120, it’s more than enough time for someone to complete on our small shop.

    Thanks again for your quick reply!

    Thread Starter riquez

    (@riquez)

    yes. Orange border, it says “There was an error trying to send your message. Please try again later”

    It only happens if i type my name “Paul Roddick” – if i just type “Paul” no error, email works.

    Thread Starter riquez

    (@riquez)

    Login to mySQL (for many people this will be phpmyadmin control panel on their hosting)
    Select the correct database & run the query to create the table – If found the query in the eshop-install.php file, around line 749 in my version. This is the query in my version:

    CREATE TABLE eshop_discount_codes (
    		  id int(11) NOT NULL auto_increment,
    		  dtype tinyint(1) NOT NULL default '0',
    		  disccode varchar(255) NOT NULL default '',
    		  percent float(5,2) NOT NULL default '0.00',
    		  remain varchar(11) NOT NULL default '',
    		  used int(11) NOT NULL default '0',
    		  enddate date NOT NULL default '0000-00-00',
    		  live char(3) NOT NULL default 'no',
    		  PRIMARY KEY  (id),
    		  UNIQUE KEY disccode (disccode)
    		);

    Note that i had to modify the code slightly to change the variables $table & $charset_collate

    If this doesnt work or is complex, then I would suggest to try installing it again.

    Thread Starter riquez

    (@riquez)

    This is a great plugin to edit text, but can i use it for this purpose, to remove decimals?

    The translation text will be ‘%1$s%2$s’ (symbol value) although I can modify that to add other text, I don’t think it can reformat the value of %2$s here – can i?

    Thread Starter riquez

    (@riquez)

    Four.

    Currently I have hacked it to add a list the customer can refer to. its an ok solution but if you have a better idea I would love to hear it.

    Zone 1: <list of areas>
    Zone 2: <list of areas>
    etc

    Thread Starter riquez

    (@riquez)

    I ran the missing table instal queries “CREATE TABLE etc
    & now of course everything is suddenly working – the checkout has a box for discount codes & I can create codes in admin.

    You better have your plugin to check that the tables exist -I have no idea how the script managed to skip over those 2 tables, but it did.

    Thread Starter riquez

    (@riquez)

    I looked in the eshop-install.php file where the initial tables are created
    I dont have

    • eshop_discount_codes
    • eshop_download_orders

    but i seem to have all the others. Is that normal?

    Thread Starter riquez

    (@riquez)

    I also can’t find anywhere in the basket or checkout that a customer can enter a code – something odd is going on ??

Viewing 9 replies - 1 through 9 (of 9 total)