51
dean_collins
Re: Unique blocks (Center Lower Left?)

how come you cant weight the block to be under whatever you are displaying above it?

Cheers,
Dean
My Xoops site
www.aussienymeetup.net



52
dean_collins
Re: multiple webcams

Hi I did a search on cjaycontent but nothing is coming up, can you post a little more information?

Cheers,
Dean
My Xoops site
www.aussienymeetup.net



53
dean_collins
multiple webcams

Hi guys I've spoken with the module developer but he has said he doesn't know how to do this and I was hoping someone else on the list might be able to work out what to do.

I would like to display multiple webcams on mysite www.aussienymeetup.net/modules/webcam/

at the moment I have basically cloned the module multiple times to make each cam viewable but there are two other ways I would prefer to do this.

basically there are two ways to do this I could either randomise this urls in the webcam.php file

#$img = "http://mzsrv.zoo.org.au/webcams/butterflies.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */

with the following below



<?php
# SmoothWebcam PHP v1.0
# © 2004 Xeofox. All Rights Reserved
#http://www.xeofox.co.uk

#$img = "http://mzsrv.zoo.org.au/webcams/butterflies.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://insvr1.midcoastwater.com.au/mcwcam.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://webcam.omniconnect.com.au/OmniCam/Images/t02/7733FEDC0A/4/w.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://www.gorgecreekorchards.com.au/web.gif"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://www.thesurfclub.com.au/Webcam/image.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://www.abc.net.au/webcam/5ancam1.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://www.transport.sa.gov.au/data/citycam/adelaideview.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://www.rosebay.tased.edu.au/webcam/tiny.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://www.rta.nsw.gov.au/trafficreports/cameras/camera_images/180.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#
#
#
#
#
#
#
#$title = "Test Webcam"; /* Title that is used if page accidentally opened */
#$r = "20"; /* Image refresh rate (in seconds) */



$img = "http://www.thesurfclub.com.au/Webcam/image.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
$title = "Test Webcam"; /* Title that is used if page accidentally opened */
$r = "20"; /* Image refresh rate (in seconds) */


header('refresh: '.$r.'; url=webcam.php');
echo "<html>\n<head>\n<title>$title</title>\n<meta http-equiv='refresh' content='$r; url=webcam.php'>\n<style>body {margin: 0px}</style>\n</head>\n<body>\n<img src='$img' border='0' alt=''>\n</body>\n</html>";
?>





or as an alternative what i could do is set up some type of drop down box with a single display which would then allow the visitor to choose which webcam they want to view.

basically the module developer has said we can do anything we like, as he's not sure how to do either option.

Any thoughts?

Cheers,
Dean
My Xoops site
www.aussienymeetup.net



54
dean_collins
drop down box required for webcam module

Hi guys I've spoken with the module developer but he has said he doesn't know how to do this and I was hoping someone else on the list might be able to work out what to do.

I would like to display multiple webcams on mysite www.aussienymeetup.net/modules/webcam/

at the moment I have basically cloned the module multiple times to make each cam viewable but there are two other ways I would prefer to do this.

basically there are two ways to do this I could either randomise this urls in the webcam.php file

#$img = "http://mzsrv.zoo.org.au/webcams/butterflies.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */

with the following below



<?php
# SmoothWebcam PHP v1.0
# © 2004 Xeofox. All Rights Reserved
#http://www.xeofox.co.uk

#$img = "http://mzsrv.zoo.org.au/webcams/butterflies.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://insvr1.midcoastwater.com.au/mcwcam.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://webcam.omniconnect.com.au/OmniCam/Images/t02/7733FEDC0A/4/w.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://www.gorgecreekorchards.com.au/web.gif"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://www.thesurfclub.com.au/Webcam/image.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://www.abc.net.au/webcam/5ancam1.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://www.transport.sa.gov.au/data/citycam/adelaideview.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://www.rosebay.tased.edu.au/webcam/tiny.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#$img = "http://www.rta.nsw.gov.au/trafficreports/cameras/camera_images/180.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
#
#
#
#
#
#
#
#$title = "Test Webcam"; /* Title that is used if page accidentally opened */
#$r = "20"; /* Image refresh rate (in seconds) */



$img = "http://www.thesurfclub.com.au/Webcam/image.jpg"; /* Webcam image URL (e.g.http://www.domain.com/cam.jpg) */
$title = "Test Webcam"; /* Title that is used if page accidentally opened */
$r = "20"; /* Image refresh rate (in seconds) */


header('refresh: '.$r.'; url=webcam.php');
echo "<html>\n<head>\n<title>$title</title>\n<meta http-equiv='refresh' content='$r; url=webcam.php'>\n<style>body {margin: 0px}</style>\n</head>\n<body>\n<img src='$img' border='0' alt=''>\n</body>\n</html>";
?>





or as an alternative what i could do is set up some type of drop down box with a single display which would then allow the visitor to choose which webcam they want to view.

basically the module developer has said we can do anything we like, as he's not sure how to do either option.

Any thoughts?

Cheers,
Dean
My Xoops site
www.aussienymeetup.net



55
dean_collins
xoops gallery

works fine for me with about 80 photos so far but....when people post comments it appears funny in that their used ID doesn't fit in the comments box properly.

is there someway to fix this?

Dean
My Xoops site
www.aussienymeetup.net



56
dean_collins
Re: ***WEBCAM

yep I couldn't get it to work I ended up using bassmans webcam works fine even on 2.2.3

my only question though do you kow if the webcames are refreshing even when no one is viewing the page ie. do they use bandwitch just by being programmed on the site?

tia,
Dean
My Xoops site
www.aussienymeetup.net



57
dean_collins
Pical date highlight

I have this weird problem on my pical module.

the 19th of each month is shaded a different colour and for the life of me I cant work out why?

TIA,
Dean
My Xoops site
www.aussienymeetup.net



58
dean_collins
Re: google?

well make sure you get your $5 from clicksor as I just added their ads to my website, we'll see what happens.
My Xoops site
www.aussienymeetup.net



59
dean_collins
MS Weather problem

works great for 2.2.3

forecast is faulty and doesn't work but still looks great.

however I have found 1 quirk though, if you add cities to the block they dont show until some time later, I've found that if you open the php file and make a small change (eg add a blank line of delete a blank line) this causes the cities to be re-read and updates immediately, it's probably just something to do with cache that I dont understand.

Cheers,
Dean
My Xoops site
www.aussienymeetup.net



60
dean_collins
Re: Counters and other things

Quote:

Graviton wrote:
Apparently many modules do not work under my 2.2 like counter, web stats, several gallery systems, random image,
chess (games).
Are the developers of these modules not around anymore or no time?

Thx


counters work, random images work

chess doesn't

(some of the wf modules dont work either.)
My Xoops site
www.aussienymeetup.net




TopTop
« 1 ... 3 4 5 (6) 7 8 9 ... 19 »



Login

Who's Online

217 user(s) are online (151 user(s) are browsing Support Forums)


Members: 0


Guests: 217


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Mar 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits