There are two addons i use:
1. https://xenforo.com/community/resources/convert-image-resource.4779/ running
2. https://xenforo.com/community/resources/import-avatar-from-url.3861/ not running any more?
While Andy uses for 1) some more code with CURL to fetch the image, Nobita just uses
I have to find out, why Nobitas addon is not running for me; maybe the functions from above are not useable anymore?
Why one juses two lines of code, the other one CURL with much more lines?
1. https://xenforo.com/community/resources/convert-image-resource.4779/ running
2. https://xenforo.com/community/resources/import-avatar-from-url.3861/ not running any more?
While Andy uses for 1) some more code with CURL to fetch the image, Nobita just uses
Code:
$content = @file_get_contents($url);
$imginfo = @getimagesize($content);
I have to find out, why Nobitas addon is not running for me; maybe the functions from above are not useable anymore?
Why one juses two lines of code, the other one CURL with much more lines?