![]() |
2011-01-13
, 09:36
|
Posts: 4 |
Thanked: 1 time |
Joined on Jan 2011
|
#42
|
Hi, thanks for the idea and it's a fantastic setup but I've got a couple of problems I can't solve so any help would be appreciated
I've edited the conf to enable sql now, made it all executable so I can see my web server locally and via dyndns but I've got 3 problems-
1) I can retrieve my calls list but not my message list
2)I can't initiate a phone call, I just get timed out but if I use phone-control on the device itself it works
3)I can't send sms messages from the device, I get timed out again...
I can use the other commands like launching the browser and sending a message to pop up on the phone and I know sql is working now so I'm a bit stumped!
![]() |
2011-01-13
, 14:42
|
Posts: 4 |
Thanked: 1 time |
Joined on Jan 2011
|
#43
|
Hi, thanks for the idea and it's a fantastic setup but I've got a couple of problems I can't solve so any help would be appreciated
I've edited the conf to enable sql now, made it all executable so I can see my web server locally and via dyndns but I've got 3 problems-
1) I can retrieve my calls list but not my message list
2)I can't initiate a phone call, I just get timed out but if I use phone-control on the device itself it works
3)I can't send sms messages from the device, I get timed out again...
I can use the other commands like launching the browser and sending a message to pop up on the phone and I know sql is working now so I'm a bit stumped!
The Following User Says Thank You to el_minster For This Useful Post: | ||
![]() |
2011-01-14
, 11:14
|
Posts: 4 |
Thanked: 1 time |
Joined on Jan 2011
|
#44
|
<form enctype="multipart/form-data" action="uploader.php" method="POST"> <input type="hidden" name="MAX_FILE_SIZE" value="100000" /> Choose a file to upload: <input name="uploadedfile" type="file" /><br /> <input type="submit" value="Upload File" /> </form>
<?php // Where the file is going to be placed $target_path = "uploads/"; /* Add the original filename to our target path. Result is "uploads/filename.extension" */ $target_path = $target_path . basename( $_FILES['uploadedfile']['name']); if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) { echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded"; } else{ echo "There was an error uploading the file, please try again!"; } ?>
I've edited the conf to enable sql now, made it all executable so I can see my web server locally and via dyndns but I've got 3 problems-
1) I can retrieve my calls list but not my message list
2)I can't initiate a phone call, I just get timed out but if I use phone-control on the device itself it works
3)I can't send sms messages from the device, I get timed out again...
I can use the other commands like launching the browser and sending a message to pop up on the phone and I know sql is working now so I'm a bit stumped!