Hello
I answer to myself !! Yes it *was* a DNS problem !
This is my opinion : what about simply testing the meteor server with
Linux in a local net and without changing anything about the DNS
server ? (192.168.1.0 for example).
1/ We can write in the meteor server :
/etc/hosts :
server.linux.org 192.168.1.50
data.server.linux.org 192.168.1.51
(and do all the necessary for the redirection of the ports)
2/ do the same in the station with the brower
3/ you can write and run the php script as in the meteor site
and you can write a test.html :
<html>
<head>
<script type="text/javascript" src="
http://data.server.linux.org/
meteor.js"></script>
</head>
<body BGCOLOR="#deda68">
<script language=javascript>
function test(data) { document.title=data; }
function heady()
{
Meteor.debugmode=true;
Meteor.hostid = '49977502705';
Meteor.host="Data."+location.hostname;
Meteor.registerEventCallback("process", test);
window.status=Meteor.Host;
Meteor.joinChannel("phpdemo",5);
Meteor.mode = 'stream';
Meteor.connect();
alert("ok");
}
</script>
METEOR
<SCRIPT language=JavasCript > heady(); </SCRIPT>
</body>
</html>
works with my firefox browser : the title changes in real time ...
On 23 déc 2010, 09:35, jpamart <
jl.p...@gmail.com> wrote:
> Hello
>
> First, Thanks for the very very beautifull demonstrations.
>
> I try to install Meteor for a school project and followhttp://
meteorserver.org/installation/