| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,64 @@ |
| 1 |
+<?php |
|
| 2 |
+// ---------------------------------------------------------------------- |
|
| 3 |
+// eFiction 3.0 |
|
| 4 |
+// Copyright (c) 2007 by Tammy Keefer |
|
| 5 |
+// Valid HTML 4.01 Transitional |
|
| 6 |
+// Based on eFiction 1.1 |
|
| 7 |
+// Copyright (C) 2003 by Rebecca Smallwood. |
|
| 8 |
+// http://efiction.sourceforge.net/ |
|
| 9 |
+// ---------------------------------------------------------------------- |
|
| 10 |
+// LICENSE |
|
| 11 |
+// |
|
| 12 |
+// This program is free software; you can redistribute it and/or |
|
| 13 |
+// modify it under the terms of the GNU General Public License (GPL) |
|
| 14 |
+// as published by the Free Software Foundation; either version 2 |
|
| 15 |
+// of the License, or (at your option) any later version. |
|
| 16 |
+// |
|
| 17 |
+// This program is distributed in the hope that it will be useful, |
|
| 18 |
+// but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 19 |
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 20 |
+// GNU General Public License for more details. |
|
| 21 |
+// |
|
| 22 |
+// To read the license please visit http://www.gnu.org/copyleft/gpl.html |
|
| 23 |
+// ---------------------------------------------------------------------- |
|
| 24 |
+ |
|
| 25 |
+if(!defined("_CHARSET")) exit( );
|
|
| 26 |
+$expVer = explode(".", $version);
|
|
| 27 |
+$confirm = isset($_GET['confirm']) ? $_GET['confirm'] : false; |
|
| 28 |
+ |
|
| 29 |
+// silly converted update script... just to further convert collation in some tables |
|
| 30 |
+ |
|
| 31 |
+// messy version check, starting with version 3.5.9 |
|
| 32 |
+if($expVer[0] == 3 && ($expVer[1] == 5 || $expVer[1] >=6 && (!isset($expVer[2]) || $expVer[2] == 9 || $expVer[2] > 0))) {
|
|
| 33 |
+if($confirm == "yes") {
|
|
| 34 |
+ // For converting certain fields to a chosen collation, starting with versions 3.5.9 |
|
| 35 |
+ if($expVer[0] == 3 && ($expVer[1] == 5 || $expVer[1] >=6 && (!isset($expVer[2]) || $expVer[2] == 9 || $expVer[2] > 0))) {
|
|
| 36 |
+ dbquery("ALTER TABLE ".TABLEPREFIX."fanfiction_authors CHANGE `penname` `penname` VARCHAR(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_ai_ci NOT NULL DEFAULT '', CHANGE `realname` `realname` VARCHAR(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_ai_ci NOT NULL DEFAULT '';");
|
|
| 37 |
+ dbquery("ALTER TABLE ".TABLEPREFIX."fanfiction_categories CHANGE `category` `category` VARCHAR(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_ai_ci NOT NULL DEFAULT '';");
|
|
| 38 |
+ dbquery("ALTER TABLE ".TABLEPREFIX."fanfiction_characters CHANGE `charname` `charname` VARCHAR(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_ai_ci NOT NULL DEFAULT '';");
|
|
| 39 |
+ dbquery("ALTER TABLE ".TABLEPREFIX."fanfiction_favorites CHANGE `type` `type` CHAR(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_ai_ci NOT NULL;");
|
|
| 40 |
+ dbquery("ALTER TABLE ".TABLEPREFIX."fanfiction_ratings CHANGE `rating` `rating` VARCHAR(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_ai_ci NOT NULL DEFAULT '';");
|
|
| 41 |
+ dbquery("ALTER TABLE ".TABLEPREFIX."fanfiction_series CHANGE `title` `title` VARCHAR(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_ai_ci NOT NULL DEFAULT '', CHANGE `summary` `summary` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_ai_ci NOT NULL;");
|
|
| 42 |
+ dbquery("ALTER TABLE ".TABLEPREFIX."fanfiction_stories CHANGE `title` `title` VARCHAR(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_ai_ci NOT NULL DEFAULT 'Untitled', CHANGE `summary` `summary` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_ai_ci NULL DEFAULT NULL;");
|
|
| 43 |
+ $alltables = dbquery("SHOW TABLES");
|
|
| 44 |
+ } |
|
| 45 |
+ $update = dbquery("UPDATE ".$settingsprefix."fanfiction_settings SET version = '$version' WHERE sitekey ='".SITEKEY."'");
|
|
| 46 |
+ $alltables = dbquery("SHOW TABLES");
|
|
| 47 |
+ while ($table = dbassoc($alltables)) {
|
|
| 48 |
+ foreach ($table as $db => $tablename) {
|
|
| 49 |
+ dbquery("OPTIMIZE TABLE `".$tablename."`");
|
|
| 50 |
+ } |
|
| 51 |
+ } |
|
| 52 |
+ if($update) $output .= write_message(_ACTIONSUCCESSFUL); |
|
| 53 |
+ else $output .= write_error(_ERROR); |
|
| 54 |
+} |
|
| 55 |
+else if($confirm == "no") {
|
|
| 56 |
+ $output .= write_message(_ACTIONCANCELLED); |
|
| 57 |
+} |
|
| 58 |
+else {
|
|
| 59 |
+ $output .= write_message("Some fields in this setup will be converted to Unicode 14.0. You should run the eFiction 3 Mod conversion first. You are advised to back up your database before starting! <br />
|
|
| 60 |
+Are you ready to convert to Unicode 14.0? <a href='admin.php?action=convert&conv=convert_1400&confirm=yes'>"._YES."</a> "._OR." <a href='admin.php?action=convert&conv=convert_1400&confirm=no'>"._NO."</a>"); |
|
| 61 |
+} |
|
| 62 |
+} |
|
| 63 |
+else $output .= write_message(_ALREADYUPDATED); |
|
| 64 |
+?> |