1- YEDEK ALIN

2- Header şablonundan ilgili kodları aşağıdakilerle değiştirin:
header('Access-Control-Allow-Origin: *');
header("Access-Control-Allow-Headers: X-API-KEY, Origin, X-Requested-With, Content-Type, Accept, Access-Control-Request-Method, Authorization");
header("Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE");
header("Allow: GET, POST, OPTIONS, PUT, DELETE");
3- .htaccess dosyasını açın ve en üstüne ekleyin:
Options Indexes FollowSymLinks MultiViews
Kaydedip şimdi deneyin bakalım ne olacak. Eğer yine olmazsa, .htaccess dosyasında bulun:
<IfModule mod_headers.c>
  Header set Access-Control-Allow-Origin "*"
</IfModule>
Bununla değiştirin:
<FilesMatch "\.(json)$">
    <IfModule mod_headers.c>
        Header add Content-Type "application/json"
        Header add Access-Control-Allow-Methods "GET,HEAD,POST,PUT,DELETE,OPTIONS"
        Header add Access-Control-Allow-Headers "Auth-Token,Content-Type"
        Header add Access-Control-Allow-Origin "*"
    </IfModule>
</FilesMatch>
Bir de böyle denersiniz.