Fix: Corrige errores en recurrentes y limpia el repositorio
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/logs/
|
||||
@@ -18,6 +18,7 @@ Options -Indexes +FollowSymLinks -MultiViews
|
||||
# Excluir archivos específicos de la verificación de sesión
|
||||
RewriteCond %{REQUEST_URI} !^/login\.php [NC]
|
||||
RewriteCond %{REQUEST_URI} !^/assets/ [NC]
|
||||
RewriteCond %{REQUEST_URI} !^/galeria/ [NC]
|
||||
RewriteCond %{REQUEST_URI} !^/translate_proxy\.php [NC]
|
||||
RewriteCond %{REQUEST_URI} !\.(css|js|jpe?g|png|gif|ico|svg|woff2?|ttf|eot|json|txt|map)$ [NC]
|
||||
|
||||
|
||||
@@ -419,4 +419,23 @@ html[data-bs-theme="dark"] td:nth-child(3) span {
|
||||
padding: 0.875rem 1.25rem;
|
||||
font-size: 1.2rem;
|
||||
white-space: nowrap; /* Evita que el texto se rompa en varias líneas */
|
||||
}
|
||||
|
||||
/* Preview modal styles */
|
||||
#previewModalBody img {
|
||||
max-width: 100% !important;
|
||||
height: auto !important;
|
||||
border-radius: 8px !important;
|
||||
margin: 10px 0 !important;
|
||||
box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
|
||||
}
|
||||
|
||||
[data-bs-theme="dark"] #previewModalBody img {
|
||||
box-shadow: 0 4px 8px rgba(0,0,0,0.5) !important;
|
||||
}
|
||||
|
||||
/* Ensure modal content is scrollable if needed */
|
||||
#previewModalBody {
|
||||
max-height: 70vh;
|
||||
overflow-y: auto;
|
||||
}
|
||||
10
clear_opcache.php
Normal file
10
clear_opcache.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
// Clear PHP opcache if enabled
|
||||
if (function_exists('opcache_reset')) {
|
||||
opcache_reset();
|
||||
echo "PHP opcache cleared.\n";
|
||||
}
|
||||
|
||||
// Clear file cache
|
||||
clearstatcache();
|
||||
echo "File stat cache cleared.\n";
|
||||
@@ -73,7 +73,7 @@ if ($is_cli) {
|
||||
}
|
||||
$app_url = getEnvVar('APP_URL');
|
||||
if ($app_url) {
|
||||
define('BOT_BASE_URL', $app_url);
|
||||
define('BOT_BASE_URL', trim($app_url, ' "\''));
|
||||
} else {
|
||||
define('BOT_BASE_URL', $protocol . '://' . $_SERVER['HTTP_HOST']);
|
||||
}
|
||||
|
||||
@@ -304,7 +304,7 @@ require_once __DIR__ . '/templates/header.php';
|
||||
} else {
|
||||
foreach ($files as $file) {
|
||||
if (is_file($gallery_path . '/' . $file)) {
|
||||
echo '<div class="col-lg-3 col-md-4 col-sm-6 mb-4 text-center"><img src="galeria/' . htmlspecialchars($file) . '" class="img-fluid img-thumbnail gallery-item" style="cursor:pointer;" alt="' . htmlspecialchars($file) . '"><p class="small text-muted mt-1">' . htmlspecialchars($file) . '</p></div>';
|
||||
echo '<div class="col-lg-3 col-md-4 col-sm-6 mb-4 text-center"><img src="' . site_url('galeria/' . $file) . '" class="img-fluid img-thumbnail gallery-item" style="cursor:pointer;" alt="' . htmlspecialchars($file) . '"><p class="small text-muted mt-1">' . htmlspecialchars($file) . '</p></div>';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
47
direct_check.php
Normal file
47
direct_check.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
error_reporting(E_ALL);
|
||||
ini_set('display_errors', 1);
|
||||
|
||||
require_once __DIR__ . '/includes/db.php';
|
||||
|
||||
echo "=== VERIFICACIÓN DIRECTA DE LA BASE DE DATOS ===\n\n";
|
||||
|
||||
// Check recurrent_messages
|
||||
echo "--- Tabla: recurrent_messages ---\n";
|
||||
$stmt = $pdo->query("SELECT id, message_content FROM recurrent_messages WHERE message_content LIKE '%galeria%'");
|
||||
$count = 0;
|
||||
while ($row = $stmt->fetch()) {
|
||||
if (!$row['message_content']) continue;
|
||||
|
||||
// Count img tags
|
||||
preg_match_all('/<img/', $row['message_content'], $img_matches);
|
||||
$img_count = count($img_matches[0]);
|
||||
|
||||
if ($img_count > 0) {
|
||||
$count++;
|
||||
echo "ID {$row['id']}: $img_count imágenes\n";
|
||||
|
||||
// Extract and show ALL src attributes
|
||||
preg_match_all('/src="[^"]*"/', $row['message_content'], $src_matches);
|
||||
foreach ($src_matches[0] as $src) {
|
||||
echo " -> $src\n";
|
||||
}
|
||||
if (count($src_matches[0]) === 0) {
|
||||
echo " -> (no src found, raw content preview: " . substr($row['message_content'], 0, 300) . ")\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
echo "\nTotal con imágenes: $count\n\n";
|
||||
|
||||
// Also check messages table
|
||||
echo "--- Tabla: messages ---\n";
|
||||
$stmt = $pdo->query("SELECT id, content FROM messages WHERE content LIKE '%galeria%' LIMIT 5");
|
||||
while ($row = $stmt->fetch()) {
|
||||
if (!$row['content']) continue;
|
||||
|
||||
preg_match_all('/src="[^"]*"/', $row['content'], $src_matches);
|
||||
if (count($src_matches[0]) > 0) {
|
||||
echo "ID {$row['id']}: " . implode(' | ', array_slice($src_matches[0], 0, 3)) . "\n";
|
||||
}
|
||||
}
|
||||
@@ -130,7 +130,7 @@ require_once __DIR__ . '/templates/header.php';
|
||||
} else {
|
||||
foreach ($files as $file) {
|
||||
if (is_file($gallery_path . '/' . $file)) {
|
||||
echo '<div class="col-lg-3 col-md-4 col-sm-6 mb-4 text-center"><img src="galeria/' . htmlspecialchars($file) . '" class="img-fluid img-thumbnail gallery-item" style="cursor:pointer;" alt="' . htmlspecialchars($file) . '"><p class="small text-muted mt-1">' . htmlspecialchars($file) . '</p></div>';
|
||||
echo '<div class="col-lg-3 col-md-4 col-sm-6 mb-4 text-center"><img src="' . site_url('galeria/' . $file) . '" class="img-fluid img-thumbnail gallery-item" style="cursor:pointer;" alt="' . htmlspecialchars($file) . '"><p class="small text-muted mt-1">' . htmlspecialchars($file) . '</p></div>';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -86,7 +86,7 @@ require_once __DIR__ . '/templates/header.php';
|
||||
} else {
|
||||
foreach ($files as $file) {
|
||||
if (is_file($gallery_path . '/' . $file)) {
|
||||
echo '<div class="col-lg-3 col-md-4 col-sm-6 mb-4 text-center"><img src="galeria/' . htmlspecialchars($file) . '" class="img-fluid img-thumbnail gallery-item" style="cursor:pointer;" alt="' . htmlspecialchars($file) . '"><p class="small text-muted mt-1">' . htmlspecialchars($file) . '</p></div>';
|
||||
echo '<div class="col-lg-3 col-md-4 col-sm-6 mb-4 text-center"><img src="' . site_url('galeria/' . $file) . '" class="img-fluid img-thumbnail gallery-item" style="cursor:pointer;" alt="' . htmlspecialchars($file) . '"><p class="small text-muted mt-1">' . htmlspecialchars($file) . '</p></div>';
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -193,11 +193,19 @@ $(document).ready(function() {
|
||||
// Preview message function
|
||||
function previewMessage(content) {
|
||||
const previewModalBody = document.getElementById('previewModalBody');
|
||||
// Replace image URLs with absolute paths for preview
|
||||
const baseUrl = "<?php echo $base_url; ?>";
|
||||
let processedContent = content.replace(/src="galeria\//g, 'src="' + baseUrl + 'galeria/');
|
||||
const modalElement = document.getElementById('previewModal');
|
||||
|
||||
// Simple cleanup - ensure all image URLs are correct
|
||||
let processedContent = content
|
||||
.replace(/src="[^"]*galeria\/([^"]+)"/g, 'src="/galeria/$1"')
|
||||
.replace(/src='[^']*galeria\/([^']+)'/g, "src='/galeria/$1'");
|
||||
|
||||
// Add proper styling to images
|
||||
processedContent = processedContent.replace(/<img([^>]*)>/g, '<img$1 style="max-width: 100%; height: auto; border-radius: 8px; margin: 10px 0;">');
|
||||
|
||||
previewModalBody.innerHTML = processedContent;
|
||||
var myModal = new bootstrap.Modal(document.getElementById('previewModal'));
|
||||
|
||||
const myModal = new bootstrap.Modal(modalElement);
|
||||
myModal.show();
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -79,7 +79,7 @@ require_once __DIR__ . '/templates/header.php';
|
||||
?>
|
||||
<div class="col-lg-3 col-md-4 col-sm-6 mb-4">
|
||||
<div class="card h-100">
|
||||
<img src="galeria/<?php echo htmlspecialchars($file); ?>" class="card-img-top" alt="<?php echo htmlspecialchars($file); ?>" style="height: 200px; object-fit: cover;">
|
||||
<img src="<?php echo site_url('galeria/' . $file); ?>" class="card-img-top" alt="<?php echo htmlspecialchars($file); ?>" style="height: 200px; object-fit: cover;">
|
||||
<div class="card-body">
|
||||
<p class="card-text small text-truncate" title="<?php echo htmlspecialchars($file); ?>"><?php echo htmlspecialchars($file); ?></p>
|
||||
</div>
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.18.0.2. Set the 'ServerName' directive globally to suppress this message
|
||||
@@ -1,25 +0,0 @@
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 44) already running
|
||||
httpd (pid 46) already running
|
||||
httpd (pid 46) already running
|
||||
httpd (pid 46) already running
|
||||
httpd (pid 45) already running
|
||||
httpd (pid 45) already running
|
||||
httpd (pid 45) already running
|
||||
227169
logs/discord_bot.log
227169
logs/discord_bot.log
File diff suppressed because it is too large
Load Diff
@@ -1,460 +0,0 @@
|
||||
[2025-11-27 21:14:56] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-27 21:14:56] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-27 21:14:58] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-27 21:14:58] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-27 21:14:58] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Hi","source":"en","target":"es","format":"text"}
|
||||
[2025-11-27 21:15:00] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Hola"}
|
||||
|
||||
[2025-11-27 21:21:06] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-27 21:21:06] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-27 21:21:09] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-27 21:21:09] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-27 21:21:09] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Hi","source":"en","target":"es","format":"text"}
|
||||
[2025-11-27 21:21:09] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Hola"}
|
||||
|
||||
[2025-11-27 21:21:09] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducci\u00f3n a","source":"es","target":"es","format":"text"}
|
||||
[2025-11-27 21:21:09] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Traducción a"}
|
||||
|
||||
[2025-11-27 21:21:09] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducido de en \u2022 Solo t\u00fa puedes ver esto","source":"es","target":"es","format":"text"}
|
||||
[2025-11-27 21:21:09] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Traducido de en • Solo tú puedes ver esto"}
|
||||
|
||||
[2025-11-27 21:21:23] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-27 21:21:23] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-27 21:21:25] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-27 21:21:25] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-27 21:21:25] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Hola","source":"es","target":"en","format":"text"}
|
||||
[2025-11-27 21:21:25] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Hi"}
|
||||
|
||||
[2025-11-27 21:21:25] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducci\u00f3n a","source":"es","target":"en","format":"text"}
|
||||
[2025-11-27 21:21:26] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Translation to"}
|
||||
|
||||
[2025-11-27 21:21:26] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducido de es \u2022 Solo t\u00fa puedes ver esto","source":"es","target":"en","format":"text"}
|
||||
[2025-11-27 21:21:26] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Translated from is • Only you can see this"}
|
||||
|
||||
[2025-11-27 21:23:47] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-27 21:23:47] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-27 21:23:50] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-27 21:23:50] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-27 21:23:50] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Hola","source":"es","target":"en","format":"text"}
|
||||
[2025-11-27 21:23:50] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Hi"}
|
||||
|
||||
[2025-11-27 21:23:50] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducci\u00f3n a","source":"es","target":"en","format":"text"}
|
||||
[2025-11-27 21:23:50] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Translation to"}
|
||||
|
||||
[2025-11-27 21:23:50] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducido de","source":"es","target":"en","format":"text"}
|
||||
[2025-11-27 21:23:50] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Translated"}
|
||||
|
||||
[2025-11-27 21:24:51] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-27 21:24:51] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-27 21:24:51] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"\u26a0\ufe0f El mensaje ya est\u00e1 en tu idioma.","source":"es","target":"es","format":"text"}
|
||||
[2025-11-27 21:24:51] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"⚠️ El mensaje ya está en tu idioma."}
|
||||
|
||||
[2025-11-27 21:31:20] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-27 21:31:20] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-27 21:31:23] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-27 21:31:23] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-27 21:31:23] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Hi","source":"en","target":"es","format":"text"}
|
||||
[2025-11-27 21:31:23] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Hola"}
|
||||
|
||||
[2025-11-27 21:31:23] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducci\u00f3n a","source":"es","target":"es","format":"text"}
|
||||
[2025-11-27 21:31:23] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Traducción a"}
|
||||
|
||||
[2025-11-27 21:31:23] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducido de","source":"es","target":"es","format":"text"}
|
||||
[2025-11-27 21:31:23] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Traducido de"}
|
||||
|
||||
[2025-11-27 21:31:32] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-27 21:31:32] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-27 21:31:32] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Hi","source":"en","target":"es","format":"text"}
|
||||
[2025-11-27 21:31:32] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Hola"}
|
||||
|
||||
[2025-11-27 21:31:32] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducci\u00f3n a","source":"es","target":"es","format":"text"}
|
||||
[2025-11-27 21:31:32] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Traducción a"}
|
||||
|
||||
[2025-11-27 21:31:32] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducido de","source":"es","target":"es","format":"text"}
|
||||
[2025-11-27 21:31:32] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Traducido de"}
|
||||
|
||||
[2025-11-27 21:31:36] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-27 21:31:36] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-27 21:31:36] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"\u26a0\ufe0f El mensaje ya est\u00e1 en tu idioma.","source":"es","target":"en","format":"text"}
|
||||
[2025-11-27 21:31:37] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"♪ The message is already in your language."}
|
||||
|
||||
[2025-11-27 21:49:09] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-27 21:49:09] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-27 21:49:22] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-27 21:49:22] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-27 21:49:22] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"\u26a0\ufe0f El mensaje ya est\u00e1 en tu idioma.","source":"es","target":"es","format":"text"}
|
||||
[2025-11-27 21:49:22] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"⚠️ El mensaje ya está en tu idioma."}
|
||||
|
||||
[2025-11-27 21:49:27] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-27 21:49:27] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-27 21:49:29] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-27 21:49:29] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-27 21:49:29] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Hi","source":"en","target":"es","format":"text"}
|
||||
[2025-11-27 21:49:29] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Hola"}
|
||||
|
||||
[2025-11-27 21:49:29] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducci\u00f3n a","source":"es","target":"es","format":"text"}
|
||||
[2025-11-27 21:49:29] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Traducción a"}
|
||||
|
||||
[2025-11-27 21:49:29] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducido de","source":"es","target":"es","format":"text"}
|
||||
[2025-11-27 21:49:29] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Traducido de"}
|
||||
|
||||
[2025-11-30 17:36:52] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 17:36:52] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 17:37:06] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 17:37:06] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 17:38:45] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 17:38:45] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 17:38:53] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 17:38:53] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 17:41:35] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 17:41:35] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 20:04:56] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:04:56] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:05:13] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 20:05:13] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 20:07:40] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 20:07:40] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 20:08:20] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 20:08:20] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 20:08:56] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:08:56] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:10:29] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:10:29] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:11:40] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:11:40] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:15:00] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:15:00] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:15:56] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:15:56] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:16:56] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:16:56] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:17:30] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 20:17:30] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 20:18:50] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:18:50] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:19:00] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 20:19:00] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 20:19:15] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 20:19:15] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 20:28:34] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:28:34] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:29:34] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:29:34] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:31:43] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:31:44] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:34:09] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:34:09] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:38:28] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:38:28] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:42:00] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:42:00] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:42:41] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:42:41] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:44:03] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:44:03] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:44:51] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:44:51] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:45:52] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 20:45:52] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 20:49:20] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 20:49:20] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 21:10:27] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 21:10:27] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 21:21:03] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 21:21:03] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 21:22:13] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 21:22:13] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:02:40] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:02:40] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:08:39] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:08:39] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:10:22] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:10:22] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:13:45] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:13:45] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:18:58] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:18:58] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:20:19] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:20:19] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:20:25] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 22:20:25] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 22:22:13] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:22:13] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:23:38] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:23:38] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:26:10] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:26:10] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:28:35] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:28:35] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:31:04] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:31:04] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:35:52] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:35:52] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:37:48] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:37:48] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:39:32] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:39:32] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:47:31] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:47:31] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:49:12] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:49:12] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:54:12] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:54:12] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:54:39] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:54:39] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:55:21] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-11-30 22:55:21] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:56:39] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hols"}
|
||||
[2025-11-30 22:56:39] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":0.0,"language":"en"}]
|
||||
|
||||
[2025-11-30 22:56:45] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 22:56:45] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 22:58:36] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 22:58:36] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 22:58:40] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-30 22:58:40] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-30 22:58:40] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Hola","source":"es","target":"en","format":"text"}
|
||||
[2025-11-30 22:58:40] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Hi"}
|
||||
|
||||
[2025-11-30 22:58:40] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducci\u00f3n a","source":"es","target":"en","format":"text"}
|
||||
[2025-11-30 22:58:40] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Translation to"}
|
||||
|
||||
[2025-11-30 22:58:40] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"Traducido de","source":"es","target":"en","format":"text"}
|
||||
[2025-11-30 22:58:40] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"Translated"}
|
||||
|
||||
[2025-12-01 01:34:29] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-12-01 01:34:29] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-12-03 21:39:58] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-12-03 21:40:06] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-12-03 21:46:22] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-12-03 21:46:22] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-12-03 21:47:02] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-12-03 21:47:02] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-12-03 21:49:03] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-12-03 21:49:03] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-12-03 21:52:18] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-12-03 21:52:18] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-12-03 21:57:36] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hi"}
|
||||
[2025-12-03 21:57:36] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":30.0,"language":"en"}]
|
||||
|
||||
[2025-12-04 20:39:33] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-12-04 20:39:33] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-12-04 20:39:37] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-12-04 20:39:37] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-12-04 20:39:37] LibreTranslate POST Request: URL=http://10.10.4.17:5000/translate | Data={"q":"\u26a0\ufe0f El mensaje ya est\u00e1 en tu idioma.","source":"es","target":"es","format":"text"}
|
||||
[2025-12-04 20:39:37] LibreTranslate Response: HTTP Code=200 | Body={"translatedText":"⚠️ El mensaje ya está en tu idioma."}
|
||||
|
||||
Intento de conexión 1 fallido: SQLSTATE[HY000] [2002] Network is unreachable. Reintentando en 1 segundos...
|
||||
Intento de conexión 2 fallido: SQLSTATE[HY000] [2002] Network is unreachable. Reintentando en 1 segundos...
|
||||
Intento de conexión 3 fallido: SQLSTATE[HY000] [2002] Network is unreachable. Reintentando en 1 segundos...
|
||||
No se pudo establecer la conexión después de 3 intentos.
|
||||
Error crítico de conexión a la base de datos: SQLSTATE[HY000] [2002] Network is unreachable
|
||||
PHP Fatal error: Uncaught PDOException: SQLSTATE[HY000] [2002] Network is unreachable in /var/www/html/bot/includes/db.php:74
|
||||
Stack trace:
|
||||
#0 /var/www/html/bot/includes/db.php(74): PDO->__construct()
|
||||
#1 /var/www/html/bot/includes/db.php(28): DatabaseConnection->connect()
|
||||
#2 /var/www/html/bot/includes/db.php(33): DatabaseConnection->__construct()
|
||||
#3 /var/www/html/bot/includes/db.php(113): DatabaseConnection::getInstance()
|
||||
#4 /var/www/html/bot/discord_bot.php(7): require_once('...')
|
||||
#5 {main}
|
||||
thrown in /var/www/html/bot/includes/db.php on line 74
|
||||
Intento de conexión 1 fallido: SQLSTATE[HY000] [2002] Network is unreachable. Reintentando en 1 segundos...
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
PHP Fatal error: Uncaught UnexpectedValueException: The stream or file "/var/www/html/bot/logs/discord_bot.log" could not be opened in append mode: Failed to open stream: Permission denied
|
||||
The exception occurred while attempting to log: Iniciando bot de Discord... in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:156
|
||||
Stack trace:
|
||||
#0 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(44): Monolog\Handler\StreamHandler->write()
|
||||
#1 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(391): Monolog\Handler\AbstractProcessingHandler->handle()
|
||||
#2 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(607): Monolog\Logger->addRecord()
|
||||
#3 /var/www/html/bot/discord_bot.php(31): Monolog\Logger->info()
|
||||
#4 {main}
|
||||
thrown in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 156
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
PHP Fatal error: Uncaught UnexpectedValueException: The stream or file "/var/www/html/bot/logs/discord_bot.log" could not be opened in append mode: Failed to open stream: Permission denied
|
||||
The exception occurred while attempting to log: Iniciando bot de Discord... in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:156
|
||||
Stack trace:
|
||||
#0 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(44): Monolog\Handler\StreamHandler->write()
|
||||
#1 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(391): Monolog\Handler\AbstractProcessingHandler->handle()
|
||||
#2 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(607): Monolog\Logger->addRecord()
|
||||
#3 /var/www/html/bot/discord_bot.php(31): Monolog\Logger->info()
|
||||
#4 {main}
|
||||
thrown in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 156
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
PHP Fatal error: Uncaught UnexpectedValueException: The stream or file "/var/www/html/bot/logs/discord_bot.log" could not be opened in append mode: Failed to open stream: Permission denied
|
||||
The exception occurred while attempting to log: Iniciando bot de Discord... in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:156
|
||||
Stack trace:
|
||||
#0 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(44): Monolog\Handler\StreamHandler->write()
|
||||
#1 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(391): Monolog\Handler\AbstractProcessingHandler->handle()
|
||||
#2 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(607): Monolog\Logger->addRecord()
|
||||
#3 /var/www/html/bot/discord_bot.php(31): Monolog\Logger->info()
|
||||
#4 {main}
|
||||
thrown in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 156
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
PHP Fatal error: Uncaught UnexpectedValueException: The stream or file "/var/www/html/bot/logs/discord_bot.log" could not be opened in append mode: Failed to open stream: Permission denied
|
||||
The exception occurred while attempting to log: Iniciando bot de Discord... in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:156
|
||||
Stack trace:
|
||||
#0 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(44): Monolog\Handler\StreamHandler->write()
|
||||
#1 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(391): Monolog\Handler\AbstractProcessingHandler->handle()
|
||||
#2 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(607): Monolog\Logger->addRecord()
|
||||
#3 /var/www/html/bot/discord_bot.php(31): Monolog\Logger->info()
|
||||
#4 {main}
|
||||
thrown in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 156
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
PHP Fatal error: Uncaught UnexpectedValueException: The stream or file "/var/www/html/bot/logs/discord_bot.log" could not be opened in append mode: Failed to open stream: Permission denied
|
||||
The exception occurred while attempting to log: Iniciando bot de Discord... in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:156
|
||||
Stack trace:
|
||||
#0 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(44): Monolog\Handler\StreamHandler->write()
|
||||
#1 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(391): Monolog\Handler\AbstractProcessingHandler->handle()
|
||||
#2 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(607): Monolog\Logger->addRecord()
|
||||
#3 /var/www/html/bot/discord_bot.php(31): Monolog\Logger->info()
|
||||
#4 {main}
|
||||
thrown in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 156
|
||||
Intento de conexión 1 fallido: SQLSTATE[HY000] [2002] Network is unreachable. Reintentando en 1 segundos...
|
||||
Intento de conexión 2 fallido: SQLSTATE[HY000] [2002] Network is unreachable. Reintentando en 1 segundos...
|
||||
Intento de conexión 3 fallido: SQLSTATE[HY000] [2002] Network is unreachable. Reintentando en 1 segundos...
|
||||
No se pudo establecer la conexión después de 3 intentos.
|
||||
Error crítico de conexión a la base de datos: SQLSTATE[HY000] [2002] Network is unreachable
|
||||
PHP Fatal error: Uncaught PDOException: SQLSTATE[HY000] [2002] Network is unreachable in /var/www/html/bot/includes/db.php:74
|
||||
Stack trace:
|
||||
#0 /var/www/html/bot/includes/db.php(74): PDO->__construct()
|
||||
#1 /var/www/html/bot/includes/db.php(28): DatabaseConnection->connect()
|
||||
#2 /var/www/html/bot/includes/db.php(33): DatabaseConnection->__construct()
|
||||
#3 /var/www/html/bot/includes/db.php(113): DatabaseConnection::getInstance()
|
||||
#4 /var/www/html/bot/discord_bot.php(7): require_once('...')
|
||||
#5 {main}
|
||||
thrown in /var/www/html/bot/includes/db.php on line 74
|
||||
Intento de conexión 1 fallido: SQLSTATE[HY000] [2002] Network is unreachable. Reintentando en 1 segundos...
|
||||
Intento de conexión 2 fallido: SQLSTATE[HY000] [2002] Network is unreachable. Reintentando en 1 segundos...
|
||||
Intento de conexión 3 fallido: SQLSTATE[HY000] [2002] Network is unreachable. Reintentando en 1 segundos...
|
||||
No se pudo establecer la conexión después de 3 intentos.
|
||||
Error crítico de conexión a la base de datos: SQLSTATE[HY000] [2002] Network is unreachable
|
||||
PHP Fatal error: Uncaught PDOException: SQLSTATE[HY000] [2002] Network is unreachable in /var/www/html/bot/includes/db.php:74
|
||||
Stack trace:
|
||||
#0 /var/www/html/bot/includes/db.php(74): PDO->__construct()
|
||||
#1 /var/www/html/bot/includes/db.php(28): DatabaseConnection->connect()
|
||||
#2 /var/www/html/bot/includes/db.php(33): DatabaseConnection->__construct()
|
||||
#3 /var/www/html/bot/includes/db.php(113): DatabaseConnection::getInstance()
|
||||
#4 /var/www/html/bot/discord_bot.php(7): require_once('...')
|
||||
#5 {main}
|
||||
thrown in /var/www/html/bot/includes/db.php on line 74
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
PHP Fatal error: Uncaught UnexpectedValueException: The stream or file "/var/www/html/bot/logs/discord_bot.log" could not be opened in append mode: Failed to open stream: Permission denied
|
||||
The exception occurred while attempting to log: Iniciando bot de Discord... in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:156
|
||||
Stack trace:
|
||||
#0 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(44): Monolog\Handler\StreamHandler->write()
|
||||
#1 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(391): Monolog\Handler\AbstractProcessingHandler->handle()
|
||||
#2 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(607): Monolog\Logger->addRecord()
|
||||
#3 /var/www/html/bot/discord_bot.php(31): Monolog\Logger->info()
|
||||
#4 {main}
|
||||
thrown in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 156
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
PHP Fatal error: Uncaught UnexpectedValueException: The stream or file "/var/www/html/bot/logs/discord_bot.log" could not be opened in append mode: Failed to open stream: Permission denied
|
||||
The exception occurred while attempting to log: Iniciando bot de Discord... in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:156
|
||||
Stack trace:
|
||||
#0 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(44): Monolog\Handler\StreamHandler->write()
|
||||
#1 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(391): Monolog\Handler\AbstractProcessingHandler->handle()
|
||||
#2 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(607): Monolog\Logger->addRecord()
|
||||
#3 /var/www/html/bot/discord_bot.php(31): Monolog\Logger->info()
|
||||
#4 {main}
|
||||
thrown in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 156
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
PHP Fatal error: Uncaught UnexpectedValueException: The stream or file "/var/www/html/bot/logs/discord_bot.log" could not be opened in append mode: Failed to open stream: Permission denied
|
||||
The exception occurred while attempting to log: Iniciando bot de Discord... in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:156
|
||||
Stack trace:
|
||||
#0 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(44): Monolog\Handler\StreamHandler->write()
|
||||
#1 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(391): Monolog\Handler\AbstractProcessingHandler->handle()
|
||||
#2 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(607): Monolog\Logger->addRecord()
|
||||
#3 /var/www/html/bot/discord_bot.php(31): Monolog\Logger->info()
|
||||
#4 {main}
|
||||
thrown in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 156
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
PHP Fatal error: Uncaught UnexpectedValueException: The stream or file "/var/www/html/bot/logs/discord_bot.log" could not be opened in append mode: Failed to open stream: Permission denied
|
||||
The exception occurred while attempting to log: Iniciando bot de Discord... in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:156
|
||||
Stack trace:
|
||||
#0 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(44): Monolog\Handler\StreamHandler->write()
|
||||
#1 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(391): Monolog\Handler\AbstractProcessingHandler->handle()
|
||||
#2 /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Logger.php(607): Monolog\Logger->addRecord()
|
||||
#3 /var/www/html/bot/discord_bot.php(31): Monolog\Logger->info()
|
||||
#4 {main}
|
||||
thrown in /var/www/html/bot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 156
|
||||
@@ -1,20 +0,0 @@
|
||||
Could not open input file: /var/www/html/bot/discord_bot.php
|
||||
Could not open input file: /var/www/html/bot/discord_bot.php
|
||||
Could not open input file: /var/www/html/bot/discord_bot.php
|
||||
[2025-11-27 20:36:09] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-27 20:36:09] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
[2025-11-27 20:36:16] LibreTranslate POST Request: URL=http://10.10.4.17:5000/detect | Data={"q":"Hola"}
|
||||
[2025-11-27 20:36:16] LibreTranslate Response: HTTP Code=200 | Body=[{"confidence":90.0,"language":"es"}]
|
||||
|
||||
Could not open input file: /var/www/html/bot/discord/bot/discord_bot.php
|
||||
Could not open input file: /var/www/html/bot/discord/bot/discord_bot.php
|
||||
Could not open input file: /var/www/html/bot/discord/bot/discord_bot.php
|
||||
Could not open input file: /var/www/html/bot/discord/bot/discord_bot.php
|
||||
Could not open input file: /var/www/html/bot/discord/bot/discord_bot.php
|
||||
Could not open input file: /var/www/html/bot/discord/bot/discord_bot.php
|
||||
Could not open input file: /var/www/html/bot/discord/bot/discord_bot.php
|
||||
Could not open input file: /var/www/html/bot/discord/bot/discord_bot.php
|
||||
Could not open input file: /var/www/html/bot/discord/bot/discord_bot.php
|
||||
Could not open input file: /var/www/html/bot/discord/bot/discord_bot.php
|
||||
Could not open input file: /var/www/html/bot/discord/bot/discord_bot.php
|
||||
111531
logs/php_errors.log
111531
logs/php_errors.log
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,12 +0,0 @@
|
||||
[Thu Nov 27 16:50:16.032950 2025] [authz_core:error] [pid 1751] [client 10.10.4.17:33114] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Thu Nov 27 21:43:30.230741 2025] [authz_core:error] [pid 1752] [client 10.10.4.17:46032] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Thu Nov 27 21:43:30.629449 2025] [authz_core:error] [pid 1749] [client 10.10.4.17:46044] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Thu Nov 27 21:43:31.855952 2025] [authz_core:error] [pid 7533] [client 10.10.4.17:46070] AH01630: client denied by server configuration: /var/www/html/bot/admin/.env
|
||||
[Thu Nov 27 21:43:32.789275 2025] [authz_core:error] [pid 1749] [client 10.10.4.17:46116] AH01630: client denied by server configuration: /var/www/html/bot/.env.bak
|
||||
[Thu Nov 27 21:43:33.165755 2025] [authz_core:error] [pid 1751] [client 10.10.4.17:46122] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Thu Nov 27 21:43:33.965875 2025] [authz_core:error] [pid 1753] [client 10.10.4.17:46146] AH01630: client denied by server configuration: /var/www/html/bot/.gitlab-ci.yml
|
||||
[Wed Jan 14 20:48:15.171821 2026] [authz_core:error] [pid 66895] [client 10.10.4.17:54898] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Fri Jan 16 00:50:52.850797 2026] [authz_core:error] [pid 289078] [client 10.10.4.17:56304] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Fri Jan 16 02:28:11.637455 2026] [authz_core:error] [pid 289082] [client 10.10.4.17:46890] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Fri Jan 16 20:22:11.346557 2026] [authz_core:error] [pid 1682] [client 10.10.4.17:43740] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Fri Jan 16 20:22:11.346751 2026] [authz_core:error] [pid 187674] [client 10.10.4.17:43750] AH01630: client denied by server configuration: /var/www/html/bot/.aws
|
||||
@@ -1,682 +0,0 @@
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:05:01
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
Buscando mensajes pendientes a las: 2025-11-26 03:05:00 (Timezone: America/Mexico_City)
|
||||
No hay mensajes pendientes para procesar
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:06:01
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
Buscando mensajes pendientes a las: 2025-11-26 03:06:00 (Timezone: America/Mexico_City)
|
||||
No hay mensajes pendientes para procesar
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:07:01
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
Buscando mensajes pendientes a las: 2025-11-26 03:07:00 (Timezone: America/Mexico_City)
|
||||
No hay mensajes pendientes para procesar
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:08:01
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
Buscando mensajes pendientes a las: 2025-11-26 03:08:00 (Timezone: America/Mexico_City)
|
||||
No hay mensajes pendientes para procesar
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:09:01
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
Buscando mensajes pendientes a las: 2025-11-26 03:09:00 (Timezone: America/Mexico_City)
|
||||
No hay mensajes pendientes para procesar
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:10:01
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
Buscando mensajes pendientes a las: 2025-11-26 03:10:00 (Timezone: America/Mexico_City)
|
||||
No hay mensajes pendientes para procesar
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:11:01
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
Buscando mensajes pendientes a las: 2025-11-26 03:11:00 (Timezone: America/Mexico_City)
|
||||
No hay mensajes pendientes para procesar
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:12:01
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
Buscando mensajes pendientes a las: 2025-11-26 03:12:00 (Timezone: America/Mexico_City)
|
||||
No hay mensajes pendientes para procesar
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:13:01
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
Buscando mensajes pendientes a las: 2025-11-26 03:13:00 (Timezone: America/Mexico_City)
|
||||
No hay mensajes pendientes para procesar
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:14:01
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
Buscando mensajes pendientes a las: 2025-11-26 03:14:00 (Timezone: America/Mexico_City)
|
||||
No hay mensajes pendientes para procesar
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:15:01
|
||||
Conexión a la base de datos establecida correctamente.
|
||||
Buscando mensajes pendientes a las: 2025-11-26 03:15:00 (Timezone: America/Mexico_City)
|
||||
No hay mensajes pendientes para procesar
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:16:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:17:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:18:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:19:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:20:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:21:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:22:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:23:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:24:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:25:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:26:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:27:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:28:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:29:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:30:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:31:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:32:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:33:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:34:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:35:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:36:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:37:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:38:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:39:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:40:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:41:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:42:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 09:43:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 19:56:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 19:57:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 19:58:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 19:59:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:00:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:01:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:02:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:03:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:04:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:05:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:06:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:07:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:08:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:09:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:10:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:11:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:12:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:13:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:14:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:15:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:16:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:17:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:18:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:19:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:20:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:21:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:22:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:23:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:24:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:25:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:26:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:27:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:28:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:29:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:30:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:31:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:32:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:33:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:34:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:35:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:36:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:37:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:38:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:39:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:40:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:41:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:42:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:43:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:44:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:45:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:46:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:47:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:48:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:49:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:50:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:51:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:52:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:53:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:54:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:55:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:56:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:57:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:58:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 20:59:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:00:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:01:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:02:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:03:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:04:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:05:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:06:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:07:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:08:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:09:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:10:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:11:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:12:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:13:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:14:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:15:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:16:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:17:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:18:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:19:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:20:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:21:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:22:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:23:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:24:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:25:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:26:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:27:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:28:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:29:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:30:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:31:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:32:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:33:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:34:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:35:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:36:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:37:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:38:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:39:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:40:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:41:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:42:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:43:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:44:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:45:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:46:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:47:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:48:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:49:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:50:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:51:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:52:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:53:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:54:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:55:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:56:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:57:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:58:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 21:59:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:00:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:01:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:02:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:03:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:04:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:05:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:06:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:07:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:08:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:09:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:10:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:11:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:12:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:13:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:14:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:15:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:16:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:17:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:18:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:19:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:20:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:21:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:22:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:23:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:24:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:25:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:26:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:27:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:28:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:29:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:30:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:31:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:32:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:33:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:34:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:35:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:36:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:37:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:38:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:39:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:40:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:41:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:42:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-26 22:43:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:35:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:36:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:37:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:38:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:39:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:40:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:41:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:42:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:43:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:44:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:45:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:46:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:47:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:48:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:49:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:50:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:51:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:52:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:53:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:54:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:55:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:56:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:57:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:58:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 00:59:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:00:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:01:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:02:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:03:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:04:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:05:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:06:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:07:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:08:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:09:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:10:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:11:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:12:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:13:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:14:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:15:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:16:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:17:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:18:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:19:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:20:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:21:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:22:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:23:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:24:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:25:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:26:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:27:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:28:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:29:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:30:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:31:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:32:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:33:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:34:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:35:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:36:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:37:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:38:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:39:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:40:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:41:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:42:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:43:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:44:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:45:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:46:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:47:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:48:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:49:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:50:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:51:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:52:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:53:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:54:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:55:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:56:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:57:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:58:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 01:59:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:00:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:01:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:02:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:03:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:04:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:05:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:06:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:07:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:08:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:09:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:10:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:11:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:12:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:13:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:14:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:15:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:16:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:17:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:18:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:19:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:20:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:21:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:22:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:23:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:24:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:25:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:26:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:27:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:28:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:29:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:30:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:31:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:32:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:33:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:34:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:35:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:36:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:37:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:38:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:39:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:40:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:41:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:42:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:43:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:44:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:45:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:46:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:47:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:48:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:49:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:50:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:51:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:52:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:53:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:54:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:55:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:56:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:57:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:58:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 02:59:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:00:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:01:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:02:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:03:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:04:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:05:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:06:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:07:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:08:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:09:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:10:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:11:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:12:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:13:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:14:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:15:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:16:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:17:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:18:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:19:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:20:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:21:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:22:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:23:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:24:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:25:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:26:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:27:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:28:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:29:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:30:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:31:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:32:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:33:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:34:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:35:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:36:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:37:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:38:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:39:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:40:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:41:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:42:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:43:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:44:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:45:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:46:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:47:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:48:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:49:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:50:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:51:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:52:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:53:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:54:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:55:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:56:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:57:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:58:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 03:59:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:00:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:01:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:02:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:03:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:04:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:05:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:06:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:07:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:08:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:09:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:10:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:11:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:12:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:13:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:14:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:15:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:16:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:17:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:18:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:19:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:20:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:21:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:22:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:23:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:24:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:25:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:26:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:27:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:28:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:29:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:30:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:31:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:32:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:33:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:34:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:35:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:36:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:37:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:38:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:39:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:40:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:41:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:42:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:43:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:44:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:45:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:46:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:47:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:48:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:49:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:50:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:51:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:52:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:53:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:54:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:55:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:56:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:57:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:58:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 04:59:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:00:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:01:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:02:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:03:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:04:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:05:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:06:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:07:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:08:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:09:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:10:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:11:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:12:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:13:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:14:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:15:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:16:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:17:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:18:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:19:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:20:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:21:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:22:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:23:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:24:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:25:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:26:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:27:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:28:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:29:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:30:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:31:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:32:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:33:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:34:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:35:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:36:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:37:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:38:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:39:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:40:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:41:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:42:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:43:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:44:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:45:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:46:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:47:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:48:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:49:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:50:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:51:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:52:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:53:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:54:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:55:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:56:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:57:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:58:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 05:59:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:00:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:01:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:02:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:03:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:04:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:05:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:06:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:07:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:08:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:09:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:10:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:11:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:12:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:13:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:14:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:15:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:16:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:17:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:18:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:19:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:20:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:21:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:22:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:23:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:24:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:25:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:26:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:27:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:28:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:29:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:30:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:31:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:32:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:33:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:34:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:35:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:36:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:37:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:38:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:39:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:40:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:41:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:42:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:43:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:44:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:45:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:46:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:47:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:48:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:49:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:50:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:51:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:52:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:53:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:54:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:55:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:56:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:57:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 06:58:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:03:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:04:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:05:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:06:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:07:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:08:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:09:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:10:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:11:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:12:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:13:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:14:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:15:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:16:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:17:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:18:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:19:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:20:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:21:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:22:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:23:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:24:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:25:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:26:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:27:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:28:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:29:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:30:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:31:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:32:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:33:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:34:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:35:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:36:02
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:37:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:38:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:39:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:40:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:41:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:42:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:43:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:44:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:45:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:46:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:47:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:48:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:49:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:50:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:51:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:52:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:53:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:54:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:55:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:56:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:57:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:58:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 21:59:01
|
||||
Iniciando process_queue.php (REFACTORIZADO) - 2025-11-27 22:00:01
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,168 +0,0 @@
|
||||
[2025-11-26 09:05:01] {"update_id":466006671,
|
||||
"message":{"message_id":5742,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764147900,"text":"Hola"}}
|
||||
[2025-11-26 09:06:31] {"update_id":466006672,
|
||||
"message":{"message_id":5743,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764147990,"text":"Hola"}}
|
||||
[2025-11-26 09:08:43] {"update_id":466006673,
|
||||
"message":{"message_id":5744,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764148123,"text":"Hola"}}
|
||||
[2025-11-26 09:12:17] {"update_id":466006674,
|
||||
"message":{"message_id":5745,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764148336,"text":"Hola"}}
|
||||
[2025-11-26 09:14:33] {"update_id":466006675,
|
||||
"message":{"message_id":5746,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764148473,"text":"Hola"}}
|
||||
[2025-11-26 09:17:43] {"update_id":466006676,
|
||||
"message":{"message_id":5747,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764148663,"text":"Hola"}}
|
||||
[2025-11-26 09:22:58] {"update_id":466006677,
|
||||
"message":{"message_id":5748,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764148977,"text":"Hola"}}
|
||||
[2025-11-26 09:25:40] {"update_id":466006678,
|
||||
"message":{"message_id":5749,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764149139,"text":"Hola"}}
|
||||
[2025-11-26 09:26:11] {"update_id":466006679,
|
||||
"message":{"message_id":5750,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764149171,"text":"Hola"}}
|
||||
[2025-11-26 09:26:37] {"update_id":466006680,
|
||||
"message":{"message_id":5751,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764149197,"text":"Hola"}}
|
||||
[2025-11-26 09:28:51] {"update_id":466006681,
|
||||
"message":{"message_id":5770,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764149330,"text":"Hola como est\u00e1n?"}}
|
||||
[2025-11-26 09:29:20] {"update_id":466006682,
|
||||
"message":{"message_id":5772,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764149359,"text":"/agente","entities":[{"offset":0,"length":7,"type":"bot_command"}]}}
|
||||
[2025-11-26 09:29:22] {"update_id":466006683,
|
||||
"callback_query":{"id":"24555436725117767","from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"message":{"message_id":5773,"from":{"id":8469229183,"is_bot":true,"first_name":"REOD","username":"NoticiasCAOSBot"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764149360,"text":"\ud83d\udc4b Hola! \u00bfC\u00f3mo quieres interactuar?","reply_markup":{"inline_keyboard":[[{"text":"\ud83e\udd16 Platicar con bot","callback_data":"platicar_bot"},{"text":"\ud83e\udde0 Usar IA","callback_data":"usar_ia"}]]}},"chat_instance":"-6219953176930160984","data":"usar_ia"}}
|
||||
[2025-11-26 09:29:32] {"update_id":466006684,
|
||||
"message":{"message_id":5774,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764149372,"text":"Me puedes explicar de que es el juego?"}}
|
||||
[2025-11-26 09:31:48] {"update_id":466006685,
|
||||
"message":{"message_id":5777,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764149508,"text":"Que me puedes decir sobre el Asedio Zombie"}}
|
||||
[2025-11-26 09:34:01] {"update_id":466006686,
|
||||
"message":{"message_id":5781,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764149640,"text":"Y sobre el evento de alianza qu\u00e9 me puedes platicar?"}}
|
||||
[2025-11-26 09:38:01] {"update_id":466006687,
|
||||
"message":{"message_id":5783,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764149880,"text":"/agente","entities":[{"offset":0,"length":7,"type":"bot_command"}]}}
|
||||
[2025-11-26 09:38:03] {"update_id":466006688,
|
||||
"callback_query":{"id":"24555439868931859","from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"message":{"message_id":5784,"from":{"id":8469229183,"is_bot":true,"first_name":"REOD","username":"NoticiasCAOSBot"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764149881,"text":"\ud83d\udc4b Hola! \u00bfC\u00f3mo quieres interactuar?","reply_markup":{"inline_keyboard":[[{"text":"\ud83e\udd16 Platicar con bot","callback_data":"platicar_bot"},{"text":"\ud83e\udde0 Usar IA","callback_data":"usar_ia"}]]}},"chat_instance":"-6219953176930160984","data":"platicar_bot"}}
|
||||
[2025-11-26 09:38:09] {"update_id":466006689,
|
||||
"message":{"message_id":5785,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764149889,"text":"Como estas?"}}
|
||||
[2025-11-26 09:38:29] {"update_id":466006690,
|
||||
"message":{"message_id":5787,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764149909,"text":"Hola"}}
|
||||
[2025-11-28 18:43:36] {"update_id":466006719,
|
||||
"message":{"message_id":299,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD-B2K","is_forum":true,"type":"supergroup"},"date":1764355346,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD-B2K","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Hola a todos, hoy tenemos gusano (Marsahll) a las 6pm M\u00e9xico / 9pm Brasil / 10pm Servidor, esperando poder contar con su ayuda.","is_topic_message":true}}
|
||||
[2025-11-28 23:55:23] {"update_id":466006720,
|
||||
"message":{"message_id":301,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD-B2K","is_forum":true,"type":"supergroup"},"date":1764374122,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD-B2K","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Se activo el Marshall porque otra vez esta mal el tiempo","is_topic_message":true}}
|
||||
[2025-11-29 21:18:54] {"update_id":466006724,
|
||||
"message":{"message_id":5809,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764451134,"text":"Hola"}}
|
||||
[2025-11-29 21:23:52] {"update_id":466006725,
|
||||
"message":{"message_id":303,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD-B2K","is_forum":true,"type":"supergroup"},"date":1764451432,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD-B2K","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Hola a todos, si son observadores en el juego ya no soy R4, por lo que ya no sabr\u00e9 los horarios ni noticias sobre la alianza, as\u00ed que les avisare solo lo que publiquen para todos","is_topic_message":true}}
|
||||
[2025-11-30 00:08:50] {"update_id":466006726,
|
||||
"message":{"message_id":305,"from":{"id":1254588631,"is_bot":false,"first_name":"Marta","last_name":"Belarmino","language_code":"pt-br"},"chat":{"id":-1002810727871,"title":"REOD-B2K","is_forum":true,"type":"supergroup"},"date":1764461330,"text":"Quem vai voltar para REOD aproveite o teletransportador do vs para ir para o ponto de encontro que Alex enviou no chat"}}
|
||||
[2025-11-30 01:47:45] {"update_id":466006727,
|
||||
"message":{"message_id":307,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764467265,"new_chat_title":"REOD"}}
|
||||
[2025-11-30 01:58:06] {"update_id":466006728,
|
||||
"message":{"message_id":308,"from":{"id":1971997473,"is_bot":false,"first_name":"D","last_name":"K","username":"DanK3126","language_code":"en"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764467886,"text":"Gusano en dois minutos?"}}
|
||||
[2025-11-30 04:21:10] {"update_id":466006729,
|
||||
"message":{"message_id":310,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764476470,"text":"Hola a todos, alguien se va a quedar en B2K?"}}
|
||||
[2025-11-30 04:48:22] {"update_id":466006730,
|
||||
"message":{"message_id":4284,"from":{"id":1254588631,"is_bot":false,"first_name":"Marta","last_name":"Belarmino","language_code":"pt-br"},"chat":{"id":-1002549857229,"title":"R4s/R5 REOD","type":"supergroup"},"date":1764478102,"photo":[{"file_id":"AgACAgEAAyEFAASX-7vNAAIQvGkrzJaaYWhKo1yoYVUJsBJ0tzdOAAJpC2sbDTRgRTmouiZi9wnhAQADAgADcwADNgQ","file_unique_id":"AQADaQtrGw00YEV4","file_size":1203,"width":42,"height":90},{"file_id":"AgACAgEAAyEFAASX-7vNAAIQvGkrzJaaYWhKo1yoYVUJsBJ0tzdOAAJpC2sbDTRgRTmouiZi9wnhAQADAgADbQADNgQ","file_unique_id":"AQADaQtrGw00YEVy","file_size":14787,"width":148,"height":320},{"file_id":"AgACAgEAAyEFAASX-7vNAAIQvGkrzJaaYWhKo1yoYVUJsBJ0tzdOAAJpC2sbDTRgRTmouiZi9wnhAQADAgADeAADNgQ","file_unique_id":"AQADaQtrGw00YEV9","file_size":55084,"width":369,"height":800},{"file_id":"AgACAgEAAyEFAASX-7vNAAIQvGkrzJaaYWhKo1yoYVUJsBJ0tzdOAAJpC2sbDTRgRTmouiZi9wnhAQADAgADeQADNgQ","file_unique_id":"AQADaQtrGw00YEV-","file_size":73264,"width":590,"height":1280}]}}
|
||||
[2025-11-30 04:48:43] {"update_id":466006731,
|
||||
"message":{"message_id":4285,"from":{"id":1254588631,"is_bot":false,"first_name":"Marta","last_name":"Belarmino","language_code":"pt-br"},"chat":{"id":-1002549857229,"title":"R4s/R5 REOD","type":"supergroup"},"date":1764478123,"text":"Lu\u00eds a chamei Alex pode traduzir o que est\u00e1 na imagem"}}
|
||||
[2025-11-30 09:23:07] {"update_id":466006732,
|
||||
"message":{"message_id":5811,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-4787145544,"title":"Pruebas de grupo","type":"group","all_members_are_administrators":true,"accepted_gift_types":{"unlimited_gifts":false,"limited_gifts":false,"unique_gifts":false,"premium_subscription":false}},"date":1764494587,"text":"/agente Qu\u00e9 esperar en la temporada 4?","entities":[{"offset":0,"length":7,"type":"bot_command"}]}}
|
||||
[2025-11-30 14:32:22] {"update_id":466006733,
|
||||
"message":{"message_id":312,"from":{"id":7176119907,"is_bot":false,"first_name":"M\u00f4nica","last_name":"Wildner","language_code":"pt-br"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764513142,"text":"Ol\u00e1!\nEu vou ficar com a Male \ud83e\udd79\nMas eu amo todos voc\u00ea."}}
|
||||
[2025-11-30 15:22:57] {"update_id":466006734,
|
||||
"message":{"message_id":4287,"from":{"id":1254588631,"is_bot":false,"first_name":"Marta","last_name":"Belarmino","language_code":"pt-br"},"chat":{"id":-1002549857229,"title":"R4s/R5 REOD","type":"supergroup"},"date":1764516176,"text":"Sinto muito por tudo, boa sorte a todos."}}
|
||||
[2025-11-30 15:23:08] {"update_id":466006735,
|
||||
"message":{"message_id":4289,"from":{"id":1254588631,"is_bot":false,"first_name":"Marta","last_name":"Belarmino","language_code":"pt-br"},"chat":{"id":-1002549857229,"title":"R4s/R5 REOD","type":"supergroup"},"date":1764516188,"left_chat_participant":{"id":1254588631,"is_bot":false,"first_name":"Marta","last_name":"Belarmino","language_code":"pt-br"},"left_chat_member":{"id":1254588631,"is_bot":false,"first_name":"Marta","last_name":"Belarmino","language_code":"pt-br"}}}
|
||||
[2025-11-30 15:23:25] {"update_id":466006736,
|
||||
"message":{"message_id":314,"from":{"id":1254588631,"is_bot":false,"first_name":"Marta","last_name":"Belarmino","language_code":"pt-br"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764516205,"left_chat_participant":{"id":1254588631,"is_bot":false,"first_name":"Marta","last_name":"Belarmino","language_code":"pt-br"},"left_chat_member":{"id":1254588631,"is_bot":false,"first_name":"Marta","last_name":"Belarmino","language_code":"pt-br"}}}
|
||||
[2025-11-30 15:23:58] {"update_id":466006737,
|
||||
"message":{"message_id":315,"from":{"id":1702768688,"is_bot":false,"first_name":"Matias","username":"xMotha","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764516237,"text":"Yo igual me quedare en b2k con male, moni y mi novia, suerte a todos"}}
|
||||
[2025-11-30 15:24:21] {"update_id":466006738,
|
||||
"message":{"message_id":317,"from":{"id":1702768688,"is_bot":false,"first_name":"Matias","username":"xMotha","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764516261,"left_chat_participant":{"id":1702768688,"is_bot":false,"first_name":"Matias","username":"xMotha","language_code":"es"},"left_chat_member":{"id":1702768688,"is_bot":false,"first_name":"Matias","username":"xMotha","language_code":"es"}}}
|
||||
[2025-11-30 15:52:30] {"update_id":466006739,
|
||||
"message":{"message_id":4290,"from":{"id":1702768688,"is_bot":false,"first_name":"Matias","username":"xMotha","language_code":"es"},"chat":{"id":-1002549857229,"title":"R4s/R5 REOD","type":"supergroup"},"date":1764517950,"text":"Que les vaya bien!"}}
|
||||
[2025-11-30 15:52:38] {"update_id":466006740,
|
||||
"message":{"message_id":4292,"from":{"id":1702768688,"is_bot":false,"first_name":"Matias","username":"xMotha","language_code":"es"},"chat":{"id":-1002549857229,"title":"R4s/R5 REOD","type":"supergroup"},"date":1764517958,"left_chat_participant":{"id":1702768688,"is_bot":false,"first_name":"Matias","username":"xMotha","language_code":"es"},"left_chat_member":{"id":1702768688,"is_bot":false,"first_name":"Matias","username":"xMotha","language_code":"es"}}}
|
||||
[2025-11-30 16:09:22] {"update_id":466006741,
|
||||
"message":{"message_id":318,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764518962,"left_chat_participant":{"id":6641144206,"is_bot":false,"first_name":"Caroline","language_code":"es"},"left_chat_member":{"id":6641144206,"is_bot":false,"first_name":"Caroline","language_code":"es"}}}
|
||||
[2025-11-30 17:13:02] {"update_id":466006742,
|
||||
"message":{"message_id":4293,"from":{"id":8128132563,"is_bot":false,"first_name":"Luis","last_name":"Vega","language_code":"es"},"chat":{"id":-1002549857229,"title":"R4s/R5 REOD","type":"supergroup"},"date":1764522782,"text":"Artemio ya puedes ir a la alianza anterior","entities":[{"offset":0,"length":7,"type":"text_mention","user":{"id":5570136738,"is_bot":false,"first_name":"Artemio","language_code":"es"}}]}}
|
||||
[2025-11-30 19:42:00] {"update_id":466006743,
|
||||
"message":{"message_id":319,"from":{"id":1971997473,"is_bot":false,"first_name":"D","last_name":"K","username":"DanK3126","language_code":"en"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764531720,"text":"No tengo internet en Patagonia. Desculpe en responder tan despacio"}}
|
||||
[2025-11-30 19:42:01] {"update_id":466006744,
|
||||
"message":{"message_id":320,"from":{"id":1971997473,"is_bot":false,"first_name":"D","last_name":"K","username":"DanK3126","language_code":"en"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764531720,"text":"Apenas sale mis mensajes y apenitas abre el juego"}}
|
||||
[2025-11-30 19:43:33] {"update_id":466006745,
|
||||
"message":{"message_id":323,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764531812,"text":"No te preocupes, si vienes a REOD? En cuanto tengas mejor conexi\u00f3n"}}
|
||||
[2025-11-30 19:44:04] {"update_id":466006746,
|
||||
"message":{"message_id":325,"from":{"id":1971997473,"is_bot":false,"first_name":"D","last_name":"K","username":"DanK3126","language_code":"en"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764531844,"text":"Claro"}}
|
||||
[2025-11-30 19:44:19] {"update_id":466006747,
|
||||
"message":{"message_id":326,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764531859,"text":"Perfecto, te esperamos de regreso"}}
|
||||
[2025-11-30 19:44:23] {"update_id":466006748,
|
||||
"message":{"message_id":328,"from":{"id":1971997473,"is_bot":false,"first_name":"D","last_name":"K","username":"DanK3126","language_code":"en"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764531863,"text":"Ya me gaste el internet international"}}
|
||||
[2025-11-30 19:44:34] {"update_id":466006749,
|
||||
"message":{"message_id":330,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764531874,"text":"Jaja"}}
|
||||
[2025-11-30 19:44:37] {"update_id":466006750,
|
||||
"message":{"message_id":331,"from":{"id":1971997473,"is_bot":false,"first_name":"D","last_name":"K","username":"DanK3126","language_code":"en"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764531877,"text":"Cuando empiesa la nueva temporada"}}
|
||||
[2025-11-30 19:45:05] {"update_id":466006751,
|
||||
"message":{"message_id":333,"from":{"id":1971997473,"is_bot":false,"first_name":"D","last_name":"K","username":"DanK3126","language_code":"en"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764531904,"photo":[{"file_id":"AgACAgEAAyEFAASniE2_AAIBTWksnsDFWJKRysTVWpROSx6W_qZKAAILC2sb2wVoRYUjy1i3SNrxAQADAgADcwADNgQ","file_unique_id":"AQADCwtrG9sFaEV4","file_size":1144,"width":90,"height":44},{"file_id":"AgACAgEAAyEFAASniE2_AAIBTWksnsDFWJKRysTVWpROSx6W_qZKAAILC2sb2wVoRYUjy1i3SNrxAQADAgADbQADNgQ","file_unique_id":"AQADCwtrG9sFaEVy","file_size":15842,"width":320,"height":155},{"file_id":"AgACAgEAAyEFAASniE2_AAIBTWksnsDFWJKRysTVWpROSx6W_qZKAAILC2sb2wVoRYUjy1i3SNrxAQADAgADeAADNgQ","file_unique_id":"AQADCwtrG9sFaEV9","file_size":57842,"width":800,"height":387},{"file_id":"AgACAgEAAyEFAASniE2_AAIBTWksnsDFWJKRysTVWpROSx6W_qZKAAILC2sb2wVoRYUjy1i3SNrxAQADAgADeQADNgQ","file_unique_id":"AQADCwtrG9sFaEV-","file_size":57931,"width":965,"height":467}]}}
|
||||
[2025-11-30 19:51:42] {"update_id":466006752,
|
||||
"message":{"message_id":334,"from":{"id":8128132563,"is_bot":false,"first_name":"Luis","last_name":"Vega","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764532302,"new_chat_participant":{"id":8128132563,"is_bot":false,"first_name":"Luis","last_name":"Vega","language_code":"es"},"new_chat_member":{"id":8128132563,"is_bot":false,"first_name":"Luis","last_name":"Vega","language_code":"es"},"new_chat_members":[{"id":8128132563,"is_bot":false,"first_name":"Luis","last_name":"Vega","language_code":"es"}]}}
|
||||
[2025-11-30 19:52:05] {"update_id":466006753,
|
||||
"message":{"message_id":335,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764532325,"text":"Bienvenido Luis"}}
|
||||
[2025-11-30 20:27:48] {"update_id":466006754,
|
||||
"message":{"message_id":337,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"REOD","is_forum":true,"type":"supergroup"},"date":1764534468,"left_chat_participant":{"id":7176119907,"is_bot":false,"first_name":"M\u00f4nica","last_name":"Wildner","language_code":"pt-br"},"left_chat_member":{"id":7176119907,"is_bot":false,"first_name":"M\u00f4nica","last_name":"Wildner","language_code":"pt-br"}}}
|
||||
[2025-12-01 05:00:19] {"update_id":466006769,
|
||||
"message":{"message_id":5823,"from":{"id":8351799858,"is_bot":false,"first_name":"nickpons","username":"nickpons","language_code":"es"},"chat":{"id":-4787145544,"title":"Pruebas de grupo","type":"group","all_members_are_administrators":true,"accepted_gift_types":{"unlimited_gifts":false,"limited_gifts":false,"unique_gifts":false,"premium_subscription":false}},"date":1764565162,"text":"Hola"}}
|
||||
[2025-12-01 05:00:19] {"update_id":466006770,
|
||||
"message":{"message_id":5824,"from":{"id":8351799858,"is_bot":false,"first_name":"nickpons","username":"nickpons","language_code":"es"},"chat":{"id":8351799858,"first_name":"nickpons","username":"nickpons","type":"private"},"date":1764565175,"text":"Hola"}}
|
||||
[2025-12-01 07:34:45] {"update_id":466006771,
|
||||
"message":{"message_id":5827,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":5717258,"first_name":"nickpons666","username":"nickpons666","type":"private"},"date":1764574484,"text":"Hola"}}
|
||||
[2025-12-01 18:19:33] {"update_id":466006772,
|
||||
"message":{"message_id":342,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1764613173,"text":"Hola a todos, ya esta el tren por si quieren subir, recuerden m\u00ednimo 2 Tickets."}}
|
||||
[2025-12-02 21:48:20] {"update_id":466006773,
|
||||
"message":{"message_id":344,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1764712100,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Hola a tod@s,\n\nHoy Gusano (Marsahll) a las 5pm M\u00e9xico / 8pm Brasil / 9pm Servidor.\n\nAgradeceremos su participaci\u00f3n.\n\nSaludos","is_topic_message":true}}
|
||||
[2025-12-03 02:31:19] {"update_id":466006774,
|
||||
"message":{"message_id":346,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1764729078,"message_thread_id":14,"reply_to_message":{"message_id":14,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933840,"message_thread_id":14,"forum_topic_created":{"name":"Tren","icon_color":16478047},"is_topic_message":true},"text":"Artemio te toca tren","entities":[{"offset":0,"length":7,"type":"text_mention","user":{"id":5570136738,"is_bot":false,"first_name":"Artemio","language_code":"es"}}],"is_topic_message":true}}
|
||||
[2025-12-03 03:55:33] {"update_id":466006775,
|
||||
"message":{"message_id":347,"from":{"id":5570136738,"is_bot":false,"first_name":"Artemio","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1764734132,"message_thread_id":14,"reply_to_message":{"message_id":14,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933840,"message_thread_id":14,"forum_topic_created":{"name":"Tren","icon_color":16478047},"is_topic_message":true},"text":"Va que va","is_topic_message":true}}
|
||||
[2025-12-03 03:55:55] {"update_id":466006776,
|
||||
"message":{"message_id":348,"from":{"id":5570136738,"is_bot":false,"first_name":"Artemio","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1764734155,"message_thread_id":14,"reply_to_message":{"message_id":14,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933840,"message_thread_id":14,"forum_topic_created":{"name":"Tren","icon_color":16478047},"is_topic_message":true},"text":"A qu\u00e9 hora tiene que salir?","is_topic_message":true}}
|
||||
[2025-12-04 18:05:26] {"update_id":466006777,
|
||||
"message":{"message_id":350,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1764871525,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Hola a tod@s,\n\nHoy tenemos gusano a las 5pm M\u00e9xico / 8pm Brasil / 9pm Servidor.\n\nSaludos","is_topic_message":true}}
|
||||
[2025-12-04 19:13:55] {"update_id":466006778,
|
||||
"message":{"message_id":352,"from":{"id":8578578303,"is_bot":false,"first_name":"Edmer","last_name":"Briones","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1764875635,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Ok","is_topic_message":true}}
|
||||
[2025-12-04 22:57:45] {"update_id":466006779,
|
||||
"message":{"message_id":354,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1764889064,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Hola a todos, 3 minutos para gusano.","is_topic_message":true}}
|
||||
[2025-12-10 22:57:35] {"update_id":466006780,
|
||||
"message":{"message_id":355,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1765407454,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Hola, 3 minutos para gusano","is_topic_message":true}}
|
||||
[2025-12-10 23:20:56] {"update_id":466006781,
|
||||
"message":{"message_id":356,"from":{"id":5570136738,"is_bot":false,"first_name":"Artemio","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1765408855,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Gracias Nick por recordarme \ud83d\udc4d","is_topic_message":true}}
|
||||
[2025-12-10 23:21:25] {"update_id":466006782,
|
||||
"message":{"message_id":358,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1765408885,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"\ud83e\udee1","is_topic_message":true}}
|
||||
[2025-12-12 02:18:57] {"update_id":466006783,
|
||||
"message":{"message_id":360,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1765505937,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Hola a todos, 1 minuto para Godzilla","is_topic_message":true}}
|
||||
[2025-12-12 22:57:33] {"update_id":466006784,
|
||||
"message":{"message_id":4295,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002549857229,"title":"R4s/R5 REOD","type":"supergroup"},"date":1765580252,"text":"3 minutos para gusano"}}
|
||||
[2025-12-15 02:15:13] {"update_id":466006785,
|
||||
"message":{"message_id":361,"from":{"id":1971997473,"is_bot":false,"first_name":"D","last_name":"K","username":"DanK3126"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1765764913,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Esta apagado el juego?","is_topic_message":true}}
|
||||
[2025-12-16 00:04:12] {"update_id":466006786,
|
||||
"message":{"message_id":363,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1765843451,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Quien pueda entrar al juego a guarnecer para crear el centro de alianza, los esperamos","is_topic_message":true}}
|
||||
[2025-12-16 22:55:49] {"update_id":466006787,
|
||||
"message":{"message_id":365,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1765925749,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"5 minutos para el Marahll (gusano)","is_topic_message":true}}
|
||||
[2025-12-18 23:00:23] {"update_id":466006788,
|
||||
"message":{"message_id":367,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1766098823,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Gusano","is_topic_message":true}}
|
||||
[2025-12-20 23:04:19] {"update_id":466006789,
|
||||
"message":{"message_id":368,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1766271858,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Gusano","is_topic_message":true}}
|
||||
[2025-12-22 19:35:42] {"update_id":466006790,
|
||||
"message":{"message_id":369,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1766432142,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Hola a todos,\n\nHoy tenemos gusano a las 5pm M\u00e9xico / 8pm Brasil / 9pm Servidor.\n\nSaludos","is_topic_message":true}}
|
||||
[2025-12-22 23:02:52] {"update_id":466006791,
|
||||
"message":{"message_id":371,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1766444572,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Gusano","is_topic_message":true}}
|
||||
[2025-12-24 19:24:12] {"update_id":466006792,
|
||||
"message":{"message_id":372,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1766604251,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Hola a tod@s,\n\nHoy tenemos gusano a las 5pm M\u00e9xico / 8pm Brasil / 9pm Servidor.\n\nSaludos","is_topic_message":true}}
|
||||
[2025-12-25 14:07:37] {"update_id":466006793,
|
||||
"message":{"message_id":374,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1766671657,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Felices fiestas a todos, quien pueda unirse a ayudar a capturar una aldea por favor","is_topic_message":true}}
|
||||
[2025-12-26 22:21:22] {"update_id":466006794,
|
||||
"message":{"message_id":376,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1766787681,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Tenemos Marahll (gusano) en 40 minutos","is_topic_message":true}}
|
||||
[2025-12-26 22:21:30] {"update_id":466006795,
|
||||
"message":{"message_id":377,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1766787689,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Marshall","is_topic_message":true}}
|
||||
[2025-12-26 23:00:57] {"update_id":466006796,
|
||||
"message":{"message_id":379,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1766790057,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Gusano","is_topic_message":true}}
|
||||
[2025-12-29 18:09:37] {"update_id":466006797,
|
||||
"message":{"message_id":380,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1767031776,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Hola a todos, hoy a las 5pm M\u00e9xico /8pm Brasil /9pm Servidor vamos a tomar una ciudad para que puedan conectarse y ayudarnos, saludos.","entities":[{"offset":35,"length":4,"type":"bot_command"},{"offset":47,"length":4,"type":"bot_command"}],"is_topic_message":true}}
|
||||
[2025-12-29 19:05:52] {"update_id":466006798,
|
||||
"message":{"message_id":382,"from":{"id":8578578303,"is_bot":false,"first_name":"Edmer","last_name":"Briones","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1767035152,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"Ok","is_topic_message":true}}
|
||||
[2025-12-29 22:51:36] {"update_id":466006799,
|
||||
"message":{"message_id":384,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1767048696,"message_thread_id":13,"reply_to_message":{"message_id":13,"from":{"id":5717258,"is_bot":false,"first_name":"nickpons666","username":"nickpons666","language_code":"es"},"chat":{"id":-1002810727871,"title":"Noticias de REOD","is_forum":true,"type":"supergroup"},"date":1761933741,"message_thread_id":13,"forum_topic_created":{"name":"Eventos","icon_color":16766590},"is_topic_message":true},"text":"En 10 minutos vamos a tomar una ciudad para quien pueda ayudarnos por favor","is_topic_message":true}}
|
||||
182344
logs/reoddragon__access.log
182344
logs/reoddragon__access.log
File diff suppressed because it is too large
Load Diff
@@ -1,61 +0,0 @@
|
||||
[Fri Nov 28 15:46:40.491693 2025] [authz_core:error] [pid 622693] [client 172.17.0.7:43634] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Sun Nov 30 01:13:01.382466 2025] [authz_core:error] [pid 1898730] [client 172.17.0.7:53700] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Sun Nov 30 01:13:01.864154 2025] [authz_core:error] [pid 1898726] [client 172.17.0.7:53702] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Sun Nov 30 01:13:02.345119 2025] [authz_core:error] [pid 1901777] [client 172.17.0.7:53718] AH01630: client denied by server configuration: /var/www/html/bot/.env.local
|
||||
[Sun Nov 30 01:13:02.824145 2025] [authz_core:error] [pid 1898729] [client 172.17.0.7:53752] AH01630: client denied by server configuration: /var/www/html/bot/.env.production
|
||||
[Sun Nov 30 01:13:03.291114 2025] [authz_core:error] [pid 1898730] [client 172.17.0.7:53756] AH01630: client denied by server configuration: /var/www/html/bot/.env.development
|
||||
[Sun Nov 30 01:13:03.754030 2025] [authz_core:error] [pid 1898726] [client 172.17.0.7:53760] AH01630: client denied by server configuration: /var/www/html/bot/.env.bak
|
||||
[Sun Nov 30 01:13:04.236353 2025] [authz_core:error] [pid 1901777] [client 172.17.0.7:53776] AH01630: client denied by server configuration: /var/www/html/bot/.env.example
|
||||
[Sun Nov 30 08:57:23.622590 2025] [authz_core:error] [pid 1898726] [client 172.17.0.7:38722] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Sun Nov 30 14:42:31.857288 2025] [authz_core:error] [pid 1898726] [client 172.17.0.7:57336] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Mon Dec 01 10:00:11.869801 2025] [authz_core:error] [pid 2551769] [client 172.17.0.7:44930] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Tue Dec 02 20:56:03.710397 2025] [authz_core:error] [pid 3176269] [client 172.17.0.7:50774] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Thu Dec 04 12:35:00.674186 2025] [authz_core:error] [pid 108460] [client 172.17.0.4:47380] AH01630: client denied by server configuration: /var/www/html/bot/.env, referer: http://reod-dragon.ddns.net/.env
|
||||
[Thu Dec 04 12:35:01.274521 2025] [authz_core:error] [pid 260986] [client 172.17.0.4:47408] AH01630: client denied by server configuration: /var/www/html/bot/config/.env, referer: http://reod-dragon.ddns.net/config/.env
|
||||
[Thu Dec 04 12:35:01.861583 2025] [authz_core:error] [pid 115133] [client 172.17.0.4:47422] AH01630: client denied by server configuration: /var/www/html/bot/admin/.env, referer: http://reod-dragon.ddns.net/admin/.env
|
||||
[Thu Dec 04 12:35:02.736026 2025] [authz_core:error] [pid 108460] [client 172.17.0.4:47442] AH01630: client denied by server configuration: /var/www/html/bot/.git, referer: http://reod-dragon.ddns.net/.git/HEAD
|
||||
[Thu Dec 04 15:12:11.667938 2025] [authz_core:error] [pid 108458] [client 172.17.0.4:54954] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Sat Dec 06 04:10:25.493285 2025] [authz_core:error] [pid 84630] [client 172.17.0.7:48506] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Sat Dec 06 04:10:26.087111 2025] [authz_core:error] [pid 84627] [client 172.17.0.7:48518] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Sat Dec 06 04:10:26.665080 2025] [authz_core:error] [pid 84625] [client 172.17.0.7:48524] AH01630: client denied by server configuration: /var/www/html/bot/.env.example
|
||||
[Sat Dec 06 04:10:27.293168 2025] [authz_core:error] [pid 84628] [client 172.17.0.7:48534] AH01630: client denied by server configuration: /var/www/html/bot/.env.development
|
||||
[Sat Dec 06 04:10:27.895768 2025] [authz_core:error] [pid 84629] [client 172.17.0.7:48536] AH01630: client denied by server configuration: /var/www/html/bot/.env.production
|
||||
[Sat Dec 06 04:10:41.895644 2025] [authz_core:error] [pid 84625] [client 172.17.0.7:45630] AH01630: client denied by server configuration: /var/www/html/bot/.aws
|
||||
[Sat Dec 06 04:10:43.401779 2025] [authz_core:error] [pid 84643] [client 172.17.0.7:43056] AH01630: client denied by server configuration: /var/www/html/bot/logs/debug.log
|
||||
[Sat Dec 06 04:10:43.902537 2025] [authz_core:error] [pid 84630] [client 172.17.0.7:43072] AH01630: client denied by server configuration: /var/www/html/bot/.env.js
|
||||
[Sat Dec 06 04:10:44.510809 2025] [authz_core:error] [pid 84627] [client 172.17.0.7:43078] AH01630: client denied by server configuration: /var/www/html/bot/debug.log
|
||||
[Sat Dec 06 04:10:45.118893 2025] [authz_core:error] [pid 84625] [client 172.17.0.7:43086] AH01630: client denied by server configuration: /var/www/html/bot/logs/error.log
|
||||
[Sat Dec 06 04:10:45.740746 2025] [authz_core:error] [pid 84643] [client 172.17.0.7:43124] AH01630: client denied by server configuration: /var/www/html/bot/laravel.log
|
||||
[Sat Dec 06 04:10:46.290827 2025] [authz_core:error] [pid 84630] [client 172.17.0.7:43136] AH01630: client denied by server configuration: /var/www/html/bot/logs/debug.log
|
||||
[Sat Dec 06 06:48:45.143274 2025] [authz_core:error] [pid 84630] [client 172.17.0.7:54808] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Sat Dec 06 06:48:46.418807 2025] [authz_core:error] [pid 84628] [client 172.17.0.7:54824] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Sat Dec 06 08:08:24.180647 2025] [authz_core:error] [pid 84627] [client 172.17.0.7:60538] AH01630: client denied by server configuration: /var/www/html/bot/.well-known
|
||||
[Sat Dec 06 08:08:32.966473 2025] [authz_core:error] [pid 84629] [client 172.17.0.7:43864] AH01630: client denied by server configuration: /var/www/html/bot/.well-known
|
||||
[Sat Dec 06 08:08:34.445939 2025] [authz_core:error] [pid 84625] [client 172.17.0.7:43884] AH01630: client denied by server configuration: /var/www/html/bot/.well-known
|
||||
[Sat Dec 06 15:21:14.294680 2025] [authz_core:error] [pid 84630] [client 172.17.0.7:38692] AH01630: client denied by server configuration: /var/www/html/bot/.env, referer: https://www.google.com/
|
||||
[Sat Dec 06 15:21:14.691063 2025] [authz_core:error] [pid 84625] [client 172.17.0.7:38710] AH01630: client denied by server configuration: /var/www/html/bot/.git, referer: https://www.google.com/
|
||||
[Sat Dec 06 15:21:15.539876 2025] [authz_core:error] [pid 84629] [client 172.17.0.7:38734] AH01630: client denied by server configuration: /var/www/html/bot/admin/.env, referer: https://www.google.com/
|
||||
[Sat Dec 06 15:21:16.265929 2025] [authz_core:error] [pid 84643] [client 172.17.0.7:38740] AH01630: client denied by server configuration: /var/www/html/bot/.env.bak, referer: https://www.google.com/
|
||||
[Sat Dec 06 15:21:16.642483 2025] [authz_core:error] [pid 84630] [client 172.17.0.7:38748] AH01630: client denied by server configuration: /var/www/html/bot/.git, referer: https://www.google.com/
|
||||
[Sat Dec 06 15:21:17.733280 2025] [authz_core:error] [pid 84625] [client 172.17.0.7:38768] AH01630: client denied by server configuration: /var/www/html/bot/.gitlab-ci.yml, referer: https://www.google.com/
|
||||
[Sat Dec 06 15:21:20.348644 2025] [authz_core:error] [pid 84627] [client 172.17.0.7:38810] AH01630: client denied by server configuration: /var/www/html/bot/.npmrc, referer: https://www.google.com/
|
||||
[Sat Dec 06 18:35:10.634908 2025] [authz_core:error] [pid 84630] [client 172.17.0.7:60998] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Sun Dec 07 02:05:00.760347 2025] [authz_core:error] [pid 1162948] [client 172.17.0.7:45824] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Sun Dec 07 06:49:00.285913 2025] [authz_core:error] [pid 1030] [client 172.17.0.3:49112] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Sun Dec 07 07:26:51.382055 2025] [authz_core:error] [pid 1039] [client 172.17.0.3:51922] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Sun Dec 07 22:25:35.899901 2025] [authz_core:error] [pid 1035] [client 172.17.0.3:35506] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Mon Dec 08 19:05:50.587455 2025] [authz_core:error] [pid 906470] [client 172.17.0.3:38388] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Tue Dec 09 11:41:43.139120 2025] [authz_core:error] [pid 1995650] [client 172.17.0.3:44184] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Tue Dec 09 23:38:34.615347 2025] [authz_core:error] [pid 1994871] [client 172.17.0.3:57640] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Fri Dec 12 17:48:55.504128 2025] [authz_core:error] [pid 568303] [client 172.17.0.3:53430] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Sun Dec 14 03:56:28.207353 2025] [authz_core:error] [pid 1849889] [client 172.17.0.3:37502] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Wed Dec 17 20:39:51.537746 2025] [authz_core:error] [pid 598941] [client 172.17.0.2:56380] AH01630: client denied by server configuration: /var/www/html/bot/.well-known
|
||||
[Wed Dec 17 20:39:58.233321 2025] [authz_core:error] [pid 598943] [client 172.17.0.2:56608] AH01630: client denied by server configuration: /var/www/html/bot/.well-known
|
||||
[Thu Dec 18 21:04:43.075755 2025] [authz_core:error] [pid 121390] [client 172.17.0.3:54966] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Thu Dec 18 21:04:46.079345 2025] [authz_core:error] [pid 3259] [client 172.17.0.3:55068] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
[Sat Dec 20 05:13:07.448523 2025] [authz_core:error] [pid 1133567] [client 172.17.0.3:32954] AH01630: client denied by server configuration: /var/www/html/bot/.env
|
||||
[Mon Dec 22 20:15:58.789596 2025] [authz_core:error] [pid 2408106] [client 172.17.0.3:42118] AH01630: client denied by server configuration: /var/www/html/bot/.well-known
|
||||
[Tue Dec 23 00:40:53.713169 2025] [authz_core:error] [pid 3040669] [client 172.17.0.3:47634] AH01630: client denied by server configuration: /var/www/html/bot/.well-known
|
||||
[Tue Dec 23 04:10:00.535898 2025] [authz_core:error] [pid 3049063] [client 172.17.0.3:57094] AH01630: client denied by server configuration: /var/www/html/bot/.well-known
|
||||
[Tue Dec 23 04:10:00.535897 2025] [authz_core:error] [pid 3040672] [client 172.17.0.3:57096] AH01630: client denied by server configuration: /var/www/html/bot/.well-known
|
||||
[Thu Dec 25 21:51:20.062065 2025] [authz_core:error] [pid 746013] [client 172.17.0.2:48696] AH01630: client denied by server configuration: /var/www/html/bot/.git
|
||||
@@ -1,157 +0,0 @@
|
||||
2026-01-13 21:09:51,426 WARN For [program:translation-worker], redirect_stderr=true but stderr_logfile has also been set to a filename, the filename has been ignored
|
||||
2026-01-13 21:09:51,426 INFO Included extra file "/etc/supervisor/conf.d/discordbot.conf" during parsing
|
||||
2026-01-13 21:09:51,426 INFO Included extra file "/etc/supervisor/conf.d/supervisord.conf" during parsing
|
||||
2026-01-13 21:09:51,426 INFO Included extra file "/etc/supervisor/conf.d/translation-worker.conf" during parsing
|
||||
2026-01-13 21:09:51,426 INFO Set uid to user 0 succeeded
|
||||
2026-01-13 21:09:51,429 INFO supervisord started with pid 1
|
||||
2026-01-13 21:09:52,432 INFO spawned: 'apache2' with pid 41
|
||||
2026-01-13 21:09:52,434 INFO spawned: 'discordbot' with pid 42
|
||||
2026-01-13 21:09:52,437 INFO spawned: 'translation-worker' with pid 43
|
||||
2026-01-13 21:09:52,519 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-13 21:09:53,526 INFO spawned: 'apache2' with pid 50
|
||||
2026-01-13 21:09:53,527 INFO success: discordbot entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-13 21:09:53,527 INFO success: translation-worker entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-13 21:09:53,560 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-13 21:09:56,530 INFO spawned: 'apache2' with pid 51
|
||||
2026-01-13 21:09:56,578 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-13 21:10:00,536 INFO spawned: 'apache2' with pid 52
|
||||
2026-01-13 21:10:00,575 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-13 21:10:01,576 INFO gave up: apache2 entered FATAL state, too many start retries too quickly
|
||||
2026-01-14 05:14:21,375 WARN received SIGTERM indicating exit request
|
||||
2026-01-14 05:14:21,375 INFO waiting for discordbot, translation-worker to die
|
||||
2026-01-14 05:14:22,377 INFO stopped: translation-worker (exit status 0)
|
||||
2026-01-14 05:14:22,381 INFO stopped: discordbot (terminated by SIGTERM)
|
||||
2026-01-14 19:42:37,933 WARN For [program:translation-worker], redirect_stderr=true but stderr_logfile has also been set to a filename, the filename has been ignored
|
||||
2026-01-14 19:42:37,933 INFO Included extra file "/etc/supervisor/conf.d/discordbot.conf" during parsing
|
||||
2026-01-14 19:42:37,934 INFO Included extra file "/etc/supervisor/conf.d/supervisord.conf" during parsing
|
||||
2026-01-14 19:42:37,934 INFO Included extra file "/etc/supervisor/conf.d/translation-worker.conf" during parsing
|
||||
2026-01-14 19:42:37,934 INFO Set uid to user 0 succeeded
|
||||
2026-01-14 19:42:37,938 INFO supervisord started with pid 1
|
||||
2026-01-14 19:42:38,940 INFO spawned: 'apache2' with pid 42
|
||||
2026-01-14 19:42:38,943 INFO spawned: 'discordbot' with pid 43
|
||||
2026-01-14 19:42:38,946 INFO spawned: 'translation-worker' with pid 44
|
||||
2026-01-14 19:42:39,021 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-14 19:42:40,031 INFO spawned: 'apache2' with pid 45
|
||||
2026-01-14 19:42:40,031 INFO success: discordbot entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-14 19:42:40,031 INFO success: translation-worker entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-14 19:42:40,074 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-14 19:42:43,034 INFO spawned: 'apache2' with pid 46
|
||||
2026-01-14 19:42:43,071 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-14 19:42:46,495 INFO spawned: 'apache2' with pid 47
|
||||
2026-01-14 19:42:46,527 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-14 19:42:47,529 INFO gave up: apache2 entered FATAL state, too many start retries too quickly
|
||||
2026-01-15 01:50:47,525 WARN received SIGTERM indicating exit request
|
||||
2026-01-15 01:50:47,526 INFO waiting for discordbot, translation-worker to die
|
||||
2026-01-15 01:50:48,530 INFO stopped: translation-worker (exit status 0)
|
||||
2026-01-15 01:50:48,537 INFO stopped: discordbot (terminated by SIGTERM)
|
||||
2026-01-15 01:50:52,687 WARN For [program:translation-worker], redirect_stderr=true but stderr_logfile has also been set to a filename, the filename has been ignored
|
||||
2026-01-15 01:50:52,687 INFO Included extra file "/etc/supervisor/conf.d/discordbot.conf" during parsing
|
||||
2026-01-15 01:50:52,687 INFO Included extra file "/etc/supervisor/conf.d/supervisord.conf" during parsing
|
||||
2026-01-15 01:50:52,687 INFO Included extra file "/etc/supervisor/conf.d/translation-worker.conf" during parsing
|
||||
2026-01-15 01:50:52,687 INFO Set uid to user 0 succeeded
|
||||
2026-01-15 01:50:52,689 INFO supervisord started with pid 1
|
||||
2026-01-15 01:50:53,692 INFO spawned: 'apache2' with pid 42
|
||||
2026-01-15 01:50:53,694 INFO spawned: 'discordbot' with pid 43
|
||||
2026-01-15 01:50:53,697 INFO spawned: 'translation-worker' with pid 44
|
||||
2026-01-15 01:50:53,737 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-15 01:50:54,772 INFO spawned: 'apache2' with pid 45
|
||||
2026-01-15 01:50:54,772 INFO success: discordbot entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-15 01:50:54,773 INFO success: translation-worker entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-15 01:50:54,807 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-15 01:50:57,777 INFO spawned: 'apache2' with pid 46
|
||||
2026-01-15 01:50:57,814 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-15 01:51:01,788 INFO spawned: 'apache2' with pid 47
|
||||
2026-01-15 01:51:01,823 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-15 01:51:02,824 INFO gave up: apache2 entered FATAL state, too many start retries too quickly
|
||||
2026-01-15 01:52:43,012 WARN received SIGTERM indicating exit request
|
||||
2026-01-15 01:52:43,012 INFO waiting for discordbot, translation-worker to die
|
||||
2026-01-15 01:52:44,016 INFO stopped: translation-worker (exit status 0)
|
||||
2026-01-15 01:52:44,026 INFO stopped: discordbot (terminated by SIGTERM)
|
||||
2026-01-15 01:52:58,661 WARN For [program:translation-worker], redirect_stderr=true but stderr_logfile has also been set to a filename, the filename has been ignored
|
||||
2026-01-15 01:52:58,661 INFO Included extra file "/etc/supervisor/conf.d/discordbot.conf" during parsing
|
||||
2026-01-15 01:52:58,661 INFO Included extra file "/etc/supervisor/conf.d/supervisord.conf" during parsing
|
||||
2026-01-15 01:52:58,661 INFO Included extra file "/etc/supervisor/conf.d/translation-worker.conf" during parsing
|
||||
2026-01-15 01:52:58,661 INFO Set uid to user 0 succeeded
|
||||
2026-01-15 01:52:58,664 INFO supervisord started with pid 1
|
||||
2026-01-15 01:52:59,666 INFO spawned: 'apache2' with pid 42
|
||||
2026-01-15 01:52:59,668 INFO spawned: 'discordbot' with pid 43
|
||||
2026-01-15 01:52:59,671 INFO spawned: 'translation-worker' with pid 44
|
||||
2026-01-15 01:52:59,717 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-15 01:53:00,751 INFO spawned: 'apache2' with pid 45
|
||||
2026-01-15 01:53:00,752 INFO success: discordbot entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-15 01:53:00,752 INFO success: translation-worker entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-15 01:53:00,785 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-15 01:53:03,757 INFO spawned: 'apache2' with pid 46
|
||||
2026-01-15 01:53:03,871 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-15 01:53:07,768 INFO spawned: 'apache2' with pid 47
|
||||
2026-01-15 01:53:07,818 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-15 01:53:07,819 INFO gave up: apache2 entered FATAL state, too many start retries too quickly
|
||||
2026-01-15 03:20:22,297 WARN received SIGTERM indicating exit request
|
||||
2026-01-15 03:20:22,297 INFO waiting for discordbot, translation-worker to die
|
||||
2026-01-15 03:20:23,300 INFO stopped: translation-worker (exit status 0)
|
||||
2026-01-15 03:20:23,312 INFO stopped: discordbot (terminated by SIGTERM)
|
||||
2026-01-15 03:22:56,954 WARN For [program:translation-worker], redirect_stderr=true but stderr_logfile has also been set to a filename, the filename has been ignored
|
||||
2026-01-15 03:22:56,954 INFO Included extra file "/etc/supervisor/conf.d/discordbot.conf" during parsing
|
||||
2026-01-15 03:22:56,954 INFO Included extra file "/etc/supervisor/conf.d/supervisord.conf" during parsing
|
||||
2026-01-15 03:22:56,954 INFO Included extra file "/etc/supervisor/conf.d/translation-worker.conf" during parsing
|
||||
2026-01-15 03:22:56,954 INFO Set uid to user 0 succeeded
|
||||
2026-01-15 03:22:56,958 INFO supervisord started with pid 1
|
||||
2026-01-15 03:22:57,961 INFO spawned: 'apache2' with pid 42
|
||||
2026-01-15 03:22:57,967 INFO spawned: 'discordbot' with pid 43
|
||||
2026-01-15 03:22:57,972 INFO spawned: 'translation-worker' with pid 44
|
||||
2026-01-15 03:22:58,112 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-15 03:22:59,117 INFO spawned: 'apache2' with pid 45
|
||||
2026-01-15 03:22:59,119 INFO success: discordbot entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-15 03:22:59,120 INFO success: translation-worker entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-15 03:22:59,153 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-15 03:23:02,081 INFO spawned: 'apache2' with pid 46
|
||||
2026-01-15 03:23:02,128 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-15 03:23:06,089 INFO spawned: 'apache2' with pid 47
|
||||
2026-01-15 03:23:06,154 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-15 03:23:06,154 INFO gave up: apache2 entered FATAL state, too many start retries too quickly
|
||||
2026-01-16 17:28:43,957 WARN received SIGTERM indicating exit request
|
||||
2026-01-16 17:28:43,957 INFO waiting for discordbot, translation-worker to die
|
||||
2026-01-16 17:28:44,961 INFO stopped: translation-worker (exit status 0)
|
||||
2026-01-16 17:28:44,965 INFO stopped: discordbot (terminated by SIGTERM)
|
||||
2026-01-16 17:28:46,478 WARN For [program:translation-worker], redirect_stderr=true but stderr_logfile has also been set to a filename, the filename has been ignored
|
||||
2026-01-16 17:28:46,478 INFO Included extra file "/etc/supervisor/conf.d/discordbot.conf" during parsing
|
||||
2026-01-16 17:28:46,478 INFO Included extra file "/etc/supervisor/conf.d/supervisord.conf" during parsing
|
||||
2026-01-16 17:28:46,478 INFO Included extra file "/etc/supervisor/conf.d/translation-worker.conf" during parsing
|
||||
2026-01-16 17:28:46,478 INFO Set uid to user 0 succeeded
|
||||
2026-01-16 17:28:46,489 INFO supervisord started with pid 1
|
||||
2026-01-16 17:28:47,492 INFO spawned: 'apache2' with pid 43
|
||||
2026-01-16 17:28:47,494 INFO spawned: 'discordbot' with pid 44
|
||||
2026-01-16 17:28:47,497 INFO spawned: 'translation-worker' with pid 45
|
||||
2026-01-16 17:28:47,542 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-16 17:28:48,597 INFO spawned: 'apache2' with pid 52
|
||||
2026-01-16 17:28:48,597 INFO success: discordbot entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-16 17:28:48,597 INFO success: translation-worker entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-16 17:28:48,630 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-16 17:28:51,601 INFO spawned: 'apache2' with pid 53
|
||||
2026-01-16 17:28:51,633 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-16 17:28:55,607 INFO spawned: 'apache2' with pid 55
|
||||
2026-01-16 17:28:55,640 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-16 17:28:56,640 INFO gave up: apache2 entered FATAL state, too many start retries too quickly
|
||||
2026-01-16 20:49:11,888 WARN received SIGTERM indicating exit request
|
||||
2026-01-16 20:49:11,902 INFO waiting for discordbot, translation-worker to die
|
||||
2026-01-16 20:49:12,908 INFO stopped: translation-worker (exit status 0)
|
||||
2026-01-16 20:49:12,911 INFO stopped: discordbot (terminated by SIGTERM)
|
||||
2026-01-16 20:50:01,374 WARN For [program:translation-worker], redirect_stderr=true but stderr_logfile has also been set to a filename, the filename has been ignored
|
||||
2026-01-16 20:50:01,375 INFO Included extra file "/etc/supervisor/conf.d/discordbot.conf" during parsing
|
||||
2026-01-16 20:50:01,375 INFO Included extra file "/etc/supervisor/conf.d/supervisord.conf" during parsing
|
||||
2026-01-16 20:50:01,375 INFO Included extra file "/etc/supervisor/conf.d/translation-worker.conf" during parsing
|
||||
2026-01-16 20:50:01,375 INFO Set uid to user 0 succeeded
|
||||
2026-01-16 20:50:01,378 INFO supervisord started with pid 1
|
||||
2026-01-16 20:50:02,380 INFO spawned: 'apache2' with pid 42
|
||||
2026-01-16 20:50:02,382 INFO spawned: 'discordbot' with pid 43
|
||||
2026-01-16 20:50:02,385 INFO spawned: 'translation-worker' with pid 44
|
||||
2026-01-16 20:50:02,464 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-16 20:50:03,467 INFO spawned: 'apache2' with pid 51
|
||||
2026-01-16 20:50:03,468 INFO success: discordbot entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-16 20:50:03,468 INFO success: translation-worker entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
|
||||
2026-01-16 20:50:03,501 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-16 20:50:06,462 INFO spawned: 'apache2' with pid 52
|
||||
2026-01-16 20:50:06,513 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-16 20:50:10,471 INFO spawned: 'apache2' with pid 53
|
||||
2026-01-16 20:50:10,532 INFO exited: apache2 (exit status 0; not expected)
|
||||
2026-01-16 20:50:10,533 INFO gave up: apache2 entered FATAL state, too many start retries too quickly
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -111,7 +111,7 @@ require_once __DIR__ . '/templates/header.php';
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<td>
|
||||
<button class="btn btn-sm btn-info" onclick="previewMessage(<?php echo htmlspecialchars(json_encode($msg['message_content'])); ?>)" data-translate-title="true" title="Vista previa">
|
||||
<button class="btn btn-sm btn-info" onclick='previewMessage(<?php echo json_encode($msg['message_content']); ?>)' data-translate-title="true" title="Vista previa">
|
||||
<i class="bi bi-eye-fill"></i>
|
||||
</button>
|
||||
<a href="edit_recurrent_message.php?id=<?php echo $msg['id']; ?>" class="btn btn-sm btn-warning" data-translate-title="true" title="Editar">
|
||||
@@ -150,7 +150,8 @@ require_once __DIR__ . '/templates/header.php';
|
||||
} else {
|
||||
foreach ($files as $file) {
|
||||
if (is_file($gallery_path . '/' . $file)) {
|
||||
echo '<div class="col-lg-3 col-md-4 col-sm-6 mb-4 text-center"><img src="galeria/' . htmlspecialchars($file) . '" class="img-fluid img-thumbnail gallery-item" style="cursor:pointer;" alt="' . htmlspecialchars($file) . '"><p class="small text-muted mt-1">' . htmlspecialchars($file) . '</p></div>';
|
||||
$image_url = site_url('galeria/' . $file);
|
||||
echo '<div class="col-lg-3 col-md-4 col-sm-6 mb-4 text-center"><img src="' . htmlspecialchars($image_url) . '" class="img-fluid img-thumbnail gallery-item" style="cursor:pointer;" alt="' . htmlspecialchars($file) . '"><p class="small text-muted mt-1">' . htmlspecialchars($file) . '</p></div>';
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -236,19 +237,25 @@ $(document).ready(function() {
|
||||
$(document).on('click', '.gallery-item', function() { $(this).toggleClass('border-primary'); });
|
||||
$('#insertImageFromGallery').click(function() {
|
||||
$('.gallery-item.border-primary').each(function(){
|
||||
$('#messageContent').summernote('insertImage', $(this).attr('src'));
|
||||
const imageSrc = $(this).attr('src');
|
||||
console.log('Inserting image:', imageSrc);
|
||||
$('#messageContent').summernote('insertImage', imageSrc);
|
||||
});
|
||||
$('#galleryModal').modal('hide');
|
||||
$('.gallery-item').removeClass('border-primary');
|
||||
});
|
||||
|
||||
// Toggle between channel and user selection
|
||||
// Toggle between channel and user selection (only if elements exist)
|
||||
const recipientTypeChannel = document.getElementById('recipientTypeChannel');
|
||||
const recipientTypeUser = a = document.getElementById('recipientTypeUser');
|
||||
const recipientTypeUser = document.getElementById('recipientTypeUser');
|
||||
const channelSelect = document.getElementById('recipientId');
|
||||
const userSelect = document.getElementById('recipientId_user');
|
||||
|
||||
function updateRecipientType() {
|
||||
if (!recipientTypeChannel || !recipientTypeUser || !channelSelect || !userSelect) {
|
||||
return; // Elements don't exist, exit gracefully
|
||||
}
|
||||
|
||||
if (recipientTypeChannel.checked) {
|
||||
channelSelect.classList.remove('d-none');
|
||||
channelSelect.required = true;
|
||||
@@ -265,9 +272,13 @@ $(document).ready(function() {
|
||||
userSelect.disabled = false;
|
||||
}
|
||||
}
|
||||
recipientTypeChannel.addEventListener('change', updateRecipientType);
|
||||
recipientTypeUser.addEventListener('change', updateRecipientType);
|
||||
updateRecipientType(); // Initial call
|
||||
|
||||
// Only add event listeners if elements exist
|
||||
if (recipientTypeChannel && recipientTypeUser) {
|
||||
recipientTypeChannel.addEventListener('change', updateRecipientType);
|
||||
recipientTypeUser.addEventListener('change', updateRecipientType);
|
||||
updateRecipientType(); // Initial call
|
||||
}
|
||||
|
||||
// Form validation
|
||||
$('#recurrentMessageForm').submit(function(e) {
|
||||
@@ -288,11 +299,27 @@ $(document).ready(function() {
|
||||
// Preview message function
|
||||
function previewMessage(content) {
|
||||
const previewModalBody = document.getElementById('previewModalBody');
|
||||
// Replace image URLs with absolute paths for preview
|
||||
const baseUrl = "<?php echo $base_url; ?>";
|
||||
let processedContent = content.replace(/src="galeria\//g, 'src="' + baseUrl + 'galeria/');
|
||||
const modalElement = document.getElementById('previewModal');
|
||||
|
||||
if (!previewModalBody || !modalElement) {
|
||||
console.error('Modal elements not found');
|
||||
return;
|
||||
}
|
||||
|
||||
let processedContent = content;
|
||||
|
||||
// Simple cleanup - ensure all image URLs are correct
|
||||
processedContent = processedContent
|
||||
.replace(/src="[^"]*galeria\/([^"]+)"/g, 'src="/galeria/$1"')
|
||||
.replace(/src='[^']*galeria\/([^']+)'/g, "src='/galeria/$1'");
|
||||
|
||||
// Add proper styling to images
|
||||
processedContent = processedContent.replace(/<img([^>]*)>/g, '<img$1 style="max-width: 100%; height: auto; border-radius: 8px; margin: 10px 0;">');
|
||||
|
||||
previewModalBody.innerHTML = processedContent;
|
||||
var myModal = new bootstrap.Modal(document.getElementById('previewModal'));
|
||||
|
||||
// Create and show the modal
|
||||
const myModal = new bootstrap.Modal(modalElement);
|
||||
myModal.show();
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user