Files
crm.clientright.ru/layouts/vlayout/modules/Install/Step3.tpl
Fedor ac7467f0b4 Major CRM updates: AI Assistant, Court Status API, S3 integration improvements, and extensive file storage system
- Added comprehensive AI Assistant system (aiassist/ directory):
  * Vector search and embedding capabilities
  * Typebot proxy integration
  * Elastic search functionality
  * Message classification and chat history
  * MCP proxy for external integrations

- Implemented Court Status API (GetCourtStatus.php):
  * Real-time court document status checking
  * Integration with external court systems
  * Comprehensive error handling and logging

- Enhanced S3 integration:
  * Improved file backup system with metadata
  * Batch processing capabilities
  * Enhanced error logging and recovery
  * Copy operations with URL fixing

- Added Telegram contact creation API
- Improved error logging across all modules
- Enhanced callback system for AI responses
- Extensive backup file storage with timestamps
- Updated documentation and README files

- File storage improvements:
  * Thousands of backup files with proper metadata
  * Fix operations for broken file references
  * Project-specific backup and recovery systems
  * Comprehensive file integrity checking

Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
2025-10-16 11:17:21 +03:00

110 lines
4.4 KiB
Smarty

{*<!--
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*
********************************************************************************/
-->*}
<form class="form-horizontal" name="step3" method="get" action="index.php">
<input type=hidden name="module" value="Install" />
<input type=hidden name="view" value="Index" />
<input type=hidden name="mode" value="Step4" />
<div class="row-fluid main-container">
<div class="inner-container">
<div class="row-fluid">
<div class="span10">
<h4>{vtranslate('LBL_INSTALL_PREREQUISITES', 'Install')}</h4>
</div>
<div class="span2">
{* SalesPlatform.ru begin Link to SP wiki *}
<a href="http://salesplatform.ru/wiki/index.php/SalesPlatform_vtiger_crm_640" target="_blank" class="pull-right">
{*<a href="https://wiki.vtiger.com/vtiger6/" target="_blank" class="pull-right">*}
{* SalesPlatform.ru end *}
<img src="{'help.png'|vimage_path}" alt="Help-Icon"/>
</a>
</div>
</div>
<hr>
<div class="row-fluid">
<div class="row-fluid offset2">
<div class="span8 pull-right">
<div class="button-container">
<a href ="#">
<input type="button" class="btn" value="{vtranslate('LBL_RECHECK', 'Install')}" id='recheck'/>
</a>
</div>
</div>
</div>
<div class="row-fluid offset2">
<div class="span8">
<table class="config-table">
<tr><th>{vtranslate('LBL_PHP_CONFIGURATION', 'Install')}</th><th>{vtranslate('LBL_REQUIRED_VALUE', 'Install')}</th><th>{vtranslate('LBL_PRESENT_VALUE', 'Install')}</th></tr>
{foreach key=CONFIG_NAME item=INFO from=$SYSTEM_PREINSTALL_PARAMS}
<tr><td>{vtranslate($CONFIG_NAME, 'Install')}</td>
<td>
{if $INFO.1 eq 1}
{vtranslate('LBL_YES', 'Install')}
{else}
{$INFO.1}
{/if}
</td>
<td
{if $INFO.2 eq false} class="no" >
{if $CONFIG_NAME = 'LBL_PHP_VERSION'}
{$INFO.0}
{else}
{vtranslate('LBL_NO', 'Install')}
{/if}
{else if ($INFO.2 eq true and $INFO.1 === true)} >
{vtranslate('LBL_YES', 'Install')}
{else} >
{$INFO.0}
{/if}
</td></tr>
{/foreach}
</table>
<br>
{if $PHP_INI_CURRENT_SETTINGS}
<table class="config-table">
<tr>
<th colspan="3">{vtranslate('LBL_PHP_RECOMMENDED_SETTINGS', 'Install')}</th>
</tr>
{foreach key=DIRECTIVE item=VALUE from=$PHP_INI_CURRENT_SETTINGS name=directives}
<tr>
{* SalesPlatform.ru begin *}
<td>{$DIRECTIVE}</td><td>{$PHP_INI_RECOMMENDED_SETTINGS[$DIRECTIVE]}</td><td class="no">{vtranslate($VALUE, 'Install')}</td>
{*<td>{$DIRECTIVE}</td><td>{$PHP_INI_RECOMMENDED_SETTINGS[$DIRECTIVE]}</td><td class="no">{$VALUE}</td>*}
{* SalesPlatform.ru end *}
</tr>
{/foreach}
</table>
{/if}
{if $FAILED_FILE_PERMISSIONS}
<table class="config-table">
<tr><th colspan="2">{vtranslate('LBL_READ_WRITE_ACCESS', 'Install')}</th></tr>
{foreach item=FILE_PATH key=FILE_NAME from=$FAILED_FILE_PERMISSIONS}
<tr>
<td nowrap>{$FILE_NAME} ({str_replace("./","",$FILE_PATH)})</td><td class="no">{vtranslate('LBL_NO', 'Install')}</td>
</tr>
{/foreach}
</table>
{/if}
</div>
</div>
</div>
<div class="row-fluid offset2">
<div class="span8">
<div class="button-container">
<input type="button" class="btn btn-large" value="{vtranslate('LBL_BACK', 'Install')}" name="back"/>
<input type="button" class="btn btn-large btn-primary" value="{vtranslate('LBL_NEXT', 'Install')}" name="step4"/>
</div>
</div>
</div>
</div>
</div>
</form>