Question: image upload limit problem

image upload limit problem

error The file you are attempting to upload is larger than the permitted size. how can I increase this limit ?

CG

Cihan G

Asked
error
The file you are attempting to upload is larger than the permitted size.

how can I increase this limit ?
  • MS

    Mian Saleem

    Answered
    You will need to edit `upload` method of `app/controllers/Forums.php` and modify the
    ```php
    $config['max_size'] = '500';

    $config['max_width'] = '800';
    $config['max_height'] = '800';
    ```
  • Login to Reply