It always fails at exactly at “Status: Preparing to install – 80%”. I have tried everything I could possibly think of: DISM.exe /Online /Cleanup-image /Scanhealth sfc /scannow Removing c:WindowsSoftwareDistribution (https://community.spiceworks.com/topic/2223969-1809-update-error-at-install-0x80070490?page=1#entry-8486582) or “Windows Repair” (https://www.tweaking.com/content/page/windows_repair_all_in_one.html). The WindowsUpdate.log I get with Get-WindowsUpdateLog doesn’t contain anything useful either. The last messages are: [...] […]
Blog
I have three programs running that will encounter sporadic updates to long running tasks. I would like to be notified when the program encounters an update/something changes on in their specific window. I have to have all three programs running at once, I don’t have source code access to any […]
hope you can help me out! Best regards Joost [2020-03-28 19:24:43] main.CRITICAL: Class MagentoFrameworkSessionConfigConfigInterfaceProxy does not exist {“exception”:”[object] (ReflectionException(code: -1): Class MagentoFrameworkSessionConfigConfigInterfaceProxy does not exist at /home/admin/domains/aquariumvissenwinkel.nl/public_html/dev/vendor/magento/framework/Code/Reader/ClassReader.php:26)”} [] [2020-03-28 19:24:44] main.CRITICAL: Class MagentoFrameworkSessionConfigConfigInterfaceProxy does not exist {“exception”:”[object] (ReflectionException(code: -1): Class MagentoFrameworkSessionConfigConfigInterfaceProxy does not exist at /home/admin/domains/aquariumvissenwinkel.nl/public_html/dev/vendor/magento/framework/Code/Reader/ClassReader.php:26)”} [] [2020-03-28 19:26:19] main.CRITICAL: […]
I created a custom api to get review and rating summary: public function getRatingSummary($productId) { $result =[]; $product = $this->_productRepository->getById($productId); $idArray = [$productId]; $reviewsCollection = $this->_reviewCollectionFactory->create() ->addFieldToFilter('entity_pk_value',array("in" => $idArray)) ->addStatusFilter(MagentoReviewModelReview::STATUS_APPROVED) ->addRateVotes(); $ratingSummary = $reviewsCollection->getSelect(); $starsData = array(); foreach ($reviewsCollection->getItems() as $review) { foreach( $review->getRatingVotes() as $_vote ) { $rating = […]
The store is composed of different websites with multiple stores and multiple storeviews. I’m developing a functionality to get the particular storeview depending on the location of the customer and get its product catalog with prices. But when I go to get the information from the current store I am […]