QUESTIONS CENTRECategory: javascriptBlank Page on Joomla Or fpss_com error
ZENHOST Support Staff asked 10 years ago

Do you get an error like

com_fpss\fpss.class.php on line 345

or a blank page on your joomla?

 

Blank page is hidden errors of joomla… to enable them just go and edit the configuration file where

var $error_reporting = ‘0’;

Change it to: var $error_reporting = ‘6143’;

Now you will see the errors that are generated on your webpage.

 

You are aware that this particular message is from the Front Page slideshow component.

This problem will also not let you in the administrator panel.

SOLUTION

So what to do:

1. Download or edit the component file fpss.class.php

This is located at /components/com_fpss/

Change

function uploadMedia(&$_FILES, $name, $option, $subfolder=””, $width=200, $quality=80) {

to

function uploadMedia($files, $name, $option, $subfolder=””, $width=200, $quality=80) {

 

Also you will need to resolve an admin issue by running the following SQL query:

UPDATE jos_plugins SET published = 1 WHERE element =’joomla’ and folder = ‘authentication’;
UPDATE jos_plugins SET published = 1 WHERE element =’joomla’ and folder = ‘user’;
UPDATE jos_plugins SET published = 0 WHERE element =’jfusion’ and folder = ‘authentication’;
UPDATE jos_plugins SET published = 0 WHERE element =’jfusion’ and folder = ‘user’;