I'm trying to setup ILIAS on a fresh Debian Buster install with apache + php 7.3 + mariadb + composer 1.9.3.
I have passed preliminary & Basic Settings from web UI but when I try to create a new client I got this error:
'''
-Database can't be reached. Please check the credentials and if database exists-
'''
I had try both MyISAM & InnoDB version of MySQL but with the same issue.
I've google a couple of days before posting here, I've already read related post both on here and other places but with no luck at all.
Anyone could help me to finish my installation?
Thanks in advance.
Solved, I've rebooted the VM and it start working, don't ask me why...
Related
G'day, I am trying to make a clone of the WordPress website into my local server. I installed the Duplicator plugin and generated a archive file of the website and the installer.php. Then after ran the installer.php from http://localhost:8888/untitledfolder/installer.php.
In the step 2 (Install Database) there is an error which is a connection failure. I already created a database named 'livewebsite' beforehand. It's likewise the below image.
Any help would be really appreciated though I am new to WordPress trying to learn from the scratch. No down votes for the question please. Thank you! :)
I got the issue. That was my username and password. Username & password should be default data which is root and 123 for my settings. Thank you!
You should change MySQL port (the right input with localhost) from 8888 to 3306. That's the real port of MySQL server.
After change and retry, you can see the Host: Fail will become Host: Success with green flag I think. If Database still have a red fail flag, please edit your database username and password. It's not your WordPress account.
Yesterday I upgraded Sql server 2014 to Sql server 2016 RTM.
When i go to reporting services web portal i get error popup
"Could not load folder contents
Something went wrong. Please try again later. "
I tried:
Repair instalation
Restore database
Restart reporting service
Restart PC
Restore encryption key
but nothing helped.
Do anyone know what could happen ?
Thanks
EDIT: When i use http://<server>/reportserver i see all my reports and they work fine.
To me, it seems like you have a path with an invalid character. I would try running the following query against the ReportServer database:
SELECT c.[Path] FROM [ReportServer]..[Catalog] c
ORDER BY c.[Path]
From there, you should be able to review each path and confirm whether you have something with an illegal character.
Cumulative update 1 (CU1) solved issue.. Today is available also (CU4)
I am trying to install HP SSC but during installation when I reach the "seed process template" I get the error shown in the screenshot. I need help on this. Thanks
If your database connection is successful then there can be only one reason of failure this connectivity.
-Database collation is not set properly (Note: in older version it was optional but in new version you have to set it case sensitive (It must be having something like CS rather CI in its name)
If it didn't resolve your issue then please paste your code here.
Firstly let me start off by saying I've been Googling for quite some time now and I can't find a straight forward answer to this. Either my Google-Fu is terrible or there really isn't a clear and simple way of doing this. Even on the official site I get pages and pages of jargon.
I'm used to Glassfish and am quite spoiled when it comes to connection pool setup especially with the Glassfish admin console. What I'm looking for is just a simple step by step, e.g. 'Go to this file, add this xml tag', paste your JDBC driver in that folder, done'. But I can't find something like that.
What I have is
The Server IP Address the Database is on
The database name
The username
Password
and JDBC Driver .jar file
It would greatly be appreciated if someone can clear things up for me a bit. Thanks!
Here is the document for setup tomcat connection pool using DBCP
I'm working on Magento Enterprise v1.9.0.0.
I need to connect to the database and run SQL directly to query tables.
Here is what I've used to do that.
$query = "...SQL QUERY...";
$databaseConnection = Mage::getSingleton('core/resource')->getConnection('core_read');
$result = $databaseConnection->fetchAll($query);
I have Magento Community v1.4.1.1 and Magento Enterprise v1.9.0.0 installed on my local computer.
So in order to test, I've run the above code on my local machine, and all works fine.
But it doesn't work on live server.
Magento Enterprise v1.9.0.0 is installed on the live server and online store is running.
All works fine on live store and nothing special happens.
But I've uploaded this code to the server, it doesn't work.
And further, I can't get any PHP/MySQL error message.
Here is more detailed codes which I used to track run time.
// Debug Output
$this->OutputDebugLogo("<br/>");
$this->OutputDebugLogo("<br/><h3>Query : </h3>#", $query);
$databaseConnection = Mage::getSingleton('core/resource')->getConnection('core_read');
$result = $databaseConnection->fetchAll($query);
// Debug Output
$this->OutputDebugLogo("<br/><h3>Result : </h3>#", $result);
$this->OutputDebugLogo("<br/>");
I can be sure there is no error on SQL statement.
And the function OutputDebugLogo() is made by myself to output debug message with variables.
Here is what I've got after running this script on my local machine.
Query :
' SELECT ... FROM ... WHERE ... '
Result:
array ( 0 => array ( 'items' => 'a:2:{s:3:"MEN";a:11:{s:9:... )
And here you can see what I've got on the live server.
Query :
' SELECT ... FROM ... WHERE ... '
As you can see, there is no PHP/MySQL error message.
And we can say the script wass stopped running at database code block.
I can't make any progress to find the main cause.
Why did it happen?
Can anyone know it?
I'm really looking forward to getting help from everyone.
Best Regards.
Floppy
I ran your script on Magento Enterprise 1.9.0.0 and it worked with no problems, so there doesn't appear to be any problem with the script itself. what is your query? It's likely that there is a schema difference between the two versions that you aren't taking into account.
Hope that helps!
Thanks,
Joe