使用 Wampserver 查找我的 HTTP POST URL
我正在尝试将 Android 应用程序中的图像发布到 php Wampserver。
服务器端脚本位于 C:\wamp\apps\phpmyadmin3.4.5\android\base.php
我的应用程序上的 http post URL 是:“http://”ip address”/android/base.php”
这是不正确的?
I'm trying to post images from my android application to php Wampserver.
The server side script is in C:\wamp\apps\phpmyadmin3.4.5\android\base.php
My http post URL on my app is : "http://"ip address"/android/base.php"
Is this incorrect?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,让我们分成几个部分来解决这个问题...
首先:您需要一个固定的 IP/域才能从网络访问您的计算机。如果你的公共IP不断变化,这是不好的(我指的是公共IP...与通常为192.168的私有网络不同...)
如果你没有固定IP,你可以使用像http://www.no-ip.com/
第二:完成第一步后,您需要确保路由得到妥善处理...
您应该位于路由器后面(我猜)你必须将你的笔记本电脑设置为固定IP并在路由器中添加规则以将端口80上的所有请求转发到你的笔记本电脑固定IP
第三:测试以检查它是否正常工作...你的基本apache配置可能会工作就这样。如果不是,您可以阅读如何配置它:
http://httpd.apache.org/docs/2.0/vhosts/examples.html
希望这有帮助...如果没有,请告诉
注意:您可能需要配置笔记本电脑防火墙(如果安装了的话)
Well let's break this in parts...
First: You need a fixed ip/domain to access your computer from the web. If your public ip keeps changing this is no good (i'm referring to public ip... different from private network which is normally 192.168...)
If you don't have fixed ip you can use a service like http://www.no-ip.com/
Second: Once you have first step covered, you'll need to make sure the routing is taken care...
You should be behind a router (i guess) and you'll have to set your laptop to fixed ip and add rules in router to forward all request on port 80 to your laptop fixed ip
Third: Test to check if it's working... Your base apache conf might work as it is. If it's not you can read how to configure it in:
http://httpd.apache.org/docs/2.0/vhosts/examples.html
Hope this helps... If not please tell
Note: You may have to configure your laptop firewall (if any installed)
我的 URL 是正确的,我只是没有将我的 Android 设备连接到我的无线网络。
http://mrjoelkemp.com/ 2011/06/android-physical-device-connection-to-local-pc-wamp-server/
My URL was correct, I just hadn't connected my Android device to my wireless network.
http://mrjoelkemp.com/2011/06/android-physical-device-connection-to-local-pc-wamp-server/