CsvImport -- Error

Does anybody know what these errors mean:
2016-01-15T08:51:51-07:00 ERR (3): ImageMagick failed with status code 1.
2016-01-15T08:52:06-07:00 ERR (3): [CsvImport][#1] Stopped import or undo import due to error: Maximum execution time of 30 seconds exceeded

(using CsvImport 2.0.3, on Omeka 2.3.1)

Thanks,

Melania

It looks like the process of importing from the CSV file is taking longer than PHP is configured to allow. That's a little odd, since the import process usually uses a background process, which I wouldn't expect to have that maximum execution time.

If you look in application/config/config.ini for this line: jobs.dispatcher.longRunning, what value it is set to? It should be "Omeka_Job_Dispatcher_Adapter_BackgroundProcess" to avoid that error, but sometimes there are reasons to change it to avoid other errors.

Thanks Patrick...you're bang on...my admin increase the php setting to 120 instead of 30, it works better. Thanks again.