• Resolved dmay933

    (@dmay933)


    We are trying to set the stripe details into the plug in whenever we try it doesnt seem to save and has an error displayed at the top of the screen

    “Stripe has enabled but empty Publishable key or Secret key in the plugin settings in Gift Cards plugin.”

    We have tried disabling all plugins and even changed server hosts but we still get the same error message

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Codemenschen

    (@codemenschen)

    Hi @dmay933

    Actually, stripe updated key length to 100+ characters. We have resolved this issue in our latest update. But as it’s not working for you we will help you.

    If you are able to modify the column size from Database then you can update size of below columns from “{Your wp_prefix_}giftvouchers_setting” table. Please replace your wp prefix. Generally this is “wp_”. Also, I have added SQL query.
    column name:- stripe_publishable_key, stripe_secret_key

    ALTER TABLE {Your wp_prefix_}giftvouchers_setting MODIFY COLUMN stripe_publishable_key varchar(255) DEFAULT NULL;
    ALTER TABLE {Your wp_prefix_}giftvouchers_setting MODIFY COLUMN stripe_secret_key varchar(255) DEFAULT NULL;

    Let us know if you need any further help from us.

    Thread Starter dmay933

    (@dmay933)

    THis worked perfectly. Thank you very much.

    Thread Starter dmay933

    (@dmay933)

    Resolved

    Plugin Author Codemenschen

    (@codemenschen)

    Hi @dmay933 ,
    Glad to know it’s working fine.We’re closing this topic.
    Feel free to open new thread for further help! Also, do not forgot to add reviews for plugin. Hope you have great work!

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

The topic ‘Stripe Publish Key’ is closed to new replies.