Go to advanced search

by Ironic
Mon Apr 30, 2018 1:32 am
Forum: Raspberry Pi OS
Topic: Webpage loading indefinitely (Firefox/chromium)
Replies: 1
Views: 155

Re: Webpage loading indefinitely (Firefox/chromium)

My bad. Just noticed you need to be logged in to be able to view it.

Here is a screenshot:
Image

Occasionally i get an error about a script ending in .js:1 stopping. Is this JSON?

Regards
by Ironic
Mon Apr 30, 2018 12:35 am
Forum: Raspberry Pi OS
Topic: Webpage loading indefinitely (Firefox/chromium)
Replies: 1
Views: 155

Webpage loading indefinitely (Firefox/chromium)

Hi all Not sure where to get started, but i am having an issue where a specific webpage does not open. There seems to be some king of dynamic thing happening and it keeps loading indefinitely. This is one specific page where it happens: https://www.meetup.com/Meetup-API-Testing/events/dxtgwgyxkbdb/a...
by Ironic
Sat Nov 30, 2013 11:19 pm
Forum: Networking and servers
Topic: Cannot connect to socket server.
Replies: 7
Views: 15475

Re: Cannot connect to socket server.

That seems to have solved it.

I really was convinced this was the way to go.

Tks DeeJay
by Ironic
Sat Nov 30, 2013 7:20 pm
Forum: Networking and servers
Topic: Cannot connect to socket server.
Replies: 7
Views: 15475

Re: Cannot connect to socket server.

Hi all Thanks for the replies: rpdom, your code yields: tcp 0 0 127.0.1.1:12345 Not the 0.0.0.0 you indicated. However if from the own Rpi i do: telnet 127.0.1.1 12345 i can connect to the server. DeeJay AFAIK yes. This means i am openin the socket in the same network address i am. For connection to...
by Ironic
Fri Nov 29, 2013 11:21 pm
Forum: Networking and servers
Topic: Cannot connect to socket server.
Replies: 7
Views: 15475

Cannot connect to socket server.

Hi all Trying to create a simple python socket server in Rpi import socket s = socket.socket(socket.AF_INET,socket.SOCK_STREAM) print 'Socket Created' host = socket.gethostname() port=12345 s.bind((host,port)) s.listen(5) while True: c, addr = s.accept() print 'Got', addr c.send('Hello') c.close Thi...

Go to advanced search