Hey guys,
like the topic said, I've got a problem with a Model.
I developed my Site on my localhost with MAMP and everything just works as expected. Now I uploaded all files to my webhost and ex-/imported my database. And now on my webserver I get this error:
Column 'storage' is not part of the column map
And I don't know why, because I didn't change anything on my code or database. If I take a look into the Modelfile where this error comes from, everything is ok:
/**
* Independent Column Mapping.
*/
public function columnMap()
{
return array(
'id' => 'id',
'name' => 'name',
'description' => 'description',
'att' => 'att',
'hp' => 'hp',
'shield' => 'shield',
'speed' => 'speed',
'storage' => 'storage',
'sprit' => 'sprit',
'metal' => 'metal',
'silicium' => 'silicium'
);
}
I already restarted my apache and nginx, but the problem is still there.
Hope someone can help me to fix this.
Fuhunter