Correction des différents bugs

This commit is contained in:
2024-11-27 16:30:59 +01:00
parent 780798ff25
commit cda2104b11
25 changed files with 1096 additions and 334 deletions

View File

@@ -140,7 +140,7 @@ return [
'redis' => [
'client' => env('REDIS_CLIENT', 'phpredis'),
'client' => env('REDIS_CLIENT', 'predis'),
'options' => [
'cluster' => env('REDIS_CLUSTER', 'redis'),
@@ -149,11 +149,11 @@ return [
'default' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'host' => env('REDIS_HOST', '/home5/sc1welocker/.cpanel/redis/redis.sock'),
'username' => env('REDIS_USERNAME'),
'password' => env('REDIS_PASSWORD'),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_DB', '0'),
'password' => env('REDIS_PASSWORD', '8ddd8380890853b08d88f0ab7ed98ba9'),
'port' => env('REDIS_PORT', 0),
'database' => env('REDIS_DB', 0),
],
'cache' => [

View File

@@ -1,78 +1,84 @@
<?php
return [
'name' => 'MyX',
'manifest' => [
'name' => env('APP_NAME', 'MyX'),
'short_name' => 'MyX',
'start_url' => '/',
'background_color' => '#00b4ff',
'theme_color' => '#00b4ff',
'display' => 'standalone',
'orientation'=> 'any',
'status_bar'=> '#00b4ff',
'icons' => [
'72x72' => [
'path' => '/images/icons/icon-72x72.png',
'purpose' => 'any'
],
'96x96' => [
'path' => '/images/icons/icon-96x96.png',
'purpose' => 'any'
],
'128x128' => [
'path' => '/images/icons/icon-128x128.png',
'purpose' => 'any'
],
'144x144' => [
'path' => '/images/icons/icon-144x144.png',
'purpose' => 'any'
],
'152x152' => [
'path' => '/images/icons/icon-152x152.png',
'purpose' => 'any'
],
'192x192' => [
'path' => '/images/icons/icon-192x192.png',
'purpose' => 'any'
],
'384x384' => [
'path' => '/images/icons/icon-384x384.png',
'purpose' => 'any'
],
'512x512' => [
'path' => '/images/icons/icon-512x512.png',
'purpose' => 'any'
],
"name" => "MyX",
"short_name" => "MyX",
"start_url" => "https://myx.ovh/",
"display" => "standalone",
"theme_color" => "#00b4ff",
"background_color" => "#00b4ff",
"orientation" => "any",
"status_bar" => "#00b4ff",
"splash" => [
"640x1136" => "/images/icons/splash-640x1136.png",
"750x1334" => "/images/icons/splash-750x1334.png",
"828x1792" => "/images/icons/splash-828x1792.png",
"1125x2436" => "/images/icons/splash-1125x2436.png",
"1242x2208" => "/images/icons/splash-1242x2208.png",
"1242x2688" => "/images/icons/splash-1242x2688.png",
"1536x2048" => "/images/icons/splash-1536x2048.png",
"1668x2224" => "/images/icons/splash-1668x2224.png",
"1668x2388" => "/images/icons/splash-1668x2388.png",
"2048x2732" => "/images/icons/splash-2048x2732.png"
],
"icons" => [
[
"src" => "/images/icons/icon-72x72.png",
"type" => "image/png",
"sizes" => "72x72",
"purpose" => "any"
],
'splash' => [
'640x1136' => '/images/icons/splash-640x1136.png',
'750x1334' => '/images/icons/splash-750x1334.png',
'828x1792' => '/images/icons/splash-828x1792.png',
'1125x2436' => '/images/icons/splash-1125x2436.png',
'1242x2208' => '/images/icons/splash-1242x2208.png',
'1242x2688' => '/images/icons/splash-1242x2688.png',
'1536x2048' => '/images/icons/splash-1536x2048.png',
'1668x2224' => '/images/icons/splash-1668x2224.png',
'1668x2388' => '/images/icons/splash-1668x2388.png',
'2048x2732' => '/images/icons/splash-2048x2732.png',
[
"src" => "/images/icons/icon-96x96.png",
"type" => "image/png",
"sizes" => "96x96",
"purpose" => "any"
],
'shortcuts' => [
[
'name' => 'Shortcut Link 1',
'description' => 'Shortcut Link 1 Description',
'url' => '/shortcutlink1',
'icons' => [
"src" => "/images/icons/icon-72x72.png",
"purpose" => "any"
]
],
[
'name' => 'Shortcut Link 2',
'description' => 'Shortcut Link 2 Description',
'url' => '/shortcutlink2'
]
[
"src" => "/images/icons/icon-128x128.png",
"type" => "image/png",
"sizes" => "128x128",
"purpose" => "any"
],
'custom' => []
[
"src" => "/images/icons/icon-144x144.png",
"type" => "image/png",
"sizes" => "144x144",
"purpose" => "any"
],
[
"src" => "/images/icons/icon-152x152.png",
"type" => "image/png",
"sizes" => "152x152",
"purpose" => "any"
],
[
"src" => "/images/icons/icon-192x192.png",
"type" => "image/png",
"sizes" => "192x192",
"purpose" => "any"
],
[
"src" => "/images/icons/icon-384x384.png",
"type" => "image/png",
"sizes" => "384x384",
"purpose" => "any"
],
[
"src" => "/images/icons/icon-512x512.png",
"type" => "image/png",
"sizes" => "512x512",
"purpose" => "any"
]
],
"id" => "MyX",
"description" => "Le futur commence ici",
"dir" => "auto",
"scope" => "https://myx.ovh",
"lang" => "fr",
"categories" => [
"entertainment",
"lifestyle",
"productivity"
]
];

View File

@@ -54,7 +54,7 @@ return [
'stack' => [
'driver' => 'stack',
'channels' => ['single', 'larabug'],
'channels' => ['single'],
'ignore_exceptions' => false,
],
@@ -133,4 +133,4 @@ return [
],
];
];

View File

@@ -39,7 +39,7 @@ return [
'connection' => env('DB_QUEUE_CONNECTION', null),
'table' => env('DB_QUEUE_TABLE', 'jobs'),
'queue' => env('DB_QUEUE', 'default'),
'retry_after' => env('DB_QUEUE_RETRY_AFTER', 90),
'retry_after' => env('DB_QUEUE_RETRY_AFTER', 300),
'after_commit' => false,
],

View File

@@ -8,54 +8,30 @@ return [
],
'word_special_comment' => [
"mentionnez #",
"commente",
"commentaire",
"commentant",
"écrit",
"écrire",
"écrivez",
"dites",
"dis moi",
"dis nous",
"dis en commentaire",
"dis-moi",
"dis-nous",
"dites-nous",
"dit-moi",
"dit-nous",
"donne nous",
"donne le",
"donner",
"tweet avec",
"tweetent avec",
"tweetent : avec",
"tweet : avec",
"tweet #",
"tweete #",
"hashtag",
"répond à",
"répond",
"indique",
"répondre",
"commenter avec",
"commentez avec",
"commente avec",
"commentez",
"commenter",
"commente",
"commentant",
"votre taille en commentaires",
"partage en commentaire",
"écrivez en commentaire",
'commenter avec',
'commentez avec',
'commentez',
'commenter',
'commente',
'en commentaire',
'écrit',
'écrire',
'dites',
"réponds",
"répondez",
"réponder",
"repondre avec",
"précise",
"donne",
"dit",
"quelle",
'répondez',
'réponder',
'repondre avec',
'précise',
'donne',
'dit',
'dites-nous',
'dis nous',
'dis-nous',
'dites nous',
'dites-nous',
'tweet #',
'quelle',
'capture d\'écran',
],
'word_comment' => [
@@ -88,7 +64,9 @@ return [
'word_tag' => [
"invit",
"mention",
"mentionne",
"mentionnez une",
"mentionnez un",
"mentionnez des",
"tag",
"#tag",
"taguer",
@@ -109,7 +87,9 @@ return [
"@ 1",
"tag un",
"tag 1",
"tag a",
"tag 1 ami",
"taguer un",
"un de ses amis",
"mentionne 1",
"mentionne un",
@@ -180,6 +160,8 @@ return [
'two_people_list' => [
"tag deux",
"tag 2",
"tag two",
"taguer deux",
"@ deux",
"@ 2",
"2 amis",
@@ -209,6 +191,7 @@ return [
"3 ami",
"3 personnes",
"3 potes",
"taguer trois",
"trois amis",
"trois ami(e)s",
"trois ami",
@@ -572,22 +555,44 @@ return [
"#cadeaunoel",
"#annonce",
"#noel",
"#joyeuxnoel"
"#joyeuxnoel",
'#sponso',
'#sponsor'
],
'giveaway_to_blacklist' => [
"nude",
'nft',
"anal",
"uid",
"sex",
"sorare",
"freebet",
"freebets",
"sourate",
"leaguepartner",
"nft",
"wakfu",
"formation",
"dvd",
"mint",
"freemint",
'paysafecard',
'prompt',
'freebets',
'rtbf'
"film",
"cinéma",
"bts",
"macron",
"sextape",
"tabula",
"quizz",
"israel",
"israël",
"coran",
"islam",
"gode",
"allah",
"sourate",
"leaguepartner",
"nft",
"wakfu"
],
'tags' => [
@@ -605,5 +610,14 @@ return [
'quoteur69',
'RipPony31340',
'FollowPurf47871',
'bastmimie',
'lylydu60',
'100pourcentTec',
'ilatierre',
'bastmimie',
'mamandechire13',
'chaseyourdram',
'hugolespromos',
],
];