about summary refs log tree commit diff stats
path: root/central
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-08-08 00:00:20 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-08-08 00:00:20 +0000
commit70f4caa35e06a9607b942cddfe9f3f9d6a0078d5 (patch)
treece3965002197466d00e3fff10f9025572f7408ad /central
parent9969f54cea4d79af79ec1808d4c348b264939360 (diff)
downloadinstadisc-70f4caa35e06a9607b942cddfe9f3f9d6a0078d5.tar.gz
instadisc-70f4caa35e06a9607b942cddfe9f3f9d6a0078d5.tar.bz2
instadisc-70f4caa35e06a9607b942cddfe9f3f9d6a0078d5.zip
Central: Added the required include()
include('class.phpmailer.php'); had been neglected and thus the installation
failed.
Diffstat (limited to 'central')
-rw-r--r--central/trunk/install.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/central/trunk/install.php b/central/trunk/install.php index 5022faf..46300c8 100644 --- a/central/trunk/install.php +++ b/central/trunk/install.php
@@ -2,6 +2,8 @@
2 2
3/* InstaDisc Server - A Four Island Project */ 3/* InstaDisc Server - A Four Island Project */
4 4
5include('class.phpmailer.php');
6
5$softwareVersion = 1; 7$softwareVersion = 1;
6 8
7if (!isset($_GET['submit'])) 9if (!isset($_GET['submit']))
@@ -345,7 +347,7 @@ function showStepTwo($mailDomain, $smtpHost, $smtpAuth, $smtpUser, $smtpPass, $s
345 347
346function showStepThree() 348function showStepThree()
347{ 349{
348?>Congradulations! You've successfully set up your InstaDisc Central Server's database! Now, the next step for you is to implement the functions in instadisc.php into your web application. Read README.txt for more information.<?php 350?>Congradulations! You've successfully set up your InstaDisc Central Server's database! Now, the next step for you is to implement the functions in instadisc.php into your web application. See <A HREF="http://fourisland.com/projects/instadisc/wiki/BecomingACentralServer">Becoming A Central Server</A>.<?php
349} 351}
350 352
351function ifErrors($errors, $id) 353function ifErrors($errors, $id)