Changeset 890
- Timestamp:
- Dec 27, 2022, 8:10:29 PM (23 months ago)
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/dbc_export
- Property svn:ignore
-
old new 3 3 backup 4 4 DBCExport.lps 5 DBCExport.res 5 6 lib
-
- Property svn:ignore
-
tools/dbc_export/ReadMe.txt
r335 r890 6 6 1) Pro správné přeložení instalujte balíčky 7 7 8 yum install mysql mysql-devel 8 Ubuntu: sudo apt install libmysqlclient-dev 9 Fedora: dnf install mysql mysql-devel 10 -
trunk/Application/UpdateTrace.php
r888 r890 2970 2970 { 2971 2971 $Manager->Execute('ALTER TABLE `Referrer` CHANGE `LastIP` `LastIP` VARCHAR(46) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL;'); 2972 $Manager->Execute('ALTER TABLE `ExportTask` CHANGE `Progress` `Progress` DOUBLE(5,2) NOT NULL;'); 2972 2973 } 2973 2974 -
trunk/Modules/Export/ProcessTask.php
r889 r890 109 109 // Delete old files 110 110 $this->DeleteOldFiles($Export->TempDir.'dbc'); 111 if (file_exists($Export->TempDir.'CzWoW_DBC.zip')) unlink($Export->TempDir.'CzWoW_DBC.zip'); 111 if (file_exists($Export->TempDir.'CzWoW_DBC.zip')) 112 { 113 unlink($Export->TempDir.'CzWoW_DBC.zip'); 114 } 112 115 113 116 $this->SetProgress(20);
Note:
See TracChangeset
for help on using the changeset viewer.