Is There Any Thirdparty Software I Need Separately
Answer
This question was discussed in the APG vNext support community. For a complete answer, browse the Knowledge Base or search the support forum.
Quick Reference
- FAQ — common questions answered
- Installation Guide — step-by-step server setup
- Upgrade Guide — upgrading between versions
- Features Overview — what APG vNext includes
- Support Forum — ask the community directly
Third-Party Software Requirements for APG vNext
APG vNext has a focused set of server-side dependencies. You do not need any separate third-party forum software or middleware beyond the standard Microsoft web stack. The core requirements are components that are either already present on most Windows hosting environments or simple to add.
Core Required Components
To run APG vNext you need the following: Windows Server 2008 R2 or later (Windows Server 2016 or 2019 is recommended for current releases), Internet Information Services (IIS) version 7 or later with ASP.NET support enabled, Microsoft .NET Framework 4.6.1 or later (exact minimum version depends on the APG release — check the release notes for your specific version), and SQL Server 2008 R2 or later (Express edition is sufficient for small forums; Standard or Enterprise is recommended for production deployments under significant load).
IIS Role Services and Modules
IIS must have the following role services installed: Static Content, Default Document, HTTP Errors, ASP.NET for the target .NET version, ISAPI Extensions, ISAPI Filters, and HTTP Logging. Additionally, the URL Rewrite Module must be installed for clean SEO-friendly URLs to work. The URL Rewrite Module is a free download from the Microsoft IIS downloads page and is not included in the default IIS installation. Without it, the forum will function but will use query-string-based URLs that are less readable and less effective for SEO.
SQL Server Configuration
APG vNext requires a dedicated SQL Server database. Create a SQL Server login with db_owner permissions on the APG database. SQL Server Express is free and fully functional for development and small community forums. For a forum with more than a few hundred concurrent active users, SQL Server Standard is recommended for better connection pool management and query performance. Note that SQL Server Express has a 10 GB per-database size limit — a large, long-running forum with many file attachments can approach this limit, at which point upgrading to a paid SQL Server edition becomes necessary.
Choose SQL Server Authentication (username and password in the connection string) or Windows Authentication depending on your environment. SQL Server Authentication is more common on VPS and cloud hosting. Windows Authentication is preferred in enterprise on-premises environments where the web server and database server are on the same Active Directory domain.
SMTP for Email Delivery
APG vNext sends transactional emails for account registration, password reset, reply notifications, and private message alerts. You need access to an SMTP server for these to work. Options include your hosting provider's SMTP relay, Microsoft 365 or Exchange relay, Gmail SMTP with an App Password, Amazon SES, SendGrid, Mailgun, or any RFC-compliant SMTP service. Configure the host, port, SSL/TLS settings, and credentials in APG vNext under Admin > Email Settings. Test the configuration by using the built-in test email function after saving.
Optional: URL Rewrite and IIS ARR
For reverse-proxy setups where APG vNext sits behind another web server or load balancer, IIS Application Request Routing (ARR) may be needed alongside URL Rewrite. ARR is also a free Microsoft module available from the IIS downloads page. This configuration is only relevant for advanced multi-server setups and is not needed for a standard single-server deployment.
Optional: Full-Text Search
APG vNext's default search uses SQL LIKE queries which work adequately for small forums. For large forums with years of post history, enabling SQL Server Full-Text Search provides faster and semantically richer search results. Full-Text Search is a SQL Server feature that must be explicitly installed — it is not enabled by default in Express or Standard installations. Add it through the SQL Server Installation Center and then enable full-text query mode in APG vNext's admin panel search settings.
Optional: Redis for Distributed Caching
In load-balanced multi-server deployments, APG vNext supports Redis as a distributed session store and output cache provider. Redis is not needed for single-server setups. For high-traffic forums running on multiple backend web servers behind a load balancer, Redis eliminates session affinity requirements and allows any request to be served by any server in the pool. Install Redis via the Redis for Windows package or run it as a containerized service alongside your application.
Nothing Else Needed
APG vNext is a self-contained ASP.NET web application. You do not need to install a separate CMS, PHP, Ruby, Node.js, or any other framework alongside it. Everything the forum needs — content management, user management, theming, administration, and search — is built into the APG vNext application itself. External integrations like Tapatalk, social login, and analytics are optional add-ons configured through the admin panel, not base requirements.
Looking for more help? Browse the support forum or check the Knowledge Base.