Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi
    Can you tell me how you resolved this issue?
    Thanks

    Thread Starter Noiseman

    (@noiseman)

    Thanks Moch but it is still give me the error message “An error occurred: Unable to parse the p12 file. Is this a .p12 file? Is the password correct? OpenSSL error:”

    I’ve uploaded the file using FTP and put it in a directory, then specified the folder path to the file but it still isn’t working for some reason. I don’t see any option to specify the password for the p12 file…is that the issue?

    Thanks
    Tim

    I shall do that. It’s perfect for what I need.
    Tim

    A ha!!

    I removed the advanced file uploader from the form and then reinserted it and it seems to have done the trick.

    Thanks for taking the trouble to help me. It always amazes me when people will give up their time like that when there is no reward. You are a gent!

    Thanks
    Tim

    Hi Ben,

    I’ve removed the space and tried another file too but still the same error message.

    Any other thoughts?

    Thanks
    Tim

    Hi….yes I think so. My current theme is Responsive and the functions.php file is in a sub-folder called Core. The error message I get is ‘error: Invalid file extension: Music .wav’
    Thanks again for your help.

    Hi Ben,
    Thanks for taking the time to look at this for me. Unfortunately it still doesn’t seem to work. I’m not a programmer so it took me a while to work out how to do what you recommended but I think i got there in the end. Would you mind having a quick look at the code in my functions.php file to check I’ve inserted it correctly? Also slightly concerned that the script says not to edit it any way!
    Thanks
    Tim

    <?php

    // Exit if accessed directly
    if( !defined( ‘ABSPATH’ ) ) {
    exit;
    }

    /**
    *
    * WARNING: Please do not edit this file in any way
    *
    * load the theme function files
    */

    $template_directory = get_template_directory();

    require( $template_directory . ‘/core/includes/functions.php’ );
    require( $template_directory . ‘/core/includes/functions-update.php’ );
    require( $template_directory . ‘/core/includes/functions-sidebar.php’ );
    require( $template_directory . ‘/core/includes/functions-install.php’ );
    require( $template_directory . ‘/core/includes/theme-options/theme-options.php’ );
    require( $template_directory . ‘/core/includes/post-custom-meta.php’ );
    require( $template_directory . ‘/core/includes/tha-theme-hooks.php’ );
    require( $template_directory . ‘/core/includes/hooks.php’ );
    require( $template_directory . ‘/core/includes/version.php’ );
    require( $template_directory . ‘/core/includes/upsell/theme-upsell.php’ );

    add_filter( ‘prso_adv_uploader_reject_mimes’, ‘prso_uploader_add_mime’ );
    function prso_uploader_add_mime( $allowed_mime_types ) {
    $allowed_mime_types[‘wav’] = ‘audio/x-wav’;
    return $allowed_mime_types;
    }

    // Return value of the supplied responsive free theme option.
    function responsive_free_get_option( $option, $default = false ) {
    global $responsive_options;

    // If the option is set then return it’s value, otherwise return false.
    if( isset( $responsive_options[$option] ) ) {
    return $responsive_options[$option];
    }

    return $default;
    }

    ?>

    I’m having the same problem. I get the error message File Type Error: audio/x-wav.

    Karl…I see you are getting the same error.

    Anybody got a solution?

    Thanks

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