Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I'm totally not sure about the cause of that error, but this is my best guess. </p> <p>There is a particular PHP Setting which enables you to treat URLs as files. Normally imagecreatefromjpeg accepts a filename, I think. Since you are passing a URL, you need to make sure the particular setting is enabled. I believe you can find more info about it here: <a href="http://us2.php.net/file" rel="nofollow noreferrer">http://us2.php.net/file</a></p> <blockquote> <p>filename</p> <pre><code>Path to the file. Tip </code></pre> <p>A URL can be used as a filename with this function if the fopen wrappers have been enabled. See fopen() for more details on how to specify the filename and List of Supported Protocols/Wrappers for a list of supported URL protocols.</p> </blockquote> <p>Fopen wrappers: <a href="http://us2.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen" rel="nofollow noreferrer">http://us2.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen</a></p> <p>Your dev environment may not be setup with this, but your production environment could be.</p> <p>Edit</p> <p>This page lists your error: <a href="http://bugs.php.net/bug.php?id=11058" rel="nofollow noreferrer">http://bugs.php.net/bug.php?id=11058</a></p> <p>and mentions that a possible fix is by modifying your hosts file to explicitly include the ip/dns of the server you're accessing. </p> <blockquote> <p>i tryed to reconfigure my named configuration, without any result, to fix this. the problem was solved by adding the following line to my /etc/hosts:</p> <p>194.97.55.147 mx.freenet.de</p> </blockquote> <p>Maybe you can try this?</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload