Doing some debugging, I can tell for sure that filter_name is not being set before the autocomplete function is called.
\admin\controller\catalog\attribute.php
~415 or so
if (isset($this->request->get['filter_name'])) {
That's an empty value...
When I use Firebug Console to check what was posted...
filter_name=<whatever you typed in>
The HTTP Get is taking place, but the $this->request->get variable isn't getting filled up.
This variable does fill though:
$this->request->post['filter_name']
So, if you go into
\admin\controller\catalog\attribute.php
And change:
$this->request->get['filter_name']
to
$this->request->post['filter_name']
both times in the autocomplete() function, it will work.
$this->request->post['filter_name']
So, if you go into
\admin\controller\catalog\attribute.php
And change:
$this->request->get['filter_name']
to
$this->request->post['filter_name']
both times in the autocomplete() function, it will work.
OK - more details. Found this bug in a couple areas of code, here is a solid fix:
Code: Select all
if (isset($this->request->post['filter_name'])) {
$filter_name = $this->request->post['filter_name'];
} elseif(isset($this->request->get['filter_name'])) {
$filter_name = $this->request->get['filter_name'];
} else {
$filter_name = '';
}
if (isset($filter_name)) {
$this->load->model('catalog/product');
$data = array(
'filter_name' => $filter_name,
only empty db and reinstall the "install" folder. That is what I did.chickc wrote: Did you reinstall EVERYTHING or is there a portion I can reinstall? man, it took me a long time to get all my categories in............................Cant someone fix this?
Well, this is a "Newbie Error":
happened to me too
Solution:
Just add a Attribute on:
catalog/attribute
after, in Product page > tab: Attribute
Start to type: the attribute that you add
and you will see in float box it appear,
select and edite in text area
if you don't add a attribute before it don't will fix
Thanks all
happened to me too
Solution:
Just add a Attribute on:
catalog/attribute
after, in Product page > tab: Attribute
Start to type: the attribute that you add
and you will see in float box it appear,
select and edite in text area
if you don't add a attribute before it don't will fix

Thanks all
Who is online
Users browsing this forum: No registered users and 12 guests