- Posts: 9
COMMUNITY FORUM
Parameter must be an array
- Boyan Dimov
- Offline
- New Member
Less
More
6 years 1 month ago #169432
by Boyan Dimov
Replied by Boyan Dimov on topic Parameter must be an array
after update to 2.9.0 still having the same issue, any other suggestions?
Please Log in or Create an account to join the conversation.
- JoomlaWorks
- Offline
- Admin
Less
More
- Posts: 6218
6 years 1 month ago #169438
by JoomlaWorks
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by JoomlaWorks on topic Parameter must be an array
Where exactly does this issue appear? It's very broad, reminds me of: importblogkit.com/2015/07/does-not-work/
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Boyan Dimov
- Offline
- New Member
Less
More
- Posts: 9
6 years 1 month ago #169451
by Boyan Dimov
Replied by Boyan Dimov on topic Parameter must be an array
Hi Fotis,
The link you provided it's not available.
Here is a link on one of my websites which give me this problem:
careers.mosconsultbg.com
If you navigate to History/Benefits/Culture/Internship menus you will see the error in the top and bottom of the page
The link you provided it's not available.
Here is a link on one of my websites which give me this problem:
careers.mosconsultbg.com
If you navigate to History/Benefits/Culture/Internship menus you will see the error in the top and bottom of the page
Please Log in or Create an account to join the conversation.
- JoomlaWorks
- Offline
- Admin
Less
More
- Posts: 6218
6 years 1 month ago #169463
by JoomlaWorks
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by JoomlaWorks on topic Parameter must be an array
Can you please install v2.9.1 (dev) directly from K2's GitHub repo using: github.com/getk2/k2/archive/master.zip
It should fix the first warning I see on: careers.mosconsultbg.com/en/history-en
For the second warning, you'll need to paste back the code at the line mentioned from that file in your Joomla template (a K2 override).
It should fix the first warning I see on: careers.mosconsultbg.com/en/history-en
For the second warning, you'll need to paste back the code at the line mentioned from that file in your Joomla template (a K2 override).
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Boyan Dimov
- Offline
- New Member
Less
More
- Posts: 9
6 years 1 month ago #169485
by Boyan Dimov
Replied by Boyan Dimov on topic Parameter must be an array
Hi Fotis,
I already installed 2.9.1 and it already fixed the first problem. Thanks for it.
But I misunderstood you about the second one - which code shall I paste in K2 Override?
I already installed 2.9.1 and it already fixed the first problem. Thanks for it.
But I misunderstood you about the second one - which code shall I paste in K2 Override?
Please Log in or Create an account to join the conversation.
- JoomlaWorks
- Offline
- Admin
Less
More
- Posts: 6218
6 years 1 month ago #169494
by JoomlaWorks
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by JoomlaWorks on topic Parameter must be an array
You'll need to send me back the code in that line exactly.
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Boyan Dimov
- Offline
- New Member
Less
More
- Posts: 9
6 years 1 month ago #169507
by Boyan Dimov
Replied by Boyan Dimov on topic Parameter must be an array
Hi Fotis,
Here is the code on line 131:
/templates/gk_msocial/html/com_k2/templates/default/item.php
<?php if($params->get('itemExtraFields') && count($this->item->extra_fields)): ?>
Here is the code on line 131:
/templates/gk_msocial/html/com_k2/templates/default/item.php
<?php if($params->get('itemExtraFields') && count($this->item->extra_fields)): ?>
Please Log in or Create an account to join the conversation.
- JoomlaWorks
- Offline
- Admin
Less
More
- Posts: 6218
6 years 1 month ago #169513
by JoomlaWorks
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by JoomlaWorks on topic Parameter must be an array
Update it to this:
<?php if($params->get('itemExtraFields') && isset($this->item->extra_fields) && count($this->item->extra_fields)): ?>
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Adam
- Offline
- New Member
Less
More
- Posts: 2
6 years 1 month ago #169574
by Adam
Replied by Adam on topic Parameter must be an array
Hello,
I also have 2.9.1 installed and the second I probably need a code, right?
Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/web25494274/html/twingo/components/com_k2/templates/default/category_item.php on line 134
Thanks in advance!
I also have 2.9.1 installed and the second I probably need a code, right?
Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/web25494274/html/twingo/components/com_k2/templates/default/category_item.php on line 134
Thanks in advance!
Please Log in or Create an account to join the conversation.
- JoomlaWorks
- Offline
- Admin
Less
More
- Posts: 6218
6 years 1 month ago #169580
by JoomlaWorks
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by JoomlaWorks on topic Parameter must be an array
I've implemented these checks anywhere we use the count() function in K2's templates. Please install 2.9.1 dev once more: github.com/getk2/k2/archive/master.zip
Let me know if you're OK.
Let me know if you're OK.
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.