cloudy

Author Topic: e-rice.net site/server listing  (Read 16899 times)

0 Members and 1 Guest are viewing this topic.

Offline jpmorgan49

  • JP
  • Posts: 316
  • Joliet, Il
    • jolietwx.com
Re: e-rice.net site/server listing
« Reply #60 on: October 10, 2010, 12:12:35 PM »
I just received an email this morning from e-rice and the "Mint" server will be migrated to new hardware on Tuesday, October12.  The email is below.
jp

"Hello everyone,
I'm writing to let you know that we will be migrating all websites on Mint to a new server on Tuesday, Oct 12 2010. The new server will be running Apache 2.2.16, PHP 5.2.14 and MySQL 5.1.51.
Most websites should be fine, but some might require updating. Once the migration is completed, please check your own website and make sure everything works properly.
I'll post all the details on the notice board in members area, there is also a thread running on the forum http://forum.e-rice.net/viewtopic.php?t=3068, if you have any questions feel free to ask.
The migration procedure will not involve downtime. However, please be aware that there will be two websites available at the same time during the move. We plan to start at 3:00am GMT, the whole process should take no more than 3 hours.

Thank you again for your understanding, your cooperation is greatly appreciated.

-Alan"


Davis Vantage Pro2 Plus Wireless
WeatherLink Serial Datalogger
Iogear Serial to USB adapter
Acer Revo 3610 Nettop computer
Windows 7 64-bit

Offline looney2ns

  • Posts: 2,946
  • Fearless Weather Dog-Loves to watch Lightning.
  • Near Evansville Indiana USA
    • Newburgh Weather
Re: e-rice.net site/server listing
« Reply #61 on: October 12, 2010, 12:02:10 AM »
I'm on thyme.
tristate-weather.com

Offline niko

  • syzygy
  • Global Moderator
  • Posts: 22,157
  • Crystal Ball broken! Please post the URL.
  • Northern California, U.S.A.
    • http://www.realweatherstation.com
Re: e-rice.net site/server listing
« Reply #62 on: October 12, 2010, 12:10:19 AM »
Your thyme will come  :lol:

mth

  • Guest
Re: e-rice.net site/server listing
« Reply #63 on: October 12, 2010, 12:22:26 AM »
To all who want a work around for the allow_url_include being turned off.  With the following code, you will no longer need to use the "allow_url_include".

Place the following in your settings.php file since this is called for every single webpage on your site. (Saratoga/Carterlake Template)
Code: [Select]
// Include the cURL function for fetching sites (used in place of allow_url_fopen)
function curl_fetch_file($url) {
  $curlurl = str_replace("http://", '', $url);
  $urlComponents = explode("/", $curlurl);
  $domain = $urlComponents[0];
  $resourcePath = str_replace($domain, '', $curlurl);
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)');
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1);
  curl_setopt($ch, CURLOPT_TIMEOUT, 5);  // 5 sec timeout
  $data = curl_exec($ch);
  curl_close($ch);
}
//

Now, where you would normally place your "include"
Example:
Code: [Select]
<?php include("http://www.relayweather.com/rss-tropical-test.php?inc=Y&summary=Y&zone=A");?>

Place the following instead using the same url as above:
Code: [Select]
<?php curl_fetch_file("http://www.relayweather.com/rss-tropical-test.php?inc=Y&summary=Y&zone=A")?>
Of course this will work with any url.  Using this will allow you to no longer need the "allow_url_include" to be set to "on" in your php configuration.

Regards,
Michael
« Last Edit: October 12, 2010, 12:27:51 AM by mth »

Offline NorCal Dan

  • Dan - KJ6RGX
  • Posts: 9,496
  • Davis Vue/iMac/Parallels/WinXP
  • Truckee, California
    • Traveling RV Weather
Re: e-rice.net site/server listing
« Reply #64 on: October 12, 2010, 04:04:39 AM »
My site is not working after e-rice made their change.  My ftp is working ok, but I think the DNS is pointing somewhere else???  I will have to dig into this tomorrow...



