Agency apache aws aws sqs bash basrc books Branding composer database ec2 git github golang hacker interview javascript jmeter jmeter apache laravel laravel passport linux linux ami mac mysql oauth2 php phpunit postgres redis rest client satori satori architect sql sqlite swagger symfony Symfony Helpers Symfony profiler Tech unix usps Web Design web server wordpress
-
How to shutdown nginx on MAC OS X ?
To shut down Nginx on macOS, you can use the following commands in your terminal. Please note that you might need administrative privileges (sudo) to stop Nginx, depending on how it was installed. Open Terminal: You can find Terminal in the Utilities folder within the Applications folder, or you can use Spotlight Search (Cmd +…
-
How to solve “No releases available for package pecl.php.net/libyaml” ?
How to solve ? pecl install libyaml No releases available for package “pecl.php.net/libyaml” install failed Try the following ? pear clear-cachepear update-channelspear upgrade try this command instead pecl install yaml
-
Checklist / Code Review PHP
Checklist ELEGANT CODING/ PROGRAMMING appreciated Utilize the guard clause writing style instead of the traditional if-else approach. Use Guard Clauses for Cleaner Code There should be no business logic in the controller (Sanity check okay) There should be no database code in the service or controller classes Solid principles: Ensure that the code follows the…
-
How to resolve git merge – – not something we can merge ?
If you try something git merge feature/the-feature-branch-XXX and you see merge: feature/the-feature-branch-XXX – not something we can merge SOLUTION in 2 steps step 1 : git checkout –track origin/feature/the-feature-branch-XXX step 2 git checkout release/target_branch step 3 (try again) : git mergefeature/the-feature-branch-XXX
-
PHP MANDATORY CODE REVIEW Checklist
Solid principles: Ensure that the code follows the SOLID principles of object-oriented design, which include Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, and Dependency Inversion principles. These principles promote clean, maintainable, and extensible code. Type hinting: Use type hints in function and method declarations to specify the expected data types for parameters and return values.…
-
warden magento : How to fix Port must be configured within host parameter (like localhost:3306 ?
php bin/magento cache:clean In Mysql.php line 407: Port must be configured within host parameter (like localhost:3306 make sure you do the commands within warden shell
-
HOW TO IMPORT DUMP DATABASE FILE INTO WARDEN ?
pv ../../NEW-CLEANED-DUMP.sql | warden db import Importing a dump database file into a database involves using command-line tools specific to the database management system, such as MySQL or PostgreSQL, and executing the appropriate commands to load the data from the dump file into the database. The process requires providing the necessary credentials, specifying the database…
-
How to fix BCC architect ERROR 80004005 and error 8004044b
How to fix ? 2023-06-26 15:35:15 [00000730:00001b78] FATAL: exception.cpp:268: COMResult: SaveReport failed to save the file “09225EC8” for report 364. (error 80004005).2023-06-26 15:35:15 [00000730:00001b78] FATAL: exception.cpp:270: SaveReport: SaveReport failed to save the file “09225EC8” for report 364. (error 80004005).2023-06-26 15:35:15 [00000730:00001b78] FATAL: exception.cpp:268: COMResult: Unable to receive data from the socket. (error 8004044b).2023-06-26 15:35:15 [00000730:00001b78]…