Search found 4 matches

by nehakakar
26 Apr 2024, 14:02
Forum: Suggestions
Topic: Upload Image editable
Replies: 1
Views: 293

Re: Upload Image editable

Hey hi, this is an amazing idea if it will be happen then please let me know by the way achieving this you can use any online application such as jpeg compressor and other.
by nehakakar
08 Aug 2023, 17:29
Forum: Suggestions
Topic: Allow redirect_to as an argument to users::login function
Replies: 2
Views: 473

Re: Allow redirect_to as an argument to users::login function

Hi rmcdonald, There is one way to modify the source code of the users::login function in the includes\classes\users\users.php file. Example: Locate the users::login function in the includes\classes\users\users.php file. Inside the function, you would need to update the code to accept the redirect_to...
by nehakakar
08 Aug 2023, 16:33
Forum: Bug Report version 3.4.4
Topic:  [solved in next update 3.5]PHP error and warning with ajax field
Replies: 4
Views: 3567

Re: PHP error and warning with ajax field

Hi, In your case, $field is assigned an integer value [123] , but it should be assigned an array instead. Change the assignment to an array .. $field = [123]; $form_field_value = $field; echo json_encode($form_field_value); Using json_encode will ensure that the array is properly converted to a JSON...
by nehakakar
08 Aug 2023, 16:28
Forum: Bug Report version 3.4.4
Topic: [SOLVED] Fatal error: Cannot declare class ganttchart
Replies: 4
Views: 369

Re: Fatal error: Cannot declare class ganttchart

First, confirm that there are no other occurrences of the ganttchart class being declared elsewhere in your codebase. This includes both your own code and any third-party libraries or plugins you might be using.
Post here if you still encounter same issue.