Problem with bridge sketch tempWebpanel (client & REST connection issue) SOLVED

Hi everyone, I'm trying for some days to run the Bridge sketch and temperaturewebpanel but I can't figure out what I'm doing wrong. Well I explain: all Yún bridge examples worked for me apart from these.

Looked for post with my problem and opened port 5555 & 5353 , I don't have anti virus or firewall activated & I can access via wifi to control panel. But when i go to "http://arduino.local/sd/TemperatureWebPanel" well in my case I use the ip route(but read that t'here's no problem with that), it only shows me the content of the SD folder, here's the code I only can see a poor 0:

<!DOCTYPE html>
<html>
	<head>
	<script type="text/javascript" src="zepto.min.js"></script>
	  <script type="text/javascript">
	   	function refresh() {
		  	$('#content').load('/arduino/temperature');
	  	}
</script>

	</head>
	<body onload="setInterval(refresh, 2000);">
		<span id="content">0</span>
	</body>
</html>

I think that it can be a trouble in YunClient.h or YunServer.h cause arduino code doesn't enter in the "YunClient client = server.accept();" and the next "if(client)" conditional. It's like there's no client connecting. In the Bridge sketch its similar i cant see feedback from Yun and the REST didn't worked too. Only good think it's that browser don't send me onto not found page.... so Yun is there some way.

I really didn't know what to do now. Some help would be really appreciate. Thanks!

I don't have a clear understanding of the problem you're having. But this sketch did not work for me at first either. I got a not found error. For this, the solution was to reboot after creating the arduino/www directory. Without the reboot it seems the Linux side did not recognize that change.

Sorry if I can't explain myself better. Its not my main language so its a bit difficult to me.
Well, my problem is that I can connect to the URL but I only see the code that I showed you (the code is the content of www). It's like Linio was working but Arduino not. So I don't get a not found page, I get something intermediate.

Tried to reboot like you said, but there's no effect. But what you said, make me think about loading a sketch, that wasn't the one that needed to run the page (to see what's the behaviour). And the result is that I see the same in both. So.... I believe that I disconnected something in the Control panel that deactivated REST or a similar service.

Well hope I clear doubts. Thanks

OK I could resolve the problem. So what I've done is to reset the Linio to fabric, and in the control panel opened the REST API. And that worked for me.