
-v2.7. -Update documentation. -Update installation docs to reflect latest PHP. -Remove mySQL requirements. -Remove 'odf' support, change to 'odt' support. -Specifically define $URLEcho to fix undefined variable warnings. -Added $ShowGUI config variable for determining whether to show a full or minimal GUI. -Detects if the variable is set and manually defines $_GET['noGUI']. -Has the same function as $_GET['noGUI']. -If users don't have this variable set in their config.php file then a full GUI will be shown. -HRConvert2 looks best when you use it in an iframe on your website. -Fixed some if/while/foreach statements not having whitespace before the opening '('. -Removed reference to $UserID in logs. -Verified that all PDFWork is capable of functioning. -Verified that all document conversions are capable of functioning. -Reworked the way archives are extracted & compressed. -Improved logging during dearchiving. -Added $ApplicationName & $ApplicationTitle config entries in config.php. -If these are not set; defaults are used instead. -Upgraded to JQuery 3.6.0 from 3.3.1. -Remove 3.3.1 & 3.1.0 legacy versions as they are no longer required. -Added $ShowFinePrint config entry to config.php for showing or hiding the TOS & PP links. -If this is not set; a default is used instead. -Fixed noGUI mode so that the divs are centered & the produced HTML is valid. -Cleaned up some sloppy assignments in dearch/rearch code. -Move temporary archive location to ConvertDir from ConvertTempDir. -Improved consistency of UI elements. -Switched dearchive code from using the 7z e switch to the 7z x switch to preserve paths. -Fixed a bug in rar archive output paths. -Changed the rar archiving arguments from "rar a -ep " to "rar a -ep1 -r" to preserve folder structure. -Verified that all extraction / rearchiving operations work. -Remove $Thorough & $HighPerformanceAV from config.php as they were no longer applicable. -Reworked the way sanitizeCore.php converts strings into arrays. -Changed $VirusScan config entry default value from '1' to TRUE. -The core will still recognize '1' as a valid entry to support legacy config files. -Remove tar.bz2 option from archiveAll menu. -Rework the way archiveAll feature is accomplished. -Improve logging consistencies. -Remove old iPhone code from index.html. -This is easier to accomplish with screen size anyway.
21 lines
No EOL
913 B
HTML
21 lines
No EOL
913 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<title>HRConvert2 | HRConvert2 Authentication</title>
|
|
<body>
|
|
<div id="outer" align="center"><h1>Configuring HRConvert2 ...</h1>
|
|
|
|
<div id="inner" style="position:absolute; top:50%; left:50%; height:10em; margin-top:-5em; margin-right:5em;"><strong>Please wait . . .</strong></div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
|
|
// Set the URL below to the page the user is sent to if their screensize is UNDER the specified number of pixels.
|
|
if (screen.width <= 699) { document.location = "/HRProprietary/HRConvert2/convertCore.php"; }
|
|
// / Set the URL below to the page the user is sent to if their screensize is OVER the specified number of pixels.
|
|
if (screen.width >= 700) { document.location = "/HRProprietary/HRConvert2/convertCore.php"; }
|
|
|
|
</script>
|
|
|
|
<meta id="IfNothingHappens" http-equiv="refresh" content="5"; url="/HRProprietary/HRConvert2/convertCore.php" >
|
|
|
|
</body>
|
|
</html> |