Skip to content

Commit

Permalink
PUSH
Browse files Browse the repository at this point in the history
-> Upload
  • Loading branch information
NaysKutzu committed Nov 6, 2024
1 parent 3c5bdbe commit 6b5a465
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
1 change: 0 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"recommendations": [
"streetsidesoftware.code-spell-checker",
"devsense.composer-php-vscode",
"rifi2k.format-html-in-php",
"mohd-akram.vscode-html-format",
"devsense.phptools-vscode",
"eamodio.gitlens",
Expand Down
9 changes: 9 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": [
9003
],

},
{
"command": "composer run tests",
"name": "Run Unit Tests",
Expand Down
2 changes: 1 addition & 1 deletion framework
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ try {
Kernel::executeFrameworkCommand(isset($argv[1]) ? $argv[1] : '', $args);
} catch (Exception $e) {
die(Kernel::translateColorsCode("&cE&0&lr&2&lr&3&lo&5&lr: &r&l" . $e->getMessage() . ""));
}
}
3 changes: 2 additions & 1 deletion public/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
cloudflare.php
cloudflare.php
pma/
1 change: 0 additions & 1 deletion public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
* Get the renderer :).
*/
$renderer = Engine::getRenderer();

/*
* Load the routes.
*/
Expand Down
4 changes: 2 additions & 2 deletions storage/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"__last_updated": "2024-11-05 22:49:46",
"__last_updated": "2024-11-06 00:13:02",
"framework": {
"version": "1.0.1",
"branch": "develop",
Expand All @@ -11,7 +11,7 @@
"port": "3306",
"username": "framework",
"password": "",
"name": "framework"
"name": "panel"
},
"encryption": {
"method": "MythicalCore",
Expand Down
2 changes: 1 addition & 1 deletion storage/web/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ server {

location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php/php8.3-fpm.sock;
fastcgi_pass unix:/run/php/php8.2-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M";
Expand Down

0 comments on commit 6b5a465

Please sign in to comment.