-1

I am getting warning on link_footer page in admin panel.

Error

Warning: array_combine(): Both parameters should have an equal number of elements in admin\model\design\links_footer.php on line 69.

I am trying to solve it but i can't. so please help me to solve this warning.

Because of this warning i can't give links to the footer.

Please help me to solve this problem.

1

1 Answer 1

0

Open the file mentioned in error message, find line 69 and you'll find array_combine() function with 2 arrays in it (for example, $array1 and $array2). Add this:

var_dump($array1);
var_dump($array2);
exit;

BEFORE this function and run the script. You'll see contents of these 2 arrays. Make sure they both have equal number of values and if they don't try to figure out the root of the problem. You need to know some PHP though.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.