Deprecated: Joomla\Input\Input implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in /homepages/13/d380392445/htdocs/Jlive/libraries/vendor/joomla/input/src/Input.php on line 41

Deprecated: Return type of Joomla\Input\Input::count() should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /homepages/13/d380392445/htdocs/Jlive/libraries/vendor/joomla/input/src/Input.php on line 170

Deprecated: Joomla\CMS\Input\Input implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in /homepages/13/d380392445/htdocs/Jlive/libraries/src/Input/Input.php on line 31

Deprecated: Joomla\CMS\Input\Cookie implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in /homepages/13/d380392445/htdocs/Jlive/libraries/src/Input/Cookie.php on line 21

Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /homepages/13/d380392445/htdocs/Jlive/libraries/src/Uri/Uri.php on line 141
Issue tracker general questions - Page 2 - Macrotone Forum

Unknown Error 8192: KunenaControllerApplicationDisplay implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in libraries/kunena/controller/application/display.php on line 21


Unknown Error 8192: ComponentKunenaControllerWidgetAnnouncementDisplay implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in components/com_kunena/controller/widget/announcement/display.php on line 18


Unknown Error 8192: ComponentKunenaControllerTopicItemDisplay implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in components/com_kunena/controller/topic/item/display.php on line 25


Unknown Error 8192: Automatic conversion of false to array is deprecated in libraries/kunena/forum/category/category.php on line 415


Unknown Error 8192: Automatic conversion of false to array is deprecated in libraries/kunena/route/route.php on line 437


Deprecated: DateTime::__construct(): Passing null to parameter #1 ($datetime) of type string is deprecated in /homepages/13/d380392445/htdocs/Jlive/libraries/src/Date/Date.php on line 112

Unknown Error 8192: Automatic conversion of false to array is deprecated in libraries/kunena/bbcode/bbcode.php on line 107

Issue tracker general questions


Unknown Error 8192: ComponentKunenaControllerTopicItemActionsDisplay implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in components/com_kunena/controller/topic/item/actions/display.php on line 23


Unknown Error 8192: ComponentKunenaControllerTopicPollDisplay implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in components/com_kunena/controller/topic/poll/display.php on line 21


Unknown Error 8192: ComponentKunenaControllerTopicItemMessageDisplay implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in components/com_kunena/controller/topic/item/message/display.php on line 23

8 years 10 months ago #7 by orsteglasy
Hi Geoff,

Thanks, you helped me a lot.

I created a regular registered user and managed to switch off everything using the 'en masse' setting, however I'd like to keep some of those. Could you please elaborate a bit on how exactly I can keep the 'issue type' and 'priority' fields only? The 'Create an issue' form is reached by clicking one of my main menu items. In the component options I hid everything under the 'Front End' section, but those detail field are still showing up, if I switch off the 'en masse' setting.

Please also let me know if there is a way to put the issue type into the first position of the 'create an issue' form.

Many thanks,
O.

Unknown Error 8192: ComponentKunenaControllerMessageItemActionsDisplay implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in components/com_kunena/controller/message/item/actions/display.php on line 25

Please Log in or Create an account to join the conversation.

8 years 10 months ago - 8 years 10 months ago #8 by geoffc

Unknown Error 8192: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2263

I am unsure of your admin/coding abilities, but the correct way to do this is as follows:
  1. Create a template override for the issuetracker form view.
  2. Edit the file edit.php and move the required lines to the position you desire.
  3. Save the file and test out the result.

This method will ensure that any changes you make are retained over any future component upgrade as well. Another advantage is that if you get it wrong you can always start all over again, since you are changing the override and not the original source files.

I am assuming that you know how to create a template override, if not let me know and I direct you to the Joomla docs which describe how to do it. With Joomla 3.4 it is all done very easily in the back end.

So once you have the template override created, to move the 'issue type' to the first position, you would move lines 268->271 which are:
<div class="formelm">
             <?php echo $this->form->getLabel('issue_type'); ?>
             <?php echo $this->form->getInput('issue_type'); ?>
         </div>

to before line 158.

If you want more details let me know as it id difficult to 'pitch' this answer based upon very little knowledge of your familiarity with Joomla.

Regards
Geoff
The following user(s) said Thank You: orsteglasy

Please Log in or Create an account to join the conversation.

8 years 10 months ago #9 by orsteglasy
Hi Geoff,

Thanks again, based on your helpful pointers I could google out the rest and fix everything except one final minor thing:
I reach the issue list component from a menu item. In the menu item List Filter Options I switched off all filters including the project filter. All of them are hidden except the project filter. How can I hide that too (and just display all issues from all projects)?

Thanks again,
O.

ps.
Great component, I find it really valuable!

Please Log in or Create an account to join the conversation.

8 years 10 months ago #10 by geoffc

Unknown Error 8192: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2263

Glad my instructions worked out fine.

Ahh the project filter. This was added at client request and only shows when more than one project is in the displayed list. Perhaps it should also be a option for the next update.
Anyway this is a one line code fix that needs to be applied.
Create another template override this time for the itissuelist view and edit the default.php template.
On line 79 (currently blank) set the line to be:
$showprojfilt = 0;

This will ensure that it isn't displayed. I haven't specifically tried it but it should work OK.

Regards
Geoff
The following user(s) said Thank You: orsteglasy

Please Log in or Create an account to join the conversation.

8 years 10 months ago #11 by orsteglasy
Hi Geoff,

Once again, your instructions worked fine!

Thanks for the great support!
O.
The following user(s) said Thank You: chrisc

Please Log in or Create an account to join the conversation.


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2115


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2115


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2022


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2070


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2115


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2022


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2022


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2115


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2115


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2022


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2070


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2115


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2115


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2022


Unknown Error 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in libraries/kunena/external/nbbc/src/BBCode.php on line 2070

8 years 10 months ago #12 by chrisc
Thank you for keeping us updated. We appreciate it.

Regards

If you are using our extensions please leave a review at the JED: IP Mapping | Issue Tracker | JAudit | Password Control

Please Log in or Create an account to join the conversation.

Time to create page: 0.156 seconds
Go To Top

Joomla! Debug Console

Session

Profile Information

Memory Usage

Database Queries