?
avatar o0odicemano0o
o0odicemano0o
1 May 2017

Can some one explain why my search bar is coding "COM_FINDER_SEARCH_NO_RESULTS_HEADING"

ALL OF MY ADMIN PANEL IS LIKE THIS TOO
screen shot 2017-05-01 at 16 40 21

avatar o0odicemano0o o0odicemano0o - open - 1 May 2017
avatar joomla-cms-bot joomla-cms-bot - labeled - 1 May 2017
avatar hacki65
hacki65 - comment - 1 May 2017

Which language do you use. Try to reinstall your main language.

avatar brianteeman
brianteeman - comment - 1 May 2017

Closed as answered

avatar brianteeman brianteeman - change - 1 May 2017
Status New Closed
Closed_Date 0000-00-00 00:00:00 2017-05-01 17:55:03
Closed_By brianteeman
avatar brianteeman brianteeman - close - 1 May 2017
avatar o0odicemano0o
o0odicemano0o - comment - 2 May 2017

@hacki65 I tried removing and reinstalling the language pack.. Still I'm seeing the issue.

avatar infograf768
infograf768 - comment - 2 May 2017

Try this patch: #15620

avatar infograf768
infograf768 - comment - 2 May 2017

and tell us if you have the issue also with en-GB or only the pack you try to install, and in this case which pack?

avatar o0odicemano0o
o0odicemano0o - comment - 2 May 2017

I'm only using the en-GB pack. Same issue with this pack.

avatar infograf768
infograf768 - comment - 2 May 2017

Then it cetainly means your server does not accept parse_ini_file.
please test the patch proposed here #15620

diff --git a/libraries/joomla/language/language.php b/libraries/joomla/language/language.php
index 1eb40fb..9c98ad9 100644
--- a/libraries/joomla/language/language.php
+++ b/libraries/joomla/language/language.php
@@ -830,7 +830,21 @@ protected function parse($filename)
 			ini_set('track_errors', true);
 		}
 
-		$strings = @parse_ini_file($filename);
+		if (!function_exists('parse_ini_file'))
+		{
+			$contents = file_get_contents($filename);
+			$contents = str_replace('_QQ_', '"\""', $contents);
+			$strings = @parse_ini_string($contents);
+		}
+		else
+		{
+			$strings = @parse_ini_file($filename);
+		}
+
+		if (!is_array($strings))
+		{
+			$strings = array();
+		}
 
 		// Restore error tracking to what it was before.
 		if ($this->debug)
@@ -840,7 +854,7 @@ protected function parse($filename)
 			$this->debugFile($filename);
 		}
 
-		return is_array($strings) ? $strings : array();
+		return $strings;
 	}
  • means delete the line and do not let there the - sign
  • means add the line without the + sign
avatar o0odicemano0o
o0odicemano0o - comment - 2 May 2017

This is frustrating..

Add a Comment

Login with GitHub to post a comment