add: Found the problem, they changed the IP address.  Changed the WD ftp connection setup and all back to normal (at least the ftp part, haven't looked over anything else yet).
« Last Edit: October 12, 2010, 04:10:54 AM by NorCal Dan »

Offline jpmorgan49

  • JP
  • Posts: 316
  • Joliet, Il
    • jolietwx.com
Re: e-rice.net site/server listing
« Reply #65 on: October 12, 2010, 01:58:13 PM »
It looks like all my pages are working after the "mint" upgrade.  I did see one problem, My WDL and Mesomaps look different.  Has anyone seen this?  Do you know how to fix it?
jp

http://www.jolietwx.com/wxlive.php
http://www.jolietwx.com/wxmesomap.php

UPDATE:
They seem to be Okay now.  When I reported the problem they were smaller, oh well all okay now. :D :D
jp
« Last Edit: October 12, 2010, 04:16:58 PM by jpmorgan49 »


Davis Vantage Pro2 Plus Wireless
WeatherLink Serial Datalogger
Iogear Serial to USB adapter
Acer Revo 3610 Nettop computer
Windows 7 64-bit

Offline niko

  • syzygy
  • Global Moderator
  • Posts: 22,157
  • Crystal Ball broken! Please post the URL.
  • Northern California, U.S.A.
    • http://www.realweatherstation.com
Re: e-rice.net site/server listing
« Reply #66 on: October 12, 2010, 02:00:14 PM »
How are they different?

Offline ed2kayak

  • CoCoRaHS PA-CD-6, Weather Underground KPAMECHA7, CWOP DW5425
  • Posts: 283
  • South Central PA
    • Cumberland Valley Weather
Re: e-rice.net site/server listing
« Reply #67 on: November 12, 2010, 12:52:15 PM »
niko,
new dedicated weather website for me http://cvweather.org it is hosted on E-rice.
Ed
CoCoRaHS PA-CD-6,  Weather Underground KPAMECHA7, CWOP DW5425

Offline niko

  • syzygy
  • Global Moderator
  • Posts: 22,157
  • Crystal Ball broken! Please post the URL.
  • Northern California, U.S.A.
    • http://www.realweatherstation.com
Re: e-rice.net site/server listing
« Reply #68 on: November 12, 2010, 02:21:11 PM »
Looks good! Added, thanks, your site is on the Thyme server.

Offline NorCal Dan

  • Dan - KJ6RGX
  • Posts: 9,496
  • Davis Vue/iMac/Parallels/WinXP
  • Truckee, California
    • Traveling RV Weather
Re: e-rice.net site/server listing
« Reply #69 on: November 12, 2010, 03:51:59 PM »
Just to keep the listing updated...

travelingrvwx.com is still on mint
wdworldmap.com is now on thyme

I had them move one site so they weren't both on the same server.  Messed me up on the max 3 connections to the server...

Offline niko

  • syzygy
  • Global Moderator
  • Posts: 22,157
  • Crystal Ball broken! Please post the URL.
  • Northern California, U.S.A.
    • http://www.realweatherstation.com
Re: e-rice.net site/server listing
« Reply #70 on: November 12, 2010, 04:05:22 PM »
Done! Thanks for the update.

Offline ptsdds

  • Posts: 56
  • Lodi, California
    • Lodi Lake Wilderness Area
Re: e-rice.net site/server listing
« Reply #71 on: February 05, 2011, 07:22:31 PM »

Offline niko

  • syzygy
  • Global Moderator
  • Posts: 22,157
  • Crystal Ball broken! Please post the URL.
  • Northern California, U.S.A.
    • http://www.realweatherstation.com
Re: e-rice.net site/server listing
« Reply #72 on: February 05, 2011, 07:38:14 PM »
Added  :)

Offline skysummit

  • Posts: 5
  • Ponchatoula, LA
    • Ponchatoula's Strawberry Weather
Re: e-rice.net site/server listing
« Reply #73 on: March 09, 2011, 07:10:19 PM »
My site is with E-Rice.

http://www.strawberrywx.com
Scott Guidry



WMR200a, VWS 14.01, p35, StartWatch, Fling, WD 10.37
Gulf Coast Weather

Offline va7nic

  • Posts: 430
  • Port Alberni, B.C. Canada
    • Port Alberni, B.C., Canada Weather Conditions
Re: e-rice.net site/server listing
« Reply #74 on: March 13, 2011, 07:56:46 PM »
Been online for a bit on e-rice, forgot to post..


http://nicksweather.info

Looks like I'm on thyme as well.