The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
54 views

How to rewrite a class that has already been rewritten?

Update: I found that the class I actually need to rewrite is SMDesign_SMDZoom_Block_Product_View_Media and not SMDesign_ColorswatchProductView_Block_Product_View_Media like I originally thought. ...
1
vote
1answer
19 views

Rewrite catalog_product_review controller does nothing

I tried rewrite catalog_product_review controller in admin but failed. I'm not aware of problem. Does anyone know problem maybe help me? Thanks config.xml: <config> <modules> ...
0
votes
3answers
72 views

Server, Database or Code Issue? Magento backend rewrites itself with a index.php which doesnt work

I will be honest and admit my cross posting in serverfault.com but the reason is that I believe it is a server fault, and now I am looking for proof to present to my dreaded hosting providers, ...
1
vote
2answers
35 views

How to define if url exists at Magento?

For example I have set of urls, their rewrites, etc: test1.html catalog/product.html thank-you catalog/product/view/id/34 All this URLs gives 200 OK at response. My aim is to filter incoming URLs ...
1
vote
3answers
46 views

How to get target url for entity before rewrite?

Suppose I want to open contact page: {website}/contact, this page is also represented like {website}cms/page/view/id/12. Is it possible to get somehow to get this url ({website}cms/page/view/id/12)? ...
1
vote
1answer
23 views

What are the rules that govern which entity “wins” in the case of conflicting URL paths

If multiple entities (e.g. a category, a product, a CMS page and a module frontname) all attempt to use the same SEF URL, what is the algorithm or process that Magento uses to decide which will be ...
0
votes
1answer
16 views

Want an existing report to be in a different menu area

I am trying to get the report here "admin/report_sales/sales" to be duplicated under my custom menu area. How should I do this as simply as possible? Should I create a menu item, then use a ...
0
votes
1answer
41 views

enable mod_rewrite

I know this topic has been posted before, but my problem seems to be slightly different and also I am only a beginner and the previous answers were too complicated for me. Here is my problem: I have ...
1
vote
1answer
67 views

Rewrite a local Extension Module doesn't work

I want to rewrite a model from an extension in the "local"-folder. My Extension is also in the "local"-folder but it doesn't work and i have no clue what I'm doing wrong. The relevant part of the ...
1
vote
0answers
38 views

Catalog URL Rewrites Duplicate Index (HY002)

I've seen this problem all around the internet and have yet to find a reasonable solution yet. I've truncated the core_url_rewrite table, set my permissions properly, etc. It seems there is an issue ...
1
vote
1answer
158 views

Clear All URL Rewrites - Enterprise

After several messed up imports, I've been left with a load of URL rewrites that I need to remove. I'm running Enterprise 1.13 When I've had this problem in community, I've simply truncated ...
1
vote
1answer
106 views

How can I prevent a module rewrite class conflict in Magento

Hi guys I have a class rewrite problem in Magento Onepage checkout as I have custom module in the local code pool and a third party extension in the community code pool both extending the same ...
3
votes
2answers
94 views

How to handle deprecated “Mysql4” classes when rewriting resource models

I have to rewrite Mage_Catalog_Model_Resource_Category_Flat. The old resource class Mage_Catalog_Model_Resource_Eav_Mysql4_Category_Flat is still there in Magento 1.7 for backwards compatibility and ...
0
votes
1answer
36 views

Rewrite catalog_blocks_layer_view does nothing

I've tried rewriting catalog_blocks_layer_view with this config in a module (the module is turned on and works.) but my rewrite isn't rewriting and I'm not getting any errors. Does anyone know what ...
0
votes
1answer
44 views

URL Rewrite - Rewrite all path and subpath to one page

Is it possible to rewrite a 'general' path to one page. Ex. suppose I want to rewrite all pages that contains mage.local.com/brands/* to: mage.local.com/brands/brands.html There is any way ...
1
vote
0answers
42 views

Strange links in store switcher -url create exsception-for store

So we have multiple websites configured to work on different domains, each of them can have multiple store views. Store codes are enabled "Add Store Code to Urls" and same thing happens when are ...
0
votes
3answers
165 views

Override Store Controller magento admin

I want to override the default functionality of stores (adding some fields like commission , location to deliver etc ), but i am not able to configure it. My configure file as follows ...
0
votes
3answers
135 views

How do I get a list of all class rewrites?

Is there a way to list all rewrites and maybe other potential conflicts besides reviewing all configuration files? I have to analyse some projects with lots of extensions and custom modifications and ...
-3
votes
1answer
339 views

.htaccess Settings (Rewrite URL Rule) working on Localhost, But Not on Live Site [closed]

My .htaccess Rewrite Rules are as follows : These settings works properly on localhost, But its not working on live website. RewriteCond %{REQUEST_URI} ^/eshop/$ RewriteRule ^(.*)$ ...
0
votes
2answers
112 views

Redirected to the Homepage when removed www. from URL

Say, My Website is : www.example.com I have one page : www.example.com/contactus If I remove "www." from above url, means : example.com/contactus It redirects me to the homepage. Why ?? Checkout ...
1
vote
1answer
421 views

Nginx working configuration for 1.7.XX

I have this store running on Apache, Magento 1.7.0.2 Then I decided to clone the application on a test server, running Nginx. I first tried mine, naive rewrite: rewrite ^(.*index\.php)\/(.*) $1?$2 ...
1
vote
1answer
79 views

How do extensions override non-rewritable classes

I was going to put together a tiny extension to enable Template hints under global scope, but got stuck trying to rewrite core/template. Class rewrites only work for classes instantiated via one of ...
15
votes
5answers
253 views

What do I do when an extension overwrites a class globally and I want to use the original?

We're using an extension which globally overwrites the Mage_Catalog_Block_Product_List_Toolbar block. <global> <blocks> <catalog> <rewrite> ...