"Request Entity Too Large" Hatası alıyorum. Nedir ve nasıl çözerim? - Google Fan Webmaster Forum
Google Fan Webmaster Forum  
herşeyi sana yazdım

Geri git   Google Fan Webmaster Forum > Webmaster Genel > Site & Server Administration
KEY
Kayıt ol Articles Sosyal Gruplar Forumları Okundu Kabul Et

Site & Server Administration Server Yönetimi hakkında, .htaccess, Apache configuration ve log analiz, güvenlik

Cevapla
 
LinkBack Seçenekler
  1  
Alt 19-07-2010, 10:54:03
 
Standart "Request Entity Too Large" Hatası alıyorum. Nedir ve nasıl çözerim?

Twitter.com 'a api ile bağlanarak durum güncellemesi yapan bir bileşen hazırladaım. Localhostta sorunsuz çalışmasına rağmen hostta hata alıyorum. Hata mesajı şu:

Kod:
Request Entity Too Large
The requested resource
/statuses/update.xml
does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit.

Additionally, a 413 Request Entity Too Large error was encountered while trying to use an ErrorDocument to handle the request
Host ile ilgili olduğunu düşünüyorum ama tam olarak anlayamadım. Yani gönderilen veri boyutu sanırım host tgarafından Apache ile belirtilen stabdarrt boyuttan büyük gibi bişey diyor ama gönderdiğim sadece 140 harflik bir cümle.

Yardımlarınızı bekliyorum.
Alıntı ile Cevapla
  2  
Alt 19-07-2010, 13:01:20
 
Standart

Sunucu windows mu linux mu?
__________________
cemoka - Hiçbir Üye grup´una dahil değildir
Alıntı ile Cevapla
  3  
Alt 19-07-2010, 14:52:08
 
Standart

Alıntı:
cemoka Nickli Üyeden Alıntı Mesajı göster
Sunucu windows mu linux mu?
Linux.


Ben bu bileşeni başka bir kod örneğine bakarak yaptım. O kod örneğinde şöyle bir class kullanulmış. Bu class sanırım bu hatayı almamamızı sağlıyor. Ama emin değilim.

PHP- Kodu:
<?php


class Twitter {

    private 
$auth false;
    private 
$debug false;
    public  
$error false;

    function 
__construct($user$pass$debug=false) {
        
// Store an auth key for the HTTP Authorization: header
        
$this->auth base64_encode($user ':' $pass);
        
$this->debug $debug;
    }

    function 
update($new_status) {
        if (
strlen($new_status) > 140) {
            
$this->error "Status too long: {$new_status}.";
            return 
false;
        }
        
$fp = @fsockopen('twitter.com'80$errno$errstr);
        if (!
$fp) {
            
$this->error "Socket error #{$errno}{$errstr}";
            return 
false;
        }
        
$post_data "status=" urlencode($new_status);
        
$to_send  "POST /statuses/update.xml HTTP/1.1\r\n";
        
$to_send .= "Host: twitter.com\r\n";
        
$to_send .= "Content-Length: " strlen($post_data) . "\r\n";
        
$to_send .= "Authorization: Basic {$this->auth}\r\n\r\n";
        
$to_send .= $post_data "\r\n\r\n";
        
$bytes fwrite($fp$to_send);
        if (
$bytes === false) {
            
$this->error "Socket error: Error sending data.";
            return 
false;
        }
        elseif (
$bytes strlen($to_send)) {
            
$this->error "Socket error: Could not send all data.";
            return 
false;
        }
        if (
$this->debug) echo "Sent:\n{$to_send}\n\n";
        
$response '';
        while (!
feof($fp)) {
            
$buf fread($fp1024);
            if (
$buf === false) {
                
$this->error "Socket error: Error reading data.";
                return 
false;
            }
            
$response .= $buf;
        }
        if (
$this->debug) echo "Received:\n{$response}";
        
$was_error preg_match(
            
"#" .
            
preg_quote("<error>") .
            
"(.+)" .
            
preg_quote("</error>") .
            
"#i",
            
$response$matches);
        if (
$was_error) {
            
$this->error "Twitter error: {$matches[1]}";
            return 
false;
        }
        list(
$first_line) = explode("\r\n"$response);
        if (
$first_line != "HTTP/1.1 200 OK") {
            
$this->error "Request error: {$first_line}";
            return 
false;
        }
        return 
true;
    }

}
?>
Bu classın tam olarak işlevi nedir?

Konu ooaykac tarafından (19-07-2010 Saat 14:59:34 ) değiştirilmiştir..
Alıntı ile Cevapla
Cevapla


Bookmarks

Seçenekler

Yetkileriniz
Konu Acma Yetkiniz Yok
Cevap Yazma Yetkiniz Yok
Eklenti Yükleme Yetkiniz Yok
Mesajınızı Değiştirme Yetkiniz Yok

BB code is Açık
Smileler Açık
[IMG] Kodları Açık
HTML-Kodu Kapalı
Trackbacks are Kapalı
Pingbacks are Kapalı
Refbacks are Açık



Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 04:10:34.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.

“İnsanların en hayırlısı, insanlara faydalı olandır”. H.Ş

Hosting by Radore Hosting

İçerik sağlayacı paylaşım sitelerinden biri olan R10.net WebMaster Forum Adresimizde 5651 Sayılı Kanun’un 8. Maddesine ve T.C.K’nın 125. Maddesine göre TÜM ÜYELERİMİZ yaptıkları paylaşımlardan sorumludur. R10.net hakkında yapılacak tüm hukuksal Şikayetler adresi ile iletişime geçilmesi halinde ilgili kanunlar ve yönetmelikler çerçevesinde en geç 1 (Bir) Hafta içerisinde R10.net yönetimi olarak tarafımızdan gereken işlemler yapılacak ve Avukatlarımız size dönüş yapacaktır.
ARGUS_OK

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252