LiteShoper installation help

Your server returned an error before the installer could run. On many shared hosts this is caused by file permissions after extracting the ZIP.

Quick fix: In cPanel → File Manager, select all files and folders in this site, then set folders to 755 and files to 644. PHP files must not be group-writable (avoid 664 or 666).

Step by step (cPanel)

  1. Open File Manager and go to your site folder .
  2. Click Select All.
  3. Click Permissions (or right‑click → Change Permissions).
  4. Set directories to 755 — owner read/write/execute; group and world read/execute only.
  5. Set files to 644 — owner read/write; group and world read only. Uncheck “Group Write”.
  6. Apply to all files and subdirectories.

Then try again

  1. Open fix-perms.php — it tries to repair permissions automatically.
  2. If that page loads and says OK, open install.php.

SSH (optional)

If you have shell access, run from your site root:

find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;

Already installed?

If your store was working and you see this page after an upgrade, contact your hosting provider with the time of the error and ask them to check the server error log.

Retry installer