Hello , I am having this problem . If I am sending some data via $_GET my scripts will show me a 406 error!!! why !? This don't work ! http://www.softgroups.com/?query=go.ro http://www.softgroups.com/?referal=go.ro But this are working just fine!!!! http://www.softgroups.com/?query=site.com http://www.softgroups.com/?referal=site.com The problem is when I am doing PHP scripts, because I can't send sopme data like go , etc,etc,etc
It's hard to tell without looking at the script code. If it's PHP, and you want me to have a look at the code, PM me. It could be Apache config, it could be a missing file. It's hard to tell with no card. Mike
Well the problem is that is not in the PHP code! and is the same for all pages on site!!!! even if they are .jpg !!!!! http://www.softgroups.com/migu.jpg?id=go.ro <--- it just don;t work! http://www.softgroups.com/migu.jpg?id=migu
Something has to be happening in the code or a file is missing. I would need to look at the code. Other than that, I can't help, nor do I think anyone else can help. I'm willing to check it out, no charge, cause I have a nice buzz going on. Sorry I can't be of more assistance.
have you tried to urlencode() your parameter? seems like its a problem with the dot. $link = '<a href="http://www.softgroups.com/migu.jpg?id='.urlencode("go.ro").'">test with parameter</a>'; echo $link; PHP: