Posts by Junior • 21 points
3 posts
-
0
votes2
answers992
viewsQ: Check Internet Android
To check the internet connection I made the following method. public class ChecaInternet extends AsyncTask<Void, Void, Boolean> { @Override protected Boolean doInBackground(Void... params) {…
-
1
votes1
answer329
viewsA: Session Variable does not work Wordpress
The error is very explicit in what it says, the path where PHP saves sessions did not exist on my server, so I found the code session_save_path(realpath(dirname($_SERVER['DOCUMENT_ROOT']) .…
-
1
votes1
answer329
viewsQ: Session Variable does not work Wordpress
I cannot recover session variable using the following code This is a file to which requests are sent, I declare a session variable to use on another page that is called after completion of the file.…