Home General questions Troubleshooting Images are not imported from URL
Images are not imported from URL
The problem may be caused by that URL file-access is disabled in your server configuration.
In order to check it do the following:
- Create a test file (test.php) with the following content in the CS-Cart root directory:
<?php error_reporting(E_ALL); ini_set("display_errors", "on"); $test = file_get_contents("http://www.your_domain.com/[your_cscart_directory]/store_closed.gif"); echo $test; ?>
where replace "your_domain" with the name of your domain, "[your_cscart_directory]" with the name of the directory where CS-Cart is installed on your server. - Try to launch this file in a browser:
http://www.your_domain.com/test.php
Contact your hosting administrator regarding this problem and ask him to enable this function on your account.
