Posts

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 ...

Connection Timed Out iis server

 had to reboot the router to fix the issue What happened? The initial connection between Cloudflare's network and the origin web server timed out. As a result, the web page can not be displayed. What can I do? If you're a visitor of this website: Please try again in a few minutes. If you're the owner of this website: Contact your hosting provider letting them know your web server is not completing requests. An Error 522 means that the request was able to connect to your web server, but that the request didn't finish. The most likely cause is that something on your server is hogging resources.

enable iis error

 Enable full errors by adding this to web.config inside <system.webServer>: <httpErrors errorMode="Detailed" /> full web.config <?xml version="1.0" encoding="UTF-8"?> <configuration>   <system.webServer>     <rewrite>       <rules>         <rule name="WordPress Rule" stopProcessing="true">           <match url=".*" />           <conditions logicalGrouping="MatchAll">             <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />             <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />           </conditions>           <action type="Rewrite" url="index.php" />         </rule>       </rules>    ...

The server requested authentication method unknown to the client

  mysqli::real_connect(): (HY000/2054): The server requested authentication method unknown to the client [auth_gssapi_client] this error occurs if i try to login using root user only mysql> SELECT user, host, plugin FROM mysql.user ORDER BY user, host; +-------------+--------------+-----------------------+ | User | Host | plugin | +-------------+--------------+-----------------------+ | PUBLIC | | | | mariadb.sys | localhost | mysql_native_password | | root | 127.0.0.1 | mysql_native_password | | root | ::1 | mysql_native_password | | root | localhost | mysql_native_password | | root | simrankumari | mysql_native_password | +-------------+--------------+-----------------------+ 6 rows in set (0.00 sec) sql -- 1. Create the database CREATE DATABASE `12te_12testers`; -- 2. Create the user and set the password -- We use 'localhost' as defined in DB_HOST. CREATE U...