php - bootstrap.min.css Failed to load resource: net::ERR_CONNECTION_REFUSED -
i struggling linking files : css, javascript, bootstrap, images etc... on local server works fine. when upload web server got error...and know because of path have. searches on local. , using codeigniter framework, have no idea path should when put online.
example :
<link rel="stylesheet" type="text/css" href="<?php echo css_folder_url('reset.css'); ?>" media="screen"/> <link href="<?php echo base_url() ?>web/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
this how need link in framework
maybe should change in host file :
andreaportfolio.local ::1 andreaportfolio.local --> maybe should .com instead of local
this error means specific file not found. either path wrong or file not present want be. try access entering source address in browser check if exists there. browse directories on server ensure path correct. may copy , paste relative path correct.
there can '/' missing well, example:
<link href="<?php echo base_url() ?>web/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
could be
<link href="<?php echo base_url() ?>/web/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
wiki
Comments
Post a Comment