File size: 1.59Kb
<?php
#########################################################################################
# #
# MMS Gallery PHP version 1.0 mms_settings.php file #
# #
# In this file are the setting parameters you need to change to make the mms2web.com #
# MMS transfer service and MMS gallery to work for your web site #
# #
#########################################################################################
# Define the path to your web site directory where the MMS files are transferred from mms2web.com
# Set the rights to this folder read,write,execute (0777)
# Password protect this folder with basic authentication if it is on your web root
$mms_dir='/home/PATH/mmsimages';
# If you have chosen to use the HTTP POST RAW DATA transfer method
# then enter here the password you entered in your Profile information
# at mms2web.com. PHP file MMS_Receive.php will use this password to check that
# the transferred files came from your account at mms2web.com
$http_password='changethis';
# set this TRUE if you want to strip out the mobile phone number from the image name
$remove_number=TRUE;
# How many MMS messages would you like to display in each row in your MMS gallery table.
# Enter value to this $mms_per_row variable:
$mms_per_row=4;
# How many MMS messages would you like to display in each page in your MMS gallery.
# You might want this to be a multible of the $mms_per_row variable (eg. 4 per row * 10 rows = 40 MMS per page).
# Enter value to this $mms_per_page variable:
$mms_per_page=12;
?>