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
Can't upload via frontend as uploader looks broken
-
richdean77
- Phoca Newbie

- Posts: 3
- Joined: 22 Aug 2012, 09:30
- Jan
- Phoca Hero

- Posts: 49150
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Can't upload via frontend as uploader looks broken
Hi, which upload you mean? Multiple Upload? Do you get any javascript error message in javascript console of your browser?
If you find Phoca extensions useful, please support the project
-
jas
- Phoca Newbie

- Posts: 2
- Joined: 20 Oct 2012, 01:30
Re: Can't upload via frontend as uploader looks broken
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)
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)
- Jan
- Phoca Hero

- Posts: 49150
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Can't upload via frontend as uploader looks broken
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.) 
Jan
Jan
If you find Phoca extensions useful, please support the project
-
jas
- Phoca Newbie

- Posts: 2
- Joined: 20 Oct 2012, 01:30
Re: Can't upload via frontend as uploader looks broken
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.
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.