Search found 118 matches
- Thu Jun 27, 2019 9:19 pm
- Forum: Beta Version Bug Reports
- Topic: Startup Error with NetUserGetLocalGroups RC5
- Replies: 11
- Views: 8068
Re: Startup Error with NetUserGetLocalGroups RC5
Been a minute, just upgraded and forgot about this issue until I did. The problem is that in some cases the NetUserGetLocalGroups can't get a list of groups, probably a permissions issue.
- Thu Jun 27, 2019 7:03 pm
- Forum: Bug Reports
- Topic: Windows 10 win32net.NetUserGetLocalGroups error
- Replies: 1
- Views: 2113
Windows 10 win32net.NetUserGetLocalGroups error
The code in User.py generates an error on my system that blocks eventghost from working. the code should be replaced to resolve this bug: def Groups(user_name=Name(), server=None): """ Retrieves direct and indirect group name the username is a member of for a specific computer/server. If no paramete...
- Thu Dec 06, 2018 3:27 pm
- Forum: Beta Version Bug Reports
- Topic: Startup Error with NetUserGetLocalGroups RC5
- Replies: 11
- Views: 8068
Re: Startup Error with NetUserGetLocalGroups RC5
This has an example of how to properly explore user groups. I modified it for EG. https://programtalk.com/python-examples/win32net.NetUserGetLocalGroups/ def Groups(user_name=Name(), server=None): """ Retrieves direct and indirect group name the username is a member of for a specific computer/server...
- Thu Dec 06, 2018 3:23 pm
- Forum: Beta Version Bug Reports
- Topic: Startup Error with NetUserGetLocalGroups RC5
- Replies: 11
- Views: 8068
Re: Startup Error with NetUserGetLocalGroups RC5
Changing User.py line from line 51 with the code fixed the issue. def Groups(user_name=Name(), server=None): """ Retrieves direct and indirect group name the username is a member of for a specific computer/server. If no parameters are passed it will default to the current user and the local computer...
- Tue Dec 04, 2018 8:55 pm
- Forum: Beta Version Bug Reports
- Topic: Startup Error with NetUserGetLocalGroups RC5
- Replies: 11
- Views: 8068
Re: Startup Error with NetUserGetLocalGroups RC5
This does not happen in RC4. I am logged in under my domain account, I tried other accounts and they do the same thing. It could be a group policy that blocks this kind of access, not sure. Either way, this error should be trapped and the new option skipped if it fails. Pretty sure this is related t...
- Thu Nov 29, 2018 4:03 pm
- Forum: Beta Version Bug Reports
- Topic: Startup Error with NetUserGetLocalGroups RC5
- Replies: 11
- Views: 8068
Startup Error with NetUserGetLocalGroups RC5
Version: 0.5.0-rc2 Unhandled exception in WorkerThread <EventThread>: Callers stack: File "wx\_core.pyc", line 8657, in MainLoop File "wx\_core.pyc", line 7952, in MainLoop File "wx\_core.pyc", line 16766, in <lambda> Traceback (most recent call last) (0.5.0-rc5): File "C:\Program Files (x86)\EventG...
- Tue Jun 23, 2015 4:37 pm
- Forum: General Support
- Topic: wifi/3g
- Replies: 5
- Views: 2887
Re: wifi/3g
The other way is exposing a ported web service to your HOME DNS and forwarding this port via your router. Then EG would be exposed to the internet, but would accept outside commands.
- Tue Jun 23, 2015 4:35 pm
- Forum: General Support
- Topic: YDKJ controls using web server - need help
- Replies: 2
- Views: 1746
Re: YDKJ controls using web server - need help
I posted a long time ago, javascript that forwards button presses to EG's web service. I also have a python web framework that sends forms and such via the requests module. Hit me up if you need any of these.
- Wed Apr 29, 2015 5:03 pm
- Forum: Plugin Support
- Topic: Webserver - can it do UTF-8 in any way?
- Replies: 2
- Views: 1952
Re: Webserver - can it do UTF-8 in any way?
There are two ways you can handle text encoding for the web.
For instance if you are pulling text from a database server you can use:
{{str(variable).decode('latin-1').encode("utf-8")}}
Or if you just want to ignore non ascii characters:
{{str(variable).encode('ascii', 'ignore')}}
For instance if you are pulling text from a database server you can use:
{{str(variable).decode('latin-1').encode("utf-8")}}
Or if you just want to ignore non ascii characters:
{{str(variable).encode('ascii', 'ignore')}}
- Mon Dec 01, 2014 11:16 pm
- Forum: General Support
- Topic: Information Needed..
- Replies: 4
- Views: 2860
Re: Information Needed..
I have a temporarily on hold project (aiming to restart it in January) for home automation that uses eventghost and http://www.opensourceautomation.com/ which I integrated with their command line interface. It worked awesome. If you need assistance I can help.
Derek
Derek
- Wed Sep 24, 2014 4:07 pm
- Forum: General Support
- Topic: On Screen Menu over a LAN
- Replies: 18
- Views: 9840
Re: On Screen Menu over a LAN
Wouldn't the web service be a much easier way to do this? The requests plugin is perfect for this.
Or running a small database (postgres for instance) and having the clients access that database could be all you need to transfer large amounts of data too and from quickly.
Or running a small database (postgres for instance) and having the clients access that database could be all you need to transfer large amounts of data too and from quickly.
- Wed Sep 24, 2014 4:01 pm
- Forum: Feature Requests
- Topic: Web Based EG Gui
- Replies: 2
- Views: 4330
Web Based EG Gui
Would anyone be willing (or interested) in creating a web based gui for EG? If we want to take EG to the next level, I think this is necessary...
- Wed Sep 24, 2014 4:00 pm
- Forum: Feature Requests
- Topic: "Wait some time" but still let other actions run
- Replies: 4
- Views: 6258
Re: "Wait some time" but still let other actions run
The only other way is to launch a python script directly from EG, that runs it's own set of commands and waits. If you need an event to trigger when it's done, just click the check box.
- Wed Sep 24, 2014 3:57 pm
- Forum: Feature Requests
- Topic: Google Now Integration
- Replies: 2
- Views: 4365
Re: Google Now Integration
Why would you just not let EG launch chrome to that specific page? Would that not be easier?
- Wed Sep 24, 2014 3:56 pm
- Forum: Feature Requests
- Topic: Replacement Plugin required for Rainshadow HDMI-CEC
- Replies: 2
- Views: 4407
Re: Replacement Plugin required for Rainshadow HDMI-CEC
I actually have all of the files for a project that I was building (now on hold until January). If anyone needs them, PM me.