Cara atasi masalah joomla head error
Jan 06

Cara atasi masalah joomla head error

jooAnda ada masalah ini pada web joomla anda selepas kemaskini versi? "Warning: require_once(/home/xxxxxx/libraries/joomla/document/html /renderer/head.php): failed to open stream: No such file or directory in /home/xxxxxx/templates/xxxxxx/error.php". 

 

Untuk atasi masalah ini. Bukak file error.php template anda, dan cari koding ini

require_once(JPATH_LIBRARIES.'/joomla/document/html/renderer/head.php');

Replace koding tersebut dengan koding dibawah

if(!class_exists('JDocumentRendererHead')) { $head = JPATH_LIBRARIES . '/joomla/document/html/renderer/head.php'; if(file_exists($head)) { require_once($head); } }

Dengan menukar koding ini, masalah anda selesai.

Sekiranya anda hadapi masalah lain sepertima berikut 

!important is undefined: /home/xxxxxx/public_html/templates/xxxxxx/less/master.less on line 12

Sila ikuti artikel kami yang seterusnya

Leave a comment

Make sure you enter all the required information, indicated by an asterisk (*). HTML code is not allowed.