Posts

connecting docker n8n and comfyui API

 This is a classic Docker-on-Windows / localhost networking situation. You have: n8n running inside Docker → exposed on host port 5679 ComfyUI running on the host → http://127.0.0.1:8000 You want n8n (inside container) to call ComfyUI using something like http://localhost:8000 That will NOT work by default , because inside Docker: localhost = the container itself , not your Windows host ✅ The Correct & Easiest Solution (Recommended) Use host.docker.internal Docker provides a special DNS name that always points to the host machine . ๐Ÿ‘‰ Inside n8n (Docker), use: http: //host.docker.internal:8000 This works on: Docker Desktop (Windows ✅) Docker Desktop (Mac ✅) No subnet changes needed. API URL http://host.docker.internal:8000 worked

How to Bypass ‘This app has been blocked for your protection’ in Windows 11

   Run the app as an administrator via Command Prompt Running an app as an administrator via Command Prompt grants it elevated access to your system. This can be risky if the app is untrusted, so make sure it comes from a reliable source or has been scanned for malware before proceeding. Press  Win + S  to open the Windows search bar and type  cmd . Once the  Command Prompt  is found, right-click and select  Run as administrator . Confirm the User Account Control (UAC) prompt by clicking  Yes . In the  Command Prompt window , use the  cd  (change directory) command to go to the folder where your application is located. Example:  cd C:\Path\To\Application Once in the correct directory, type the application’s name, then hit  Enter . Example:  application.exe The application should now run with  administrator  privileges and without being blocked by the error message. cd C:\Users\bum\Downloads EvoFox_...

system is not sleeping

system is not sleeping A system not sleeping is typically due to incorrect power settings, outdated drivers, activity from connected devices, or background applications. Type the following command and press Enter: powercfg /requests SYSTEM:[DRIVER] Realtek High Definition Audio (HDAUDIO\FUNC_01&VEN_10EC&DEV_0897&SUBSYS_14 RESINSTALLED AUDIO DRIVER

exim mail not receving to distribution list

 [root@india ~]# cat /etc/virtual/hrworksindia.com/majordomo/lists/keyaccounts.config admin_passwd        =   DALzGIkp administrivia       =   yes advertise           <<  END END announcements       =   yes approve_passwd      =   DALzGIkp archive_dir         = comments            <<  END END date_info           =   yes date_intro          =   yes debug               =   no description         =   keyaccounts digest_archive      = digest_issue        =   1 digest_maxdays      = digest_maxlines     = digest_name      ...

iis php

memory_limit = 1024M max_input_time = 600 max_execution_time = 300 enable php error log post_max_size = 80M error_log = C:\php\logs\php_errors.log make logs directory and then file php_errors.log

Error in foreign key constraint of table app_closed.apps

 Error in foreign key constraint of table app_closed . apps A — Preferred / simplest: import using the MySQL/MariaDB CLI (preserves the dump behavior) use cmd as terminal it wil show error The '<' operator is reserved for future use. copy paste file in user folder and then C:\Users\simra>mysql -u root -p app_closed < app_closed.sql Enter password: **********

php in iis

 threded php or non threaded php load phpinfo and then check  Thread Safety  disabled meaning thread safety is disabled and you need it for php extensions like ⚠ These extensions should NOT be in PHP 8.4: Remove: extension=php_json.dll extension=json extension=php_pcre.dll extension=php_tokenizer.dll extension=php_dom.dll extension=php_xmlwriter.dll extension=php_simplexml.dll extension=php_xml.dll Because in PHP 8+, these are built-in and do NOT have DLLs anymore. ๐Ÿ‘ Correct Extensions Example for PHP 8.4 Your php.ini should have only extensions like: extension=curl extension=openssl extension=mbstring extension=mysqli extension=pdo_mysql extension=gd extension=intl extension=zip extension=fileinfo extension=exif Everything else is built-in and must NOT be loaded manually ✅ Perfect — now we finally know the exact cause of your Google Sign-In internal error. This has nothing to do with your PHP code. The real issue is: ❌ cURL error 60: SSL certificate problem Windows IIS ...