Posts by Jonatas Freitas • 1 point
2 posts
-
0
votes1
answer35
viewsA: List $_SESSION from different php users
You will always return only the session that is running. I suggest for each of the logged users, a hash in the database, from time to time validate this hash, in this same function delete the hash…
-
0
votes0
answers24
viewsQ: Application . net does not create service in windows (sc create)
I have the following code: public static void CriarServico(string nomeServico, string caminhoExecutavel) { try { string arguments = string.Format("create {0} binPath={1} type=own start=auto",…