PHP Classes

File: extras/mainfile.php

Recommend this page to a friend!
  Classes of Michael Beck   Xoops 2.5   extras/mainfile.php   Download  
File: extras/mainfile.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change:
Date: 6 years ago
Size: 770 bytes
 

Contents

Class file image Download
<?php
/**
 * This is a dummy placeholder for mainfile.php, the XOOPS configuration file
 *
 * This is only needed for installation on servers that cannot write a file directly
 * into the main XOOPS root directory. On these servers, the install will stop
 * progressing after configuring the database (install/page_dbconnection.php)
 *
 * If you experience this problem:
 * - copy this file to the XOOPS root directory
 * - set the file permissions to make it writeable
 * - rerun the install
 *
 * Typical writable permission would be 665 (user read/write, group read/write, other read)
 * If problems persist, escalate permission to 777 (world read/write/execute) as a last resort.
 */
if (! defined('XOOPS_INSTALL')) {
   
header('Location: install/index.php');
}