+ Reply to Thread
Results 1 to 1 of 1

Thread: Miscellaneous Settings

  1. #1
    Reesey is offline x10 Sophmore Reesey is an unknown quantity at this point
    Join Date
    Sep 2007
    Posts
    101

    Miscellaneous Settings

    Hey all. i got a prob wid my Miscellaneous Settings
    as u can see i set all my settings up. click save. and it dosent save and goes back to the way it was. i have tried PHP fusion for support. but to be honnest there hopeless. and rarley halp anyone out. so maybe someone could help me out here. here is my scipt






    <?php
    /*---------------------------------------------------+
    | PHP-Fusion 6 Content Management System
    +----------------------------------------------------+
    | Copyright (c) 2005 Nick Jones
    | http://www.php-fusion.co.uk/
    +----------------------------------------------------+
    | Released under the terms & conditions of v2 of the
    | GNU General Public License. For details refer to
    | the included gpl.txt file or visit http://gnu.org
    +----------------------------------------------------*/
    require_once "../maincore.php";
    require_once BASEDIR."subheader.php";
    require_once ADMIN."navigation.php";
    include LOCALE.LOCALESET."admin/settings.php";
    if (!checkrights("S6")) fallback("../index.php");
    if (isset($_POST['savesettings'])) {
    $result = dbquery("UPDATE ".$db_prefix."settings SET
    db_backup_folder='".stripinput($_POST['db_backup_folder'])."',
    tinymce_enabled='".(isNum($_POST['tinymce_enabled']) ? $_POST['tinymce_enabled'] : "0")."',
    smtp_host='".stripinput($_POST['smtp_host'])."',
    smtp_username='".stripinput($_POST['smtp_username'])."',
    smtp_password='".stripinput($_POST['smtp_password'])."',
    bad_words_enabled='".(isNum($_POST['bad_words_enabled']) ? $_POST['bad_words_enabled'] : "0")."',
    bad_words='".addslash($_POST['bad_words'])."',
    bad_word_replace='".stripinput($_POST['bad_word_replace'])."',
    guestposts='".(isNum($_POST['guestposts']) ? $_POST['guestposts'] : "0")."',
    numofshouts='".(isNum($_POST['numofshouts']) ? $_POST['numofshouts'] : "10")."',
    maintenance='".(isNum($_POST['maintenance']) ? $_POST['maintenance'] : "0")."',
    maintenance_message='".descript($_POST['maintenance_message'])."'
    ");
    redirect(FUSION_SELF);
    }
    $settings2 = dbarray(dbquery("SELECT * FROM ".$db_prefix."settings"));
    opentable($locale['650']);
    echo "<table align='center' cellpadding='0' cellspacing='1' width='500' class='tbl-border'>\n<tr>
    <td width='25%' align='center' class='tbl2'><span class='small'><a href='settings_photo.php' title='".$locale['600']."'>".$locale['751']."</a></span></td>
    <td width='50%' align='center' class='tbl1'><span class='small'><b>".$locale['650']."</b></span></td>
    <td width='25%' align='center' class='tbl2'><span class='small'><a href='settings_messages.php' title='".$locale['700']."'>".$locale['752']."</a></span></td>
    </tr>\n</table><br>\n";
    echo "<form name='settingsform' method='post' action='".FUSION_SELF."'>
    <table align='center' cellpadding='0' cellspacing='0' width='500'>
    <tr>
    <td width='50%' class='tbl'>".$locale['660']."</td>
    <td width='50%' class='tbl'><input type='text' name='db_backup_folder' value='".$settings2['db_backup_folder']."' maxlength='200' class='textbox' style='width:200px;'></td>
    </tr>
    <tr>
    <td width='50%' class='tbl'>".$locale['662']."<br>
    <span class='small2'>".$locale['663']."</span></td>
    <td width='50%' class='tbl'><select name='tinymce_enabled' class='textbox'>
    <option value='1'".($settings2['tinymce_enabled'] == "1" ? " selected" : "").">".$locale['508']."</option>
    <option value='0'".($settings2['tinymce_enabled'] == "0" ? " selected" : "").">".$locale['509']."</option>
    </select></td>
    </tr>
    <tr>
    <td width='50%' class='tbl'>".$locale['664']."<br>
    <span class='small2'>".$locale['665']."</span></td>
    <td width='50%' class='tbl'><input type='text' name='smtp_host' value='".$settings2['smtp_host']."' maxlength='200' class='textbox' style='width:200px;'></td>
    </tr>
    <tr>
    <td width='50%' class='tbl'>".$locale['666']."</td>
    <td width='50%' class='tbl'><input type='text' name='smtp_username' value='".$settings2['smtp_username']."' maxlength='100' class='textbox' style='width:200px;'></td>
    </tr>
    <tr>
    <td width='50%' class='tbl'>".$locale['667']."</td>
    <td width='50%' class='tbl'><input type='password' name='smtp_password' value='".$settings2['smtp_password']."' maxlength='100' class='textbox' style='width:200px;'></td>
    </tr>
    <tr>
    <td width='50%' class='tbl'>".$locale['659']."</td>
    <td width='50%' class='tbl'><select name='bad_words_enabled' class='textbox'>
    <option value='1'".($settings2['bad_words_enabled'] == "1" ? " selected" : "").">".$locale['508']."</option>
    <option value='0'".($settings2['bad_words_enabled'] == "0" ? " selected" : "").">".$locale['509']."</option>
    </select></td>
    </tr>
    <tr><td valign='top' width='50%' class='tbl'>".$locale['651']."<br>
    <span class='small2'>".$locale['652']."<br>
    ".$locale['653']."</span></td>
    <td width='50%' class='tbl'><textarea name='bad_words' rows='5' class='textbox' style='width:250px;'>".$settings2['bad_words']."</textarea></td>
    </tr>
    <tr>
    <td width='50%' class='tbl'>".$locale['654']."</td>
    <td width='50%' class='tbl'><input type='text' name='bad_word_replace' value='".$settings2['bad_word_replace']."' maxlength='128' class='textbox' style='width:200px;'></td>
    </tr>
    <tr>
    <td width='50%' class='tbl'>".$locale['655']."</td>
    <td width='50%' class='tbl'><select name='guestposts' class='textbox'>
    <option value='1'".($settings2['guestposts'] == "1" ? " selected" : "").">".$locale['508']."</option>
    <option value='0'".($settings2['guestposts'] == "0" ? " selected" : "").">".$locale['509']."</option>
    </select></td>
    </tr>
    <tr>
    <td width='50%' class='tbl'>".$locale['656']."</td>
    <td width='50%' class='tbl'>
    <select name='numofshouts' class='textbox'>
    <option".($settings2['numofshouts'] == 5 ? " selected" : "").">5</option>
    <option".($settings2['numofshouts'] == 10 ? " selected" : "").">10</option>
    <option".($settings2['numofshouts'] == 15 ? " selected" : "").">15</option>
    <option".($settings2['numofshouts'] == 20 ? " selected" : "").">20</option>
    </select>
    </td>
    </tr>
    <tr>
    <td width='50%' class='tbl'>".$locale['657']."</td>
    <td width='50%' class='tbl'><select name='maintenance' class='textbox' style='width:50px;'>
    <option value='1'".($settings2['maintenance'] == "1" ? " selected" : "").">".$locale['502']."</option>
    <option value='0'".($settings2['maintenance'] == "0" ? " selected" : "").">".$locale['503']."</option>
    </select></td>
    </tr>
    <tr><td valign='top' width='50%' class='tbl'>".$locale['658']."</td>
    <td width='50%' class='tbl'><textarea name='maintenance_message' rows='5' class='textbox' style='width:250px;'>".stripslashes($settings2['maintenance_message'])."</textarea></td>
    </tr>
    <tr>
    <td align='center' colspan='2' class='tbl'><br>
    <input type='submit' name='savesettings' value='".$locale['750']."' class='button'></td>
    </tr>
    </table>
    </form>\n";
    closetable();
    echo "</td>\n";
    require_once BASEDIR."footer.php";
    ?>
    Last edited by Reesey; 10-20-2007 at 06:42 AM.

+ Reply to Thread

Similar Threads

  1. email settings - still having problem
    By Burnjob in forum Free Hosting
    Replies: 11
    Last Post: 10-21-2007, 07:56 AM
  2. Email Settings
    By Burnjob in forum Free Hosting
    Replies: 5
    Last Post: 10-19-2007, 01:16 PM
  3. mobilog settings
    By nerocafe in forum Free Hosting
    Replies: 1
    Last Post: 09-19-2007, 08:52 AM
  4. Call of Duty 2
    By Nathan in forum Gamer's Lounge
    Replies: 13
    Last Post: 10-02-2005, 01:34 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers