HTTP error 500 when trying to go to localhost/phpmyadmin on centos 8 - http-error

when I'm trying to go to localhost/phpmyadmin then I'm getting HTTP error 500.i have installed PHP, PHP-MySQL, MySQL,apache...please help me to solve this problem.

Check your log
if you have this error
PHP Fatal error: Uncaught Error: Call to a member function getCookie() on null in /usr/share/phpmyadmin/libraries/classes/Url.php:217
Try to install php-json package
I hope this can be useful.

Related

Container cannot write to storage due to type mismatch

Error : Container cannot write to storage due to type mismatch
An error occurred
An error occurred during execution; please try again later.
Additional information:
Zend\Session\Exception\RuntimeException
vendor\zendframework\zend-session\src\AbstractContainer.php:207
I am facing this issue in zend-framework 2 applications when I run my newly application in laminas.
Please help me.

go error plugin when running heroku login on windows 10

I just downloaded and updated Heroku, and then ran
> heroku login
in my PowerShell, but got the following error:
(node:1496) [UNKNOWN] Error Plugin: heroku: UNKNOWN: unknown error, open 'U:\_netrc'
Error occurred during reading netrc file: U:\_netrc
module: #oclif/config#1.13.2
task: runHook prerun
plugin: heroku
root: C:\Users\<myusername>\AppData\Local\heroku\client\7.59.2
See more details with DEBUG=*
Error: UNKNOWN: unknown error, open 'U:/_netrc'
I couldn't find much information about the error message, and would appreciate any insights or suggestions. Thank you!

undefined function TYPO3\CMS\IndexedSearch\mb_strcut()

I'm trying to create a webpage using TYPO3 8.7, but when i go to Localhost/index.php it says "Oops an error has occured".
The only way i can see my webpage, is through the TYPO3 backend login apperently.
This is the error that it logs in the backend of TYPO3:
>
Core: Exception handler (WEB): Uncaught TYPO3 Exception: Call to undefined >function TYPO3\CMS\IndexedSearch\mb_strcut() | Error thrown in file >/var/www/html/typo3_src-8.7.0/typo3/sysext/indexed_search/Classes/Indexer.php in >line 1314. Requested URL: Localhost/index.php
And my line 1314 is this:
$bodyDescription = mb_strcut($bodyDescription, 0, $maxL, 'utf-8');
I'm very new to this. So far i've been able to sort all bugs with the help from these forums and others, but unfortunately I can't find any solution to this one.
Any help is greatly appreciated.
Let me know if i need to provide some additionel information.
This error means that mbstring php extension is not enabled. You should install it, if you have Ubuntu you should execute
sudo apt-get install php-mbstring
Read more about installation of this PHP extension here

Why am I receiving error 0x80070643 trying to run aspnet_regiis for v2.0

I am trying to install .net v2.0 using "aspnet_regiis -i" ... and I keep getting this error: "Operation failed 0x80070643, fatal error doing installation".
any ideas of what i can do?

Zend_Http_Client_Adapter_Exception Error #0

I use the Zend libray, especially Loader class. But I take the following exception:
Uncaught exception 'Zend_Http_Client_Adapter_Exception' with message 'Unable to Connect to ssl://www.googleapis.com:443. Error #0:
I should say that when I run my code local, I don't face any problem, but the exception show when I try to run my file in server. The server I use has ssl security. Is there any possibility to there is any conflict with it?
This error may be caused by SSL level error like untrusted/expired SSL certificate which can be caused by wrong local system date.
If you on Ubuntu try add in your php.ini
openssl.capath=/etc/ssl/certs
For more info read this issue