Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


VPS problem - form submit do not working
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

VPS problem - form submit do not working

ziditzidit Member
edited February 2013 in General

I have problem with my VPS at Hostigation for several days ago. (It's working for long-term)

Problem is submitting POST form

In simple POST form. if submit small data (No more than 2-3 line of text). It can be parsed. However if enter more text like 10 line. It will timeout (like packet do not send or it was dropped).

Server load is very little, csf/lfd do not installed (Testing by stop iptables and problem still persist)

Could you pls share your idea?

Comments

  • gbshousegbshouse Member, Host Rep

    Upload limit (by default smaller gor GET than for POST)? I would assume it's related to webserver itself not to VPS as such

  • MTU problem? Can you ping -s 1472 your.vps.ip.address from another vps?

  • Yes, can ping

    [root@cloud13-chicago ~]# ping -s 1472 xxx.xxx.xxx.xxx
    PING xxx.xxx.xxx.xxx (xxx.xxx.xxx.xxx) 1472(1500) bytes of data.
    1480 bytes from xxx.xxx.xxx.xxx: icmp_seq=1 ttl=51 time=49.9 ms
    1480 bytes from xxx.xxx.xxx.xxx: icmp_seq=2 ttl=51 time=50.0 ms
    1480 bytes from xxx.xxx.xxx.xxx: icmp_seq=3 ttl=51 time=50.0 ms
    1480 bytes from xxx.xxx.xxx.xxx: icmp_seq=4 ttl=51 time=49.9 ms

    php.ini config

    register_globals = off
    display_errors = On
    file_uploads = on
    upload_max_filesize = 30M
    log_errors = on
    output_buffering = off
    register_argc_argv = on
    magic_quotes_gpc = off
    post_max_size = 8M
    magic_quotes_runtime = off
    magic_quotes_sybase = off
    mysql.allow_persistent = off
    max_execution_time = 3600
    max_input_time = 60
    memory_limit = 128M
    post_max_size = 16M
    allow_url_fopen = on
    allow_url_include = on
    register_long_arrays = on
    session.save_path = /var/lib/php/session
    cgi.force_redirect = on
    ; sendmail_from =
    safe_mode = off
    enable_dl = on
    zlib.output_compression = off

  • Is there anything relevant in your PHP error log (possibly in apache error log)?

  • @Adduc said: Is there anything relevant in your PHP error log (possibly in apache error log)?

    Agree,
    btw:open and check your Apache access log first

  • php error_log do not have relevant error in this case.

Sign In or Register to comment.