Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
When I try to insert data into MySQL database I got this error:
Error Msg
#1030 - Got error -1 from storage engine
What could be the problem?
The first thing you do is check whether you are out of disk space.This error probably means you don't have enough memory for allocating to your table or database, or the specified memory settings for MySQL are too high for the configuration of your machine.
the following link may be useful to you http://wiki.jumpbox.com/doc/runtime/faq/mysql_maintenance
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Well am creating a php based application therefore I wish to accompany it with a configuration file. However the configuration will have a few variables which will be updated once in a while.
Therefore how can I read a file and update a specific variable in it?
It's common to define your own configuration in .ini files and parse them with parse_ini_file()
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I am newbie to programming. But I am going to work on a website that will have millions of records and huge traffic and I want to load balance my database of application server.
How can I create an application in PHP? and how can I distribute a single database on to multiple servers?
You should check out Hadoop. That is a very fine example of a distributed database system.
http://hadoop.apache.org/
I don't think you'll get a detailed explanation here, as that kind of thing is quite complex. You may want to check out MySQL Cluster.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
This is the error I get when I load any of my sites but one:
Fatal error: Call to undefined method Settings::printLinks() in /home/admin/server/index.php on line 87
Call Stack: 0.0001 644544 1. {main}() /home/admin/server/index.php:0
The error showed about 2 hours ago caused by no obvious reasons... nothing has been moderated to cause it.
It happened yesterday to thousand (or more?) of wordpress users.
The mainly reasons are plugins, so disable them all.
If it still shows, then its probably caused by your theme
you can change it or upload it on another blog just to be sure
Problem for me was a popup plugin.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to upload some files without browse button, i just wanna have a fixed path and upload button, can anyone help me out, i think this is possible in asp.net
There is no way for a website to specify which file the user's browser should upload. This would be a dangerous security risk as the user might not notice the file selection.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
file_get_contents("https://api.groupon.com/v2/deals.xml?division_id=cleveland&client_id=39ddf70c45844d5a9d5a92e5106f1b229b2e1df8");
This code does not work on windows, but does with Linux. Because of https. Is there any solution.
It's possible you did not enable your url file open in your PHP configuration.
See http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen for details on this configuration value.
If this is not the cause, then you should specify what the exact error is, do this by adding the following to your code, before the file_get_contents function:
error_reporting(E_ALL);
ini_set('display_errors', 'On');