Welcome to the Cumulus Support forum.

Latest Cumulus MX V3 release 3.28.6 (build 3283) - 21 March 2024

Cumulus MX V4 beta test release 4.0.0 (build 4019) - 03 April 2024

Legacy Cumulus 1 release 1.9.4 (build 1099) - 28 November 2014
(a patch is available for 1.9.4 build 1099 that extends the date range of drop-down menus to 2030)

Download the Software (Cumulus MX / Cumulus 1 and other related items) from the Wiki

Search found 67 matches

by SpaceWalker
Sat 21 Feb 2015 4:27 pm
Forum: Saratoga Templates
Topic: PHP Error
Replies: 46
Views: 32389

Re: PHP Error

It seems some users did not realized that you were running your pages on a locally installed XAMPP which is a local development environment not accessible from the outside word (or the Internet). First thing, is it possible to have a 'real' first name for the 'sparkynerd' nickname ... thank you. ;) ...
by SpaceWalker
Fri 20 Feb 2015 1:30 pm
Forum: Saratoga Templates
Topic: PHP Error
Replies: 46
Views: 32389

Re: PHP Error

I put the "echo" code into ajax-dashboard.php. I had to put it all the way at the end of the script for it to display on the page. You cannot do that and expect the appropriate results! ;) I should have been 'clearer' (more clear) that you had to load the 'ajax-dashboard.php' script only ...
by SpaceWalker
Thu 19 Feb 2015 9:28 pm
Forum: Cumulus 1 (No longer being developed)
Topic: refresh
Replies: 6
Views: 2326

Re: refresh

Keith, I think I know why you have that problem of returning to the home page whenever a refresh of any pages is done. Your pages are displayed through the use of the deprecated HTML <frameset>/<frame> tags. If you go directly to the home page (at 'http://www.kathyandkeith.mx/index.htm') without the...
by SpaceWalker
Thu 19 Feb 2015 9:15 pm
Forum: Saratoga Templates
Topic: PHP Error
Replies: 46
Views: 32389

Re: PHP Error

...I tend to agree with not disabling error reporting, as its sort of a "band-aid." Good decision - as you wrote, deactivating the reporting of errors/warnings by PHP is a really poor technique in dealing with poorly written PHP scripts and designers too lazy to make their code error free...
by SpaceWalker
Thu 19 Feb 2015 4:31 pm
Forum: Saratoga Templates
Topic: PHP Error
Replies: 46
Views: 32389

Re: PHP Error

Xampp has strict error reporting on by default. Comment out this line in your php.in:... This is probably ONE OF THE worst suggestion one could make: Preventing PHP from displaying running errors! :shock: If there are errors in a script, they have to be corrected and not simply hidden from display!...
by SpaceWalker
Mon 09 Feb 2015 3:11 pm
Forum: Web site - General
Topic: WUAPIKey Settings help please
Replies: 4
Views: 1898

Re: WUAPIKey Settings help please

Code: Select all

 $SITE['WUAPIkey'] = 'your-key-here'; 
What the preceding code means is that you have to enter the key you would have received from Weather Underground to access their API.

Why are you entering a link! :roll:
by SpaceWalker
Fri 02 Jan 2015 12:39 pm
Forum: Web site - General
Topic: targeting webatgs for refresh
Replies: 28
Views: 7891

Re: targeting webatgs for refresh

You just cannot add webtags to 'ajaxCUwx.js' - the script has been designed to read the near-real-time data file (such as Cumulus' 'realtime.txt' or Weather Display's 'clientraw.txt') - look at line #58 of 'ajaxCUwx.js' (version 3.04 - 19-Aug-2013): var realtimeFile = '/realtime.txt'; // URL locatio...
by SpaceWalker
Fri 05 Dec 2014 11:16 am
Forum: Davis VP/VP2/Vue
Topic: New user - Vantage Vue - More frequent wind data?
Replies: 18
Views: 6157

Re: New user - Vantage Vue - More frequent wind data?

Here is a bit of PHP code that I have used in the past to access the WeatherLink IP - unfortunately, I cannot find the documentation that was attached to that script: //Logger info $where = '192.168.1.100'; // IP address or DNS $port = '22222'; // TCP port number //Trying a connection $fp = fsockope...
by SpaceWalker
Mon 01 Dec 2014 10:01 am
Forum: Saratoga Templates
Topic: WU-forecast.php V3.00 available-requires WU API key
Replies: 30
Views: 16692

Re: WU-forecast.php V3.00 available-requires WU API key

You could try using your Weather Underground station ID in the link to the API, such as:

Code: Select all

http://www.wunderground.com/cgi-bin/findweather/getForecast?query=43.238%2C27.417&sp=IVARNAPR3
Certainly works for me...
by SpaceWalker
Mon 24 Nov 2014 10:38 am
Forum: Cumulus 1 (No longer being developed)
Topic: Another post about error 103 and 32
Replies: 21
Views: 6061

Re: Another post about error 103 and 32

Brandon, for quite a few years now, I have been using an external very powerful and very reliable software (than the limited FTP functions usually built into the weather software) - it is called Syncovery . That external software has been used to upload almost all of the data files created by both m...
by SpaceWalker
Mon 24 Nov 2014 1:40 am
Forum: Cumulus 1 (No longer being developed)
Topic: log file errors
Replies: 8
Views: 3607

Re: log file errors

I/O error 32 = ERROR_SHARING_VIOLATION The process cannot access the file because it is being used by another process I/O error 103 = ERROR_TOO_MANY_SEM_REQUESTS The semaphore cannot be set again (or the file cannot be accessed). As Steve has written so often: "It's not a problem with the file ...
by SpaceWalker
Thu 30 Oct 2014 2:37 am
Forum: Saratoga Templates
Topic: set path ?
Replies: 9
Views: 3824

Re: set path ?

As I wrote above, using a setting script (ie: 'settings.php' in the 'public_html' directory) located in a directory outside the directory where the 'cell' scripts you are using are located (ie: 'mobile') will cause the errors you are seeing - the 'settings.php' script sees the file names and paths '...
by SpaceWalker
Wed 29 Oct 2014 12:38 pm
Forum: Saratoga Templates
Topic: set path ?
Replies: 9
Views: 3824

Re: set path ?

Steve is right, the path to one directory up should be '../' There might be some problems for the scripts in the 'mobile' sub-directory - if the scripts in the 'mobile' are loading (including) the settings from the 'settings.php' script (which is in the root directory ie: 'pubic_html') any links/var...
by SpaceWalker
Mon 27 Oct 2014 2:07 pm
Forum: Web site - General
Topic: IF Then Else compare question
Replies: 8
Views: 2768

Re: IF Then Else compare question

I would suggest the use of the PHP function 'empty()' rather than 'isset()' as, not only does it check if the variable is false (or empty), it also checks if the variable exists - the function 'empty()' does not generate a warning if the variable does not exist. So, for your example, you could use: ...
by SpaceWalker
Sun 19 Oct 2014 3:04 pm
Forum: Saratoga Templates
Topic: broken weather underground forecast?
Replies: 36
Views: 14338

Re: broken weather underground forecast?

Paul, I have been using the Weather Underground script on my test site for more than a year - I cannot remember what modifications were required. Not only can I get the data for canadian sites, I can also get the data from my own site, that data my weather software is uploading to the Weather Underg...