Comments for Dotkernel | Headless Platform for modern web applications https://www.dotkernel.com Wed, 19 Feb 2025 10:59:27 +0000 hourly 1 https://wordpress.org/?v=6.9.4 Comment on Where is the intl PHP extension? Problem solved! by MAX https://www.dotkernel.com/php-troubleshooting/where-is-the-intl-php-extension-problem-solved/#comment-10411 Sun, 06 Mar 2022 20:04:05 +0000 https://www.dotkernel.com/?p=3004#comment-10411 In reply to Shahbaaz.

try uncomment:

extension=intl

]]>
Comment on Where is the intl PHP extension? Problem solved! by Shahbaaz https://www.dotkernel.com/php-troubleshooting/where-is-the-intl-php-extension-problem-solved/#comment-8285 Sun, 06 Feb 2022 10:21:32 +0000 https://www.dotkernel.com/?p=3004#comment-8285 Hi I tried to follow the steps

sudo apt-get install php7.4-intl returns – “php7.4-intl is already the newest version”

but php_intl.so doesn’t exists in the php extensions directory

I am running WordPress on OpenLiteSpeed server (Digital ocean shared)

]]>
Comment on [FIX] Installing PEAR packages with PHP 7.2 by Dler https://www.dotkernel.com/php-troubleshooting/fix-installing-pear-packages-with-php-7-2/#comment-7541 Mon, 03 Jan 2022 20:31:25 +0000 https://www.dotkernel.com/?p=3400#comment-7541 Sounds good for all, but how we do with cPanel, because I faced this fatal error during installing via cPanel.

]]>
Comment on What is PSR-7 and how to use it by Andrew Moore https://www.dotkernel.com/how-to/what-is-psr-7-and-how-to-use-it/#comment-7134 Thu, 09 Dec 2021 08:43:11 +0000 https://www.dotkernel.com/?p=3233#comment-7134 In reply to Richard Hall.

@Richard Hall

I don’t know if you may have found your answer elsewhere, but the implementation documentation here doesn’t really explain well what this is for. The short answer is that it standardizes and simplifies the handling of HTTP messages which contains a URI.

HTTP messages are essentially the messages you send to and from a client and server using the usual GET POST PUT etc methods. The PSR-7 Guidelines describe a series of interfaces that makes that process streamlined and useable in virtually any environment.

Better explanations can be found here.

https://www.php-fig.org/psr/psr-7/
https://www.php-fig.org/psr/psr-7/meta/

]]>
Comment on Where is the intl PHP extension? Problem solved! by luis https://www.dotkernel.com/php-troubleshooting/where-is-the-intl-php-extension-problem-solved/#comment-7100 Wed, 08 Dec 2021 01:30:56 +0000 https://www.dotkernel.com/?p=3004#comment-7100 In reply to Hassam Ul Haq.

i have de same error, after do all de google post says, and still have the same errors:

C:\Windows\system32>c:\php\php -m
PHP Warning: PHP Startup: Unable to load dynamic library ‘intl’ (tried: C:\php\ext\intl (No se puede encontrar el m├│dulo especificado), C:\php\ext\php_intl.dll (No se puede encontrar el m├│dulo especificado)) in Unknown on line 0

Warning: PHP Startup: Unable to load dynamic library ‘intl’ (tried: C:\php\ext\intl (No se puede encontrar el m├│dulo especificado), C:\php\ext\php_intl.dll (No se puede encontrar el m├│dulo especificado)) in Unknown on line 0
[PHP Modules]

]]>
Comment on Where is the intl PHP extension? Problem solved! by Hassam Ul Haq https://www.dotkernel.com/php-troubleshooting/where-is-the-intl-php-extension-problem-solved/#comment-6982 Fri, 26 Nov 2021 11:57:57 +0000 https://www.dotkernel.com/?p=3004#comment-6982 After modification in php.ini the below command solve my error.
– Restart the web server (usually sudo service httpd restart)

]]>
Comment on What is PSR-7 and how to use it by Richard Hall https://www.dotkernel.com/how-to/what-is-psr-7-and-how-to-use-it/#comment-6265 Wed, 29 Sep 2021 00:06:05 +0000 https://www.dotkernel.com/?p=3233#comment-6265 I am new to all this.

Exactly what is being accomplished with this code.

“PSR-7 is a set of common interfaces defined by PHP Framework Interop Group. These interfaces are representing HTTP messages, and URIs for use when communicating trough HTTP.”.

What is the point of thee ” HTTP messages, and URIs”?

]]>
Comment on Adding a CORS implementation to Zend Expressive by admin https://www.dotkernel.com/dotkernel/adding-a-cors-implementation-to-zend-expressive/#comment-5407 Fri, 18 Jun 2021 14:58:52 +0000 https://www.dotkernel.com/?p=3508#comment-5407 https://www.dotkernel.com/how-to/mezzio-cors-implementation-in-dotkernel

]]>
Comment on CORS policy setup in Dotkernel using mezzio-cors by admin https://www.dotkernel.com/how-to/mezzio-cors-implementation-in-dotkernel/#comment-5406 Fri, 18 Jun 2021 14:58:35 +0000 https://www.dotkernel.com/?p=4145#comment-5406 https://www.dotkernel.com/dotkernel/adding-a-cors-implementation-to-zend-expressive/

]]>
Comment on Where is the intl PHP extension? Problem solved! by Gabi DJ https://www.dotkernel.com/php-troubleshooting/where-is-the-intl-php-extension-problem-solved/#comment-4976 Thu, 29 Apr 2021 08:33:27 +0000 https://www.dotkernel.com/?p=3004#comment-4976 In reply to Ed Peterson.

To find out your configured php extensins dir:
Windows (cmd): php -i | find “extension_dir”
Windows(powershell): php -i | Select-String “extension_dir”
Linux / Mac / Windows (via cmder/laragon): php -i | grep extension_dir

To find out where php is use command above and remove the extension dir at the ending (usually “ext”) or replace it with bin
eg.:
C:/php/php-7.4.15-Win32-vc15-x64/ext -> C:/php/php-7.4.15-Win32-vc15-x64

To find oud config
Windows (cmd): php -i | find “php.ini”
Windows(powershell): php -i | Select-String “php.ini”
Linux / Mac / Windows (via cmder/laragon): php -i | grep php.ini

]]>