PHRETS
PHRETS copied to clipboard
414 Request-URI Too Large
I am sending over 230 listing IDs in one request. I have set following option: $config->setOption( 'use_post_method', true ); My understanding is when I set this option it will send request as post instead of GET. If this is not the case how can I send large post request to MLS? Thanks
Check your php.ini for max_post_size and see if it's big enough to handle what you're sending. Additionally, you should check your web server settings as there is often a setting for it there as well. Everything should match and be equal to or greater than what you're trying to send.
This should be fixed in 2.6.2. Can you check if that does it for you?