codeigniter 我无法通过本地网络从Android手机访问我的整个本地网络

yhxst69z  于 2023-09-28  发布在  Android
关注(0)|答案(1)|浏览(138)

我一直在寻找一个类似的问题,但我找不到一个人有同样的问题。
我使用的是XAMPP V3.2.2。我可以通过Chrome(与笔记本电脑连接到同一个网络)从我的Android手机访问我的本地网络,只需输入我的笔记本电脑IPV4地址,然后输入/index.php/controller/id(因为我使用的是Codeigniter框架)。所以我的Android手机的Chrome中的URL是这样的:
192.168.xx.xx/index.php/principal/index
在这一点上,我可以访问主要和管理网页(背景图像加载,也引导和CSS)This is how it looks。但这里是一些问题开始出现的地方。
其中之一是主网页中的图像没有加载。正如我所说,背景图像加载没有任何问题,但画廊的图像没有加载。
另一个问题出现时,我试图使用一些功能,在管理员的网页,如“删除照片”或“上传图像”。当y按下提交按钮时,例如“上传图像”表单(这里是html):

<form action="http://localhost/index.php/principal/subir_foto" enctype="multipart/form-data" method="post" accept-charset="utf-8">                                                  
                <label  class='control-label'>Seleccionar:</label>
                <input id="img" required="true" type='file' name='imagen'/>                 
            <div class='input-group'>                                   
                <label class='control-label'>Descripción:</label>       
                <input type='text' name='alt' placeholder='Descripción'>
            </div>   
            <div class='input-group'>
                <input type='submit' name='agregar' value="Agregar">
            </div>             
           </form>

我把代码只是为了说明,它在我的笔记本电脑工作正常,我可以上传照片,删除它们,创建新的类别等。但正如我之前所说的,当我尝试在手机上做这些事情并按下提交按钮时,浏览器会显示此页面-> Error page
所以,我希望有人有同样的问题,并能给予我一个解决方案。
谢谢

9nvpjoqh

9nvpjoqh1#

我终于解决了问题...
在Codeigniter Config.php文件中,我更改:

$config['base_url'] = 'http://localhost/';

$localIP = getHostByName(getHostName());
$config['base_url'] = 'http://'.$localIP.'/';

所以现在我给CodeIgniter动态的服务器IP,现在移动的设备可以从服务器IP搜索图像,而不是像以前的“本地主机”那样从自己搜索图像。

相关问题