I have a problem while storing into the database.
If I execute an insert query everything is fine and working but if I use save() function, it is inserted into the database but empty,
Even if I use this example.
$product = oxNew( 'oxarticle' );
$product->oxarticles__oxtitle = new oxField ( 'productTitle' );
$product->oxarticles__oxshortdesc = new oxField( 'shortdescription' );
$product->save();