View Single Post
  #4  
Old 09-23-2017, 03:29 PM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 63,589
Dinocanid is on a distinguished road
Default

After reading through it, I'm not entirely sure what the answer is saying to do. So I would break this line (line 10):
PHP Code:
$cleanwid  end(explode('/',trim($fullurl,'/'))); 
Into more variables?

EDIT: Nevermind, I got rid of the strict standard error by doing this:
PHP Code:
//A not-so-clean way to get the wid of the parent page
$fullurl $_SERVER['HTTP_REFERER'];
$scrub explode('/',trim($fullurl,'/'));
$cleanwid  end($scrub); 
It still doesn't fix the "failed to read file" issue though. I already contacted HoF about it, and he said it might be an issue with the server and not imagick (which is beyond my control). He's looking into it.
__________________

Last edited by Dinocanid; 09-23-2017 at 03:37 PM.
Reply With Quote