我在post_max_size
文件中更改了php.ini
,然后重新启动了我的Web服务器,
sudo systemctl restart apache2
但是,当我尝试导入数据库文件时,出现错误(Max: 2,048KiB)
还localhost/info.php
显示了修改后的post_max_size
。但是,当我导入数据库文件时,它仍然显示2MB错误。
我使用此命令将php7.3更改为php7.1
sudo update-alternatives --set php /usr/bin/php7.1
我认为问题是在切换php版本时创建的。
感谢您的帮助
答案 0 :(得分:2)
尝试将#include <vector>
void setup() {
std::vector<unsigned char> vector1;
std::vector<unsigned char> vector2;
vector2.push_back(0x01);
vector2.push_back(0x02);
addVectorToVector(&vector1, vector2);
}
// add the content of a vector to the end of another vector
template <typename T, typename U>
void addVectorToVector(std::vector<T>* oldVector, std::vector<U> input){
for(uint8_t i = 0; i < input.size(); i++){
T inputVar = (T) input[i];
oldVector->push_back(inputVar);
}
return;
}
和upload_max_size
设置为post_max_size
。
答案 1 :(得分:1)
您还需要更改Microsoft.AspNetCore.Authorization
。如果将其设置为较小的值,则将限制upload_max_filesize