Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8926697
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:02:10+00:00 2026-06-15T08:02:10+00:00

I am making a script to help make it easier to import products into

  • 0

I am making a script to help make it easier to import products into our magento installation and it now partially works. I am however having issues adding the stock quantaty and anything else that has to do with stock as well as meta title, description and keywords. I also can’t add my custom attribute which is called EAN. Here is my code which I have commented to help understand what works and what does not work.

Mage::init();
$product = Mage::getModel('catalog/product');

$product->setSku($itemid);
$product->setName($name);
$product->setDescription($desc);
$product->setShortDescription($longname);
$product->setPrice($price);
$product->setTypeId($prodtype);
$product->setAttributeSetId($attributesetid); // need to look this up
$product->setCategoryIds($categorys); // need to look these up
$product->setWeight(10.0);
$product->setTaxClassId(2); // taxable goods
$product->setVisibility(4); // catalog, search
$product->setStatus(1); // enabled
//After this nothing is added
$product->setMetaTitle($name); //does not work
$product->setMetaDescription($longname); //does not work
$product->setMetaKeywords($keywords); //does not work
$product->setEan($ean); //custom variable, does not work
$product->setCreatedAt(strtotime('now')); //does not work

// assign product to the default website
$product->setWebsiteIds(array(Mage::app()->getStore(true)->getWebsite()->getId())); //This works

$count = 0;
foreach ($listOfImages as $imagePath) {
    $mode = array();
    if ($count == 0) {
        $mode = array("thumbnail", "small_image", "image");
    }
    $product->addImageToMediaGallery($imagePath, $mode, false, false); //works!
    $count++;
}
//This does not work at all
$stockData = Mage::getModel('cataloginventory/stock_item');
$stockData->assignProduct($product);
$stockData['qty'] = $stock;
if ($stock > 0) {
$stockData->setData('is_in_stock', 1);
} else {
$stockData->setData('is_in_stock', 0);
}
$stockData->setData('manage_stock', 1);
$stockData->setData('use_config_manage_stock', 1);
$stockData->setData('stock_id', 1);
$stockData->setData('store_id', array(Mage::app()->getStore(true)->getWebsite()->getId()));
$product->setStockData($stockData);

//Saving the product works
try {
    $product->save();
} catch (Exception $ex) {
    //Handle the error
    print_r($ex);
 }

Thanks for your help!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T08:02:12+00:00Added an answer on June 15, 2026 at 8:02 am

    After a few hours of searching I figured it out. Since I am in a file outside of Magento i needed to create the admin session aparently. This has solved most of the issues I had. I added the following code.

    // Set an Admin Session
    Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
    Mage::getSingleton('core/session', array('name' => 'adminhtml'));
    $userModel = Mage::getModel('admin/user');
    $userModel->setUserId(1);
    $session = Mage::getSingleton('admin/session');
    $session->setUser($userModel);
    $session->setAcl(Mage::getResourceModel('admin/acl')->loadAcl());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want help on this script I am making... I want my website to
I am making a tiny script to make a HTML element editable. When you
im making some script with mechanize.browser module. one of problem is all other thing
While making AutoHotkey-script I encountered the following problem. I need navigate listbox (one position
I am making a script in which php will fwrite and it ads it
I'm making a script that goes through a table that contains all the other
I'm making the script for easy upload many files. I've tried fyneworks plugin ,
I'm making a script with ruby that must render frames at 24 frames per
I'm making a script to list all files within a folder. The intention is
I'm working on making a script with node.js for setting up my dzen2 in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.