ProcessWire Installation and Setup

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1 servicesAll 2065 services
ProcessWire Installation and Setup
Simple
from 4 hours to 2 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

ProcessWire Installation and Setup

ProcessWire is installed manually — there's no package manager like apt or brew. Minimum requirements: PHP 7.4+ (8.1+ recommended), MySQL 5.7+ or MariaDB 10.3+, Apache/Nginx with .htaccess support or equivalent URL rewriting.

Installation Process

# Download latest release
curl -L https://github.com/processwire/processwire/archive/refs/heads/master.zip -o pw.zip
unzip pw.zip -d /var/www/mysite
cd /var/www/mysite

# Set permissions
chmod 755 site/assets/files site/assets/cache site/assets/logs site/assets/sessions

Web installer launches at http://yourdomain.com/install.php. It checks for PHP extensions (pdo_mysql, gd, mbstring, openssl), creates database tables, and generates /site/config.php.

After installation completes, install.php is deleted automatically — if not, delete manually.

config.php Configuration

Key parameters after installation:

// /site/config.php

$config->dbHost = 'localhost';
$config->dbName = 'mysite_db';
$config->dbUser = 'mysite_user';
$config->dbPass = 'secret';
$config->dbPort = '3306';

// Debug — only on dev environment
$config->debug = false;

// Site URL (important when behind reverse proxy)
$config->httpHosts = ['mysite.com', 'www.mysite.com'];

// File types
$config->fileContentTypes = array_merge(
    $config->fileContentTypes,
    ['svg' => 'image/svg+xml']
);

// Sessions
$config->sessionExpireSeconds = 86400;

Nginx Configuration

Apache config is generated automatically via .htaccess. For Nginx:

server {
    listen 80;
    server_name mysite.com;
    root /var/www/mysite;
    index index.php;

    location / {
        try_files $uri $uri/ /index.php?it=$uri&$args;
    }

    location ~ \.php$ {
        fastcgi_pass unix:/run/php/php8.1-fpm.sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

    # Protect admin directories
    location ~ ^/site/(assets|modules|templates)/ {
        deny all;
    }
}

Initial Setup After Installation

Installation Profile. ProcessWire offers three profiles: blank (clean), default (demo content), languages (with language support). For production — blank or languages.

site/ Directory Structure:

site/
  assets/        # uploaded files, cache (not in git)
  modules/       # custom and third-party modules
  templates/     # PHP templates
  config.php
  config-dev.php # dev overrides (git-ignored)

config-dev.php lets you keep dev settings separate:

// config-dev.php — loaded automatically if exists
$config->debug = true;
$config->dbHost = '127.0.0.1';
$config->dbName = 'mysite_dev';

Module Installation

// Via admin: Modules → Install → search by name
// Or manually: copy module folder to /site/modules/
// then: Modules → Refresh → Install

Essential modules for most projects: MarkupPagerNav (pagination), InputfieldTinyMCE (WYSIWYG), LanguageSupport (if needed).