Skip to content

magento setup:upgrade – JavaScript files broken

When I run the following commends, theme JavaScript file broken php bin/magento setup:upgrade php bin/magento cache:flush php bin/magento cache:clean Broken files (net::ERR_ABORTED 404 (Not Found)): /pub/static/version1697560192/frontend/Smartwave/porto/en_US/js/jquery.sticky.min.js /pub/static/version1697560192/frontend/Smartwave/porto/en_US/js/jquery.lazyload.jsĀ  pub/static/version1697560192/frontend/Smartwave/porto/en_US/StripeIntegration_Payments/js/stripe_payments_express.js Notes: Magento ver. 2.4.1 Application mode is default.

Tracking User Interactions, Saving them to Database Table and then send it to GA4 . Events and data events are saved as null in my table

This is the function that captures some data protected function captureRequestData(RequestInterface $oRequest, $aPostParams) { return [ ‘request’ => [ ‘status’ =>’pending’, ‘params’ => json_encode($aPostParams), ‘endpoint’ => $oRequest->getRequestUri(), ‘view’ => json_encode($oRequest->getHeaders()->toArray()), ‘event’ => $this->_oEventobserver->getEventName(), ‘data’ => json_encode($this->_oEventobserver->getEventData() ), ‘ip’ => $oRequest->getClientIp(),… Read More »Tracking User Interactions, Saving them to Database Table and then send it to GA4 . Events and data events are saved as null in my table