- 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.
37 lines
1.3 KiB
PHP
37 lines
1.3 KiB
PHP
<?php if(option('env') > ENV_PRODUCTION && option('debug')): ?>
|
|
<?php if(!$is_http_error): ?>
|
|
<p>[<?php echo error_type($errno)?>]
|
|
<?php echo $errstr?> (in <strong><?php echo $errfile?></strong> line <strong><?php echo $errline?></strong>)
|
|
</p>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if($debug_args = set('_lim_err_debug_args')): ?>
|
|
<h2 id="debug-arguments">Debug arguments</h2>
|
|
<pre><code><?php echo h(print_r($debug_args, true))?></code></pre>
|
|
<?php endif; ?>
|
|
|
|
<h2 id="limonade-options">Options</strong></h2>
|
|
<pre><code><?php echo h(print_r(option(), true))?></code></pre>
|
|
<p class="bt top"><a href="#header">[ ↑ ]</a></p>
|
|
|
|
<h2 id="environment">Environment</h2>
|
|
<pre><code><?php echo h(print_r(env(), true))?></code></pre>
|
|
<p class="bt top"><a href="#header">[ ↑ ]</a></p>
|
|
|
|
<h2 id="debug-backtrace">Backtrace</h2>
|
|
<pre><code><?php echo h(print_r(debug_backtrace(), true))?></code></pre>
|
|
<p class="bt top"><a href="#header">[ ↑ ]</a></p>
|
|
|
|
<div id="debug-menu">
|
|
|
|
<?php if($debug_args = set('_lim_err_debug_args')): ?>
|
|
<a href="#debug-arguments">Debug arguments</a> |
|
|
<?php endif; ?>
|
|
<a href="#limonade-options">Options</a> |
|
|
<a href="#environment">Environment</a> |
|
|
<a href="#debug-backtrace">Backtrace</a> |
|
|
<a href="#header">[ ↑ ]</a>
|
|
</div>
|
|
|
|
<?php endif; ?>
|