How To Solve PmWiki File Upload Problem & Other Upload Tips pmwiki 파일을 업로드 문제를 해결하는 방법 및 기타 업로드 팁
Everytime I tried to upload a file to my PmWiki (popular PHP based Wiki) installation, it failed with “no file uploaded” error. 매시간마다 파일을 업로드하려고 내 pmwiki (인기가 php 기반 위키) 설치,와 함께 실패했습니다 "아니오 파일을 업로드"라는 오류합니다. Also it asks me for password thrice, once before accessing the upload page and twice after uploading. 또한 그것은 나에게 비밀 번호를 묻습니다 배로, 한 번 및 2 번 업로드 페이지에 액세스하기 전에 업로드가 끝나면합니다.
The solution was to remove the password check on upload. 이 솔루션은 비밀 번호를 확인하고 업로드를 제거합니다. As it is an intranet installation, accessed only by my team, it isn’t much of a problem. 인트라넷을 그대로 설치, 접근에 의해서만 내 팀, 그것의 문제는별로합니다. To remove password check have the following line in your config.php - 비밀 번호를 확인에는 다음과 같은 줄을 제거하려면 귀하의 config.php -
$DefaultPasswords['upload'] = ”; $ defaultpasswords [ '업로드'] = ";
Note: Remember to search for $DefaultPasswords first and comment the line, if present. 참고 사항 : 첫 번째 및 덧글 defaultpasswords 달러를 검색하는 기억 라인, 만약 존재합니다.
Bonus Tips: 보너스 팁 :
1. How to increase the file upload limit in pmwiki? 파일 업로드 제한을 늘리는 방법에 대해 pmwiki?
Add these line to config.php - 이러한 라인을 추가 config.php -
$UploadMaxSize = 100000000; $ uploadmaxsize = 100000000;
Note: The size is in bytes; so the above is 100, 000, 000 bytes (slightly less than 100 MB). 참고 사항 : 바이트 단위의 크기는; 않으므로 위는 100, 000, 000 바이트 (100 미만 다소 메가 비트).
2. 두합니다. How to enable file upload in the first place? 처음에 파일을 업로드를 활성화하는 방법?
Uncomment / add this line in config.php - 주석 / 추가이 라인을 config.php -
$EnableUpload = 1; $ enableupload = 1;
Filed under 밑에 Headline News 헤드 라인 뉴스 , How To 하는 방법을 , Open Source Software 오픈 소스 소프트웨어 , PHP php , Tech Note 기술 참고 사항 , Web 웹 , Web Services 웹 서비스 | |
| |
RSS 2.0 rss 2.0 | |
Trackback 트랙백 this Article | 이 문서 |
Email this Article 전자 우편이 문서
You may also like to read 같은를 읽을 수있습니다 |



