Oh, and if you are using the Stock By Attribute version of the easypopulate.php then about line 549 you'll need to change:
PHP Code:
join products_with_attributes_stock PWAS
on PWAS.stock_attributes = pa.products_attributes_id
to
PHP Code:
JOIN products_with_attributes_stock pwas
on pwas.stock_attributes = pa.products_attributes_id
(The reason: in that query, one of the select fields is pwas.quantity, but the table pwas didn't exist, just PWAS. As you may have deduced by reading this, you could have alterantively kept the lines above the same and instead changed pwas.quantity as pwas_products_quantity, to PWAS.quantity as pwas_products_quantity,. Either option should word, but I did not test the alternative one.)
Note - Changing join to JOIN didn't fix anything, that was just to add consistency to the style of the query.