Questions tagged [querystring]
The querystring tag has no summary.
25 questions
1 vote
1 answer
126 views
Magento 2 Pagination Urls changing from ?p= to &p=
For some strange reason, despite not running any recent updates, our pagination links have broken on all categories. So they are occuring as &p=2 rather than ?p=2. The link still works if you ...
0 votes
0 answers
752 views
Magento 2 - Pass Currency Param in URL
I want to add Currency parameter in Magento 2 page URL.Like www.example.com/product.html?currency=GBP Is there any way to do this? Need help.Thanks EDIT: Created a plugin but not working di.xml &...
3 votes
2 answers
8k views
Magento2 : How To Get Parameters from URL In Controller
http://mystagesite.com/magento232/custom/module/check/?params=<%3Fxml+version%3D"1.0"+encoding%3D"UTF-8"+standalone%3D"yes"%3F>6<%2FRESPONSECODE>Invalid+Session+Token%3A+Session+has+Timed+Out<...
0 votes
1 answer
44 views
get querystring variables to display on static page
How to get querystring information and display on a landingpage? This is a link created on another website with variables to pass to magento2.3.1 website. www.mymagentowebsite.com/staticpage.html?w=...
0 votes
1 answer
407 views
Magento 2 custom module shortened url with query string goes 404
I have a custom controller page : http://dev.test/myfrontend/ The above works fine. also the bellow one works http://dev.test/myfrontend/index/index/ Now if I add query string: http://dev.test/...
1 vote
1 answer
78 views
Magento 1.9 : I have a very strange Magento problem
Error : SQLSTATE[42S02]: Base table or view not found: 1146 Table 'i1115580_mg3.sales_flat_shipment_track' doesn't exist Query: SELECT track_number FROM sales_flat_shipment_track
2 votes
2 answers
358 views
Setting my base_url to Secure
Setting my base_url to HTTPS drops the query string I set the base URL for my site to https://www.example.com, now when user comes to my site from a non secure URL (link) that has a query at the end ...
2 votes
1 answer
8k views
Magento 1.9 - how to display Magento query as a SQL string?
It works beautifully if I'm trying to get collection but it won't for single product by SKU. for example: $product = Mage::getModel('catalog/product')->loadByAttribute('sku', $_sku); echo $...