Hello, beginner here.
First, Processwire is amazing. I try it from yesterday and already made so much progress!
A field allow me to unzip an archive in assets/. Now I would like to include in my template a stylesheet.css extracted from the archive.
I think I meet some permission issue because nothing is included. Can you confirm and help me?
$fontlist = $pages->get("/fonts/");
foreach($fontlist->children as $child){
$stylesheet = $child->webfont_archive->url.'stylesheet.css';
echo "<a href='".$stylesheet."'>".$stylesheet."</a>"; // This link is ok
include($stylesheet); // Nothing here
}