![]() |
Accessing an Assets folder in Public - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: Accessing an Assets folder in Public (/showthread.php?tid=75542) |
Accessing an Assets folder in Public - ByteHive - 02-19-2020 I tried to acces a assets folder in the public folder to stor emy js and css files is there a best praxis how to do that ? or do i need to change soemthign ? RE: Accessing an Assets folder in Public - captain-sensible - 02-19-2020 (02-19-2020, 08:37 AM)ByteHive Wrote: I tried to acces a assets folder in the public folder to stor emy js and css files is there a best praxis how to do that ?i'm still playing around with CI 4 (on dev basis) ; but the ways i've set up my public directory is to have in the public directory the following directories : css fonts images js The above is pretty explanatory. in fonts dir , i have individual dirs for fontface and also font awesome. my header view at /app/Views/ accesses a style sheet called style.css as follows: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <link rel="stylesheet" type="text/css" href="<?php echo base_url('css/style.css'); ?> " /> i'm sure there are better ways of doing it. I've managed to get bootstrap 4 working by having these lines in style.css @import url("bootstrap.css"); @import url("custom.css"); @import url("font-face.css"); bootstrap.css, custom.css and font-face are all in same directory as style.css RE: Accessing an Assets folder in Public - ByteHive - 02-19-2020 (02-19-2020, 02:13 PM)captain-sensible Wrote:(02-19-2020, 08:37 AM)ByteHive Wrote: I tried to acces a assets folder in the public folder to stor emy js and css files is there a best praxis how to do that ?i'm still playing around with CI 4 (on dev basis) ; but the ways i've set up my public directory is to have in the public directory the following directories : RE: Accessing an Assets folder in Public - captain-sensible - 02-19-2020 (02-19-2020, 02:32 PM)ByteHive Wrote:(02-19-2020, 02:13 PM)captain-sensible Wrote: Did you change the httacces file? maybe you can elaborate on assets and your set up ? with mine as you can see, css directory is straight inside public , if yours is something like public/asset/css then your path must be quoted to use them RE: Accessing an Assets folder in Public - InsiteFX - 02-20-2020 Code: public RE: Accessing an Assets folder in Public - MGatner - 02-22-2020 You might also be interested in this module that helps publish and load assets: https://github.com/tattersoftware/codeigniter4-assets RE: Accessing an Assets folder in Public - captain-sensible - 02-22-2020 (02-22-2020, 02:10 PM)MGatner Wrote: You might also be interested in this module that helps publish and load assets: So far i have font face working, font awesome , bootstrap4 nav that collapses to burger at breakpoint. I'm not finding ti too bad to link things. For me there is no word "asset" in any path,because there is no directory "asset" anywhere simply css,js etc |