skip to Main Content

phpmyadmin is not loading correctly

i tried to login to my phpmyadmin (EC2 instance) i tried to visit domain.com/phpmyadmin it didn't load then I typed domain.com/phpmyadmin/index.php it loads. After logging in I am seeing total mess of my phpmyadmin What could be the reason for…

VIEW QUESTION

Getting error while adding product to cart – Magento

I tried to add product programmatically. and i use below code $cart = Mage::getSingleton('checkout/cart'); $cart->init(); $paramater = array( 'product' => $product->getId(), 'related_product' => null, 'qty' => 1, 'form_key' => Mage::getSingleton('core/session')->getFormKey() ); $request = new Varien_Object(); $request->setData($paramater); $cart->addProduct($product, $request); $cart->save(); This…

VIEW QUESTION
Back To Top
Search