2013-07-11 7 views
0

mediatemple gridserver에서 사용하려고하는 Laravel 4 db : seed 파일이 있습니다. 숙련공 (php artisan migrate)과 함께 마이그레이션을 수행하고 테이블을 만들 수 있었지만 테이블을 시드 할 수는 없습니다. 이 데이터베이스 시딩은 로컬 호스트에서 제대로 작동했습니다. 현재 라이브 서버에서만 문제가 발생했습니다.DB : Laravel 4의 시드 파일이 Mediatemple gridserver에서 작동하지 않고 로컬 호스트에서 제대로 작동합니까?

{"error":{"type":"Symfony\\Component\\Debug\\Exception\\FatalErrorException","message":"syntax error, unexpected '['","file":"\/nfs\/c09\/h04\/mnt\/139243\/domains\/crowdsets.com\/html\/app\/database\/seeds\/ArtistsTableSeeder.php","[email protected]:/home/139243/domains/crowdsets.com/html$ php artisan db:seed 

그것은 배열 시작하는 행에 대해 불평 : :이 오류 뱉어됩니다

ArtistsTableSeeder.php: 

class ArtistsTableSeeder extends Seeder { 

    public function run() 
    { 
     // Uncomment the below to wipe the table clean before populating 
     // DB::table('artists')->delete(); 

     $artists = array(

     ); 

     $Artists = [ 
      ['stage_name' => 'Blah', 'city' => 'Blah', 'state' => 'blah', 'video_path' => 'youtube.com', 'image_path' => 'filepickerimage', 'soundcloud_profile' => 'https://soundcloud.com/', 'description' => '', 'created_at' => new DateTime, 'updated_at' => new DateTime] 


     ]; 

     // Uncomment the below to run the seeder 
     DB::table('artists')->insert($Artists); 
    } 

} 

:

$Artists = [ 

을 나는 아무 생각도 이유가 없다 여기에 시드 파일입니다 이 일이 일어나고 있습니다. 약간의 도움을 주시면 감사하겠습니다. 고맙습니다!

답변

4

당신이 얻는 문법 오류는 PHP 5.4 (short array syntax)에 추가 된 기능 때문일 가능성이 큽니다. 따라서 hoster가 여전히 5.3.x를 실행하고 있다고 생각됩니다. Mediatemple 그리드 서버에서 PHP 버전을 확인하고 필요한 경우 업데이트하십시오.

+0

프로덕션 서버에서 PHP 5.4를 지원하지 않습니다 ... – Andreyco

+0

최악의 경우 최악의 경우, 코드에서'[...]'의 인스턴스를'array (...)'로 변경할 수 있습니다. Laravel은 모두 PHP 5.3 호환 - 5.4 특정 구문을 사용하지 않습니다. – fideloper

+0

mediatemple에서, 내 도메인에 php 5.3.6 또는 5.5.0을 사용할 수있는 옵션이 주어졌습니다. 5.5.0을 사용하면 여전히 동일한 구문 오류가 발생합니다. – user1072337