Magento 1.9 Admin Dashboard Won't Load
My Magento 1.9 Admin Dashboard won't load anything past the header... The customer facing side of the site seems to be working fine and I can login and log out of the Admin Panel, but I can't do much in…
My Magento 1.9 Admin Dashboard won't load anything past the header... The customer facing side of the site seems to be working fine and I can login and log out of the Admin Panel, but I can't do much in…
I have created interceptor for catalog product controller's save action <type name="MagentoCatalogControllerAdminhtmlProductSave"> <plugin name="ricky_catalog_save_product" type="RickyCatalogPluginProductSave" sortOrder="10" /> </type> My plugin class is below namespace RickyCatalogPluginProduct; class Save { public function afterExecute( MagentoCatalogControllerAdminhtmlProductSave $subject, $result) { $productId = $subject->productId; // This…
I've been messing with this for two days and can't find the magical combination. I'm using Magento 2 on CentOS 7 with nginx handling SSL passing off to varnish on port 80 which passes on to apache on 8080 which…
I am trying to let a custom script which is in the root directory of the Magento 2 installation but when I navigate to it on my browser, it returns a 404 error. For testing I tried to create an…
i wrote a simple module to override this core Model class, but on frontend it shows this error message: "Fatal error: Uncaught TypeError: Argument 3 passed to MagentoQuoteModelQuoteShippingAssignmentShippingProcessor::__construct() must be an instance of MagentoQuoteModelShippingMethodManagement, instance of shippingmoduleModelShippingMethodManagementInterceptor ....." HERE IS…
How to fix error with this message when I click to button "Clean the Catalog Images Cache File": The directory "/var/www/html/project-community-edition/pub/media/catalog/product/cache/d08a1eb7b61352ea219ec60a4090e56e/h/t" cannot be deleted Warning!rmdir(/var/www/html/project-community-edition/pub/media/catalog/product/cache/d08a1eb7b61352ea219ec60a4090e56e/h/t): Directory not empty
what's up! I need a little help. I am trying to create some blocks usign the code below: <referenceContainer name="content"> <block class="GysaQuotesBlockAdminhtmlQuotesEdit" name="quotes_quotes_edit" template="Gysa_Quotes::quote/create/form.phtml"> <block class="GysaQuotesBlockAdminhtmlQuotesEditProducts" template="Gysa_Quotes::quote/create/products.phtml" name="quotes_quotes_edit_products" /> </block> </referenceContainer> But the block "quotes_quotes_edit_products" doens't showing up. I have…
Hi I currently have a magento 1.9 site which i use session storage as files as i find that using the database is very slow. I currently have about 16 gig of session files which i want to delete. If…
Please help me! i'm writing form save stock taking in magento 2, after save -> message not working , if reload page it's work. Thanks you so much FUNCTION EXECUTE IN MY CONTROLLER $data = $this->getRequest()->getParams(); $sku = $data['sku']; $qty…
I want to do nginx setup for handing two project with same domain. Example domain: example.com Angular project should run with example.com magento2 project should run with example.com/shop I tried the code below, but its not working. location /shop {…