Jump to content

How Do I Increase the File Attachment Size? (Default Template)


Recommended Posts

I need to increase the file attachment size for adding a couple of product manuals/instructions (I am using the default template).  How do I go about this?  These manuals and instructions are important to the customer and obviously making them available is important to us.  Thanks in advance for your help.

Link to comment
Share on other sites

Hello

 

Have a look at going to:

 

public_html/Your Shop/classes/Uploader.php

 

class UploaderCore
{
const DEFAULT_MAX_SIZE = 10485760;     (change this size)
private $_check_file_size;
private $_accept_types;
private $_files;
private $_max_size;
private $_name;
private $_save_path;
 
 
I was having similar problems so I changed mine to:
 
const DEFAULT_MAX_SIZE = 50485760;
 
Paul
Link to comment
Share on other sites

×
×
  • Create New...