Maximizing File Upload Limits in Invision Community: Tips and Solutions

I’ve been running my forum on Invision Community and I’m trying to increase the file upload limit for the downloads manager. In the AdminCP, under the category settings, there’s a field for upload limit, but it seems capped at 2 MB. I know the server itself can handle larger files (I’ve uploaded 25 MB+ via other scripts on the same host).

Has anyone successfully bypassed this limit? I suspect it’s a combination of Invision Community’s internal settings and PHP configuration. On Xisto hosting, we can adjust php.ini or use .htaccess to modify upload_max_filesize and post_max_size. Does Invision Community enforce its own limit regardless?

I’d appreciate any tips or walkthroughs. Thanks!

:hammer_and_wrench: Featured GitHub Resource:

:movie_camera: Video Tutorial:

---
title: File Upload Limit Optimization Flowchart
---
flowchart TD
    A[Start] --> B[Check PHP Limits]
    B --> C[Increase upload_max_filesize]
    B --> D[Increase post_max_size]
    C --> E[Increase memory_limit if needed]
    D --> E
    E --> F[Update .htaccess or php.ini]
    F --> G[Check Invision Community Settings]
    G --> H[Set Max Upload Size in ACP]
    H --> I[Check Server Config]
    I --> J[Adjust Nginx or Apache]
    J --> K[Restart Web Server]
    K --> L[Test Upload]
    L --> M{Success?}
    M -->|Yes| N[End: Limits Increased]
    M -->|No| O[Recheck Steps]