Excel file upload

How we can upload excel file using admin assets.

Comments

  • Try adding the the following to your MY_fuel.php "xls":

    // Specifies what filetype extensions can be included in the folders
    $config['editable_asset_filetypes'] = array(
        'images' => 'jpg|jpeg|jpe|gif|png|zip|svg',
        'pdf' => 'pdf|zip',
        'media' => 'mov|mp3|aiff|mpeg|zip',
        'assets' => 'jpg|jpeg|jpe|png|gif|mov|mpeg|mp3|wav|aiff|pdf|css|zip|svg|xls|xlsx'
    );
    
Sign In or Register to comment.