Phoca Slideshow noob - instruction

Phoca modules - support for all Phoca modules except Phoca Gallery modules
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 48402
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Phoca Slideshow noob - instruction

Post by Jan »

Hi, which pictures you mean, can you paste a screenshot?
If you find Phoca extensions useful, please support the project
angelo56
Phoca Newbie
Phoca Newbie
Posts: 4
Joined: 22 Feb 2014, 21:27

Re: Phoca Slideshow noob - instruction

Post by angelo56 »

hi, I resume this thread after so long, because I have problems with the form phoca gallery slideshow noob. The module displays the slideshow (2 images in position 16, fade), but the images appear one below the other instead of being overlapped.
Working with firebug I was able to get it to work by placing in the two images style's the property "positon: absolute," as in the following code:

Code: Select all

<div id="phoca-slideshow">
	<div id="pgnsboxs">
		<div id="pgnsboxm" style="width: 970px; height: 230px;">
			<div id="pgnsbox">
				<span>
					<img alt="logowork1" src="/images/phocagallery/thumbs/phoca_thumb_l_logowork1.jpg" style="opacity: 0.0333272; visibility: visible; position: absolute;">
				</span>
				<span>
					<img alt="logowork2" src="/images/phocagallery/thumbs/phoca_thumb_l_logowork2.jpg" style="opacity: 0.966673; visibility: visible; position: absolute;">
				</span>
			</div>
		</div>
	</div>
</div>
Why is this happening?
I have perhaps some incompatible extension with the phoca noob?
I have tried both with the template phoca-t with the phoca seine and is the same thing.
Thanks for the reply.
angelo
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 48402
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Phoca Slideshow noob - instruction

Post by Jan »

Hi, when the images appear one below the other one, means the javascript does not work, it means, there is some javascript conflict which should be solved first as it prevents from running the slideshow:
https://www.phoca.cz/documents/16-joomla ... -conflicts
Jan
If you find Phoca extensions useful, please support the project
angelo56
Phoca Newbie
Phoca Newbie
Posts: 4
Joined: 22 Feb 2014, 21:27

Re: Phoca Slideshow noob - instruction

Post by angelo56 »

Hi Jan,
not yet solved, but thanks to the link you sent me, I found what does not work. They are the 2 stylesheets: style.css, style-fade.css in module noob that are not loaded. The html page can't access the two stylesheets because 403 error (permission). Even with Firebug I can access all the style sheets linked to the page except style.css and style-fade.css, again with error 403 from apache.
I can not understand why, have you any idea where to look for? I checked the permissions on the folders and files in windows7 filesystem and are equal to all other objects.
I do not think the javascript has problems because the fading works.
I am working to EasyPHP-DevServer-14.1VC11 on Windows 7 and Joomla 2.5

Angelo
Last edited by angelo56 on 26 Feb 2014, 19:04, edited 1 time in total.
angelo56
Phoca Newbie
Phoca Newbie
Posts: 4
Joined: 22 Feb 2014, 21:27

Re: Phoca Slideshow noob - instruction

Post by angelo56 »

Hello Jan,
I have identified the problem. In the httpd.conf file, used by EasyPHP devserver 14.1 VC11 wamp framework to generate the http.conf file for Apache, there is the line:

Code: Select all

Alias ​​/modules "${path}/modules"
This prevented access by the client to the files in that path. Removing the above line everything works perfectly (until now).
I hope that it will be useful to other people.

Thank you for your work.
Angelo
angelo56
Phoca Newbie
Phoca Newbie
Posts: 4
Joined: 22 Feb 2014, 21:27

Re: Phoca Slideshow noob - instruction

Post by angelo56 »

I found (on web), a better solution. The previous one was generating trouble accessing to easyphp modules (e.g. phpadmin).
In easyphd\binaries\conf_files\httpd.conf template file (at the file bottom), add an Alias command as in the following code:

Code: Select all

# Virtual Hosts
## Virtualhost localweb
<VirtualHost 127.0.0.1>
	DocumentRoot "${path}/data/localweb"
	ServerName 127.0.0.1
	Alias /modules "${path}/data/localweb/modules"
	<Directory "${path}/data/localweb">
		Options FollowSymLinks Indexes
		AllowOverride All
		Order deny,allow
		Allow from 127.0.0.1
		Deny from all
		Require all granted
	</Directory>
</VirtualHost>
Adjust your personal path if necessary (data/localweb).

Angelo
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 48402
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Phoca Slideshow noob - instruction

Post by Jan »

Ok
If you find Phoca extensions useful, please support the project
Post Reply