• Hello!
    When I’m trying to export the XML is return the 500 error. In the console log is write that this function is generated the error. Ca you help me?
    /load-scripts.php?c=0&load%5Bchunk_0%5D=regenerator-runtime,wp-polyfill,wp-hooks,jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,unde&load%5Bchunk_1%5D=rscore,backbone&ver=6.1.1

Viewing 1 replies (of 1 total)
  • Hi
    I had the same problem. I solved it with these 2 changes:
    1. On index.php line 53, change

    include_once SEPA_PAYMENT_GATEWAY_PATH.'/vendor/autoload.php';

    For this:

    include_once SEPA_PAYMENT_GATEWAY_PATH.'vendor/autoload.php';

    2. On implement.php line 108, change

    $url_download = SEPA_PAYMENT_GATEWAY_LOG_URL.$filename;

    for this:

    $url_download = SEPA_PAYMENT_GATEWAY_LOG_URL . '/' . $filename;
    

    I hope it works for you.

    Regards

Viewing 1 replies (of 1 total)

The topic ‘POST …/admin-ajax.php 500 (Internal Server Error)’ is closed to new replies.