Page 1 of 1

Can't upload via frontend as uploader looks broken

Posted: 22 Aug 2012, 09:44
by richdean77
Hi there

Just wondering if anyone else has had this problem, I want to add an uploader to the frontend as I don't want users to have access to the backend of the site.

I have installed Phoca and it works perfectly from the backend, however when you go to upload images from the frontend the uploader seems to be broken as the uploaded box is out of place, so wondering if their is a clash with the template.

I am using Joomla 2.5 and Phoca Gallery 3.2.1

The uploader image box that should be sitting under the images boxes is sitting on top of the images box so you aren't able to upload anything

Re: Can't upload via frontend as uploader looks broken

Posted: 26 Aug 2012, 17:32
by Jan
Hi, which upload you mean? Multiple Upload? Do you get any javascript error message in javascript console of your browser?

Re: Can't upload via frontend as uploader looks broken

Posted: 20 Oct 2012, 01:32
by jas
i have the same problem version 3.2.2

its the multiuploader in frontend

and there is following javascript error in firebug
ReferenceError: pgJQ is not defined
[Break On This Error]

pgJQ(function() {

gallery-control (line 26)

Re: Can't upload via frontend as uploader looks broken

Posted: 20 Oct 2012, 12:18
by Jan
Hi, check if some extension (module, or template) is not conflict with jqery (you can test it when you will switch to another template or you will disable all modules, etc.) :idea:

Jan

Re: Can't upload via frontend as uploader looks broken

Posted: 04 Nov 2012, 12:26
by jas
i have been testing around on this bug, and found out, its cause that poca gallery doesn't work with jquery easy.

reason is, that jquery easy stripts other noconflict statements and that gives the error.

you could just do
jQuery(function($) {
$('html5')...
});
like that instead and it would be working with it.