WP E-Commerce creating categories programmaticaly [closed]

You can use wp_insert_term to add terms to the wpsc_product_category taxonomy:

<?php
$args = array(
    'description'=> 'term description.',
    'slug' => 'my-term'
);
wp_insert_term( 'My term', 'wpsc_product_category', $args );
?>

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)