Android Question Php running stopped

Status
Not open for further replies.

Adamdam

Active Member
Licensed User
Longtime User
Dear all,
Greetings
I moved to new server, the first one with address like http://hi-tech.com/... the second one https://hi-tech.com/...
All posted php (in my app) stopped.



I normally use following code:

Sub ExecuteRemoteQuery(Query As String, JobName As String)
Dim job As HttpJob
job.Initialize(JobName, Me)
job.PostString("https://hi-tech.com/getdata.php", Query) '' job.PostString("http://hi-tech.com/getdata.php", Query)
End Sub

Sub JobDone(Job As HttpJob)
res = Job.GetString
If Job.Success Then
Log("JobDone Success")
end if

end sub




now this code not work : (i.e. Job.Success not occurred )

Any suggestion, please
 

josejad

Expert
Licensed User
Longtime User
If I try to access the server with a web browser, I get an error too… the server can’t be reached. Is it working?
 
Upvote 0
Status
Not open for further replies.
Top