How to resolve blank errors for Xampp phpMyAdmin and MySQL - mysql

Several problems with phpmyAdmin running on Windows 7 in Xampp.
Creating a new database or editing data within a table, creates a network error message, with the response code being:
{"reload_flag":"1","success":false,"error":""}
Same response code when trying to load the second page of tables, the first page is just loaded again.
When changing a field in the database a blank notification popup is shown:
Updating a field
Initially MySQL table crashed errors were logged in the event viewer. The error was the 'MySQL table has crashed' and the tables in question were: procs_priv, tables_priv, columns_priv, and db. these errors are no longer being logged, yet we're having the same issues as before.
I've tried uninstalling and reinstalling Xampp, re importing the database and then repairing all tables. Non of this had any effect so far.

reload_flag is returned in auth() function. It looks like I solved this error by clearing cookies and/or switching between different auth_type(http, cookie, config) in config.inc.php file

Related

Error creating new User in MySQL workbench

I am getting an error in my SQL workbench when I create a user in my db.
I was given a schema to upload to my db I imported it successfully with no errors in Data import/restore tab. I have the correct userName and password but any time I try and save a user I get this same error.
I've checked the tables > Columns folder and I see the name column is listed. And I've tried dropping the db / schema and starting from scratch a couple times just incase something went wrong with that part.
I am new to using MySQL and working with DB's and schemas in general. So I'm not sure where to look to solve this error. I could use an idea of where this error could be coming from? And any advice on handling it.

error Table 'database.table' doesn't exist in engine in xampp

today when I ran xampp, no matter how hard I tried, I could not launch mysql. I did a lot of chatting on the internet and was able to run mysql, but many of my tables have problems and when I open the Table error, it shows 'DbName.TableName' does not exist in the engine. I did a lot of research and found that a number of people have encountered this problem. No solution seems to have been discovered. I tried to create a sql file from it and import it again, but the file had problems. I have valuable information in these tables, please help.
Of course, this error is sometimes shown:
Error in processing request
Error text: error (rejected)
It seems that the connection to server has been lost. Please check your network connectivity and server status.

Drupal 8 installs only after multiple tries using IIS

I experienced a very strange issue with Drupal 8 (no issues with other CMS programs, just 8), and so far the developers I encountered have not experienced this error. I am using IIS and My SQL for this setup. This error occurs with a new database, and a default settings, where the database has not even been implemented into the settings.php yet.
The following is what has occurred: At the database configuration page, I entered the database information, (select My SQL, database name, username, password, host, port number). Once the information is filled, I select "Save and Continue". Then, The page loads for a couple minutes; stating "waiting for localhost" at the bottom of the browser. Next, I am leaded to a page stating "Drupal already installed". So I delete the settings, and create a new database. I refilled the database information at the Database configuration page, and the error occurred again, stating "Drupal already installed". I redo the process until about the 5th try, Drupal installs displaying the loading bar.
Does anyone know the reason for this happening? Why does it say downloaded already, but then downloads after redoing a couple tries? Can speed be the factor?
Thank you,
When the page states "Drupal already installed, I checked the tables, seeing the installation stopped with 21 tables "
When Drupal installs (performing the same exact steps), there is an abundance amount of tables, 67

MySQL non-error error over web interfaces but not on command line

UPDATE queries work fine from the mysql command line, for any user.
However, when any UPDATE queries are run via a web interface (whether phpmyadmin or wordpress), the queries don't work, and I get a "no change" notice from mysql. Most of the time. The query is successful 10% of the time. Thing is there was a change, it just didn't take. I'm using the same user on phpmyadmin as on wordpress as on the command line client. I'm stumped. Anyone been here before?
Server details:
Apache/2.2.14 (Ubuntu)
MySQL client version: 5.1.61
PHP extension: mysqli
PHP version PHP 5.3.2-1ubuntu4.14
Update:
The "no change" notice comes from phpmyadmin. I don't get a "0 row(s) affected" from pma. When I return to the record that I attempted to edit, the edits aren't in there.
In wordpress, if it were a successful edit on a post I would get a "draft updated" or similar message. However, most of the time it just kicks me out to the wordpress admin index of posts without any message, and without any changes saved.
How this was fixed:
Clarified the apache server configuration. It was round-robining between two virtual hosts due to non-specific domain conf files.
The timeout value in httpd.conf was set to 0. This created issues.

MySQL error "No Database Selected"

I am using LAMP on localhost. I can login which uses mysql db, get to the main page (data driven), but when i enter this particular page, its fine, but when i refresh the error is "No Database Selected" then one every page says so.
I restarted the Apache, MySQL server
Browsers FF,IE, Chrome all show the same errors, cleared cache too. At the same time other websites that use the same LAMP server works fine.
Now thats strange
All ideas are welcome.
Are the main pages using mysql_select_db("foo") and this particular one not?
When you are connecting with php, you are not selecting a database (or the select is failing). Is it perhaps using a variable which is not getting properly populated?
Somewhere in the code (PHP) the default database gets reset, probably on a shared database connection. I guess this is a bug in the product you use.
Try going through the code where it connects with database and tries to pull the data. Most of the times there is a configuration file which defines the connection attributes like username, password, database server, port and database to be used also.
for example in phpMyAdmin keeps the information in libraries/Config.class.php file.