Magento1.6 Custom Status in Admin [closed] - magento

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want add all status in magento sales order Comment History Box. I have magento1.6.2.0.
I have try to changing in app/code/core/Mage/Sales/etc/config.xml file and add statuses but nothing was changed please help.

No need to change in the code go to Admin Panel->System->Order Statuses you could create states and assign them to whichever status you want them to be.
In magento States are the visible status of the order and Status is the internal status of the order. A bit confusing but if you take a look at the page you should be to get an idea of what this means.

Related

Opening a file in ruby [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I tried opening a file in ruby with the following code but I got this unknown error message.
No such file or directory - -p
Code:
myfile=File.open("/home/cucumber/profiles/data.csv","r")
Please advice with the correct method to do.
Ensure whether file exists in the designated location or not, either you check it manually or use in code:
File.exists?("/home/cucumber/profiles/data.csv")

Getting Data using JSON & AJAX in Ruby on Rails [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
How can I get data from database on entering/changing keywords (like on change command of textfield) usin JSON & AJAX in Ruby on Rails?
Please give me any tutorial or the code how to do this.
jQuery change()
jQuery AJAX
respond_to

How to get the downloadable products link collection order by title [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am struggling from last two hours to get the all downloadable product links order by title, but not able to achieve because it's giving the wrong order by collection.
Can anyone help me :D
You can get the all downloadable collection by
$products = Mage::getModel('downloadable/link')->getCollection();
but when you try to add the title in this collection using
$products->->addTitleToResult();
then this will automatically add two sorting order one by sort_order ASC and second one by title ASC. So that you will never get the actual sorting result because sort_order always come first. For more details see
Mage_Downloadable_Model_Resource_Link_Collection::addTitleToResult()
So you need to override the above class in your local pool and need to remove
->order('main_table.sort_order ASC' from addTitleToResult()
or create a custom class for the same.

Link to a saved interactive report [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I have several saved queries in an interactive report (IR). How can I generate a link to any particular saved report in the IR?
http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/bldapp_rpt.htm#BABEJEBJ
You can link to saved primary default, alternative default and public
reports using IR_REPORT_[report_alias] in the request value of the
URL.
The following examples demonstrate how to link to a primary report
(report_alias=12345):
This example links to a primary report:
f?p=100:1:&APP_SESSION.:IR_REPORT_12345
This example links, resets,
and clears primary report settings:
f?p=100:1:&APP_SESSION.:IR_REPORT_12345::RIR,CIR:
This example links,
resets, and clears primary report settings. It additionally creates a
ENAME = 'KING' filter on the primary report:
f?p=100:1:&APP_SESSION.:IR_REPORT_12345::RIR,CIR:IR_ENAME:KING

How to set form_validation error messages for 3 different languages in codeigniter? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I'm thinking about duplicating the system\english\form_validation_lang.php file or folder, but I don't know how could I work that out.
For new languages, you should just create a new form_validation_lang.php file inside each language folder, like:
application/language/portugues/form_validation_lang.php
application/language/espanol/form_validation_lang.php
application/language/french/form_validation_lang.php
Then, you just have to set the appropriate language and Codeigniter will fetch the translations according to the language set.
More information can be found in the Codeigniter User Guide

Resources