We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7535f3 commit 1467df4Copy full SHA for 1467df4
1 file changed
bin/cron-worker.php
@@ -57,9 +57,13 @@
57
// Load Kyte configuration
58
$configPath = null;
59
$searchPaths = [
60
- $basePath . '/config/config.php',
+ // Standard Kyte setup: config.php at project root
61
+ $basePath . '/../../config.php',
62
+ dirname(dirname($basePath)) . '/config.php',
63
+ // Alternative: config/ subdirectory
64
$basePath . '/../../config/config.php',
65
dirname(dirname($basePath)) . '/config/config.php',
66
+ $basePath . '/config/config.php',
67
];
68
69
foreach ($searchPaths as $path) {
0 commit comments