Go Back   HostGator Peer Support Forums > HostGator Announcements > General Announcements

Notices

Reply
 
Thread Tools
  #1  
Old 05-26-2005, 11:05 AM
GatorLyron
HostGator Guest
 
Posts: n/a
Default Upgrade Planned: PHP 4.3.11 & MySQL 4.1

I've been planning this for a while.. but these upgrades should finally be completed this weekend on saturday (May 28th). As always, if you notice any issues with these upgrades, please let me know at support@hostgator.com ATTN: Lyron.
Reply With Quote
  #2  
Old 05-31-2005, 04:49 PM
Andeavour's Avatar
Andeavour Andeavour is offline
Hatchling Croc
 
Join Date: Mar 2005
Posts: 39
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

Has this happened, because Navigator is still reporting MySQL 4.0.22?
Reply With Quote
  #3  
Old 06-01-2005, 03:07 AM
sonic sonic is offline
Baby Croc
 
Join Date: Nov 2003
Posts: 96
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

I believe MySQL 4.1 is not yet supported by cPanel.
Is that not so?

sonic
Reply With Quote
  #4  
Old 06-01-2005, 09:09 AM
Andeavour's Avatar
Andeavour Andeavour is offline
Hatchling Croc
 
Join Date: Mar 2005
Posts: 39
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

phpinfo() run on Navigator still reports 4.0.22 as well
Unfortunately I have a client who's system has been developed on 4.1.1 who uses datediff() functionality, so I was hoping for this upgrade...

Last edited by Andeavour; 06-01-2005 at 09:42 AM. Reason: Additional info
Reply With Quote
  #5  
Old 06-01-2005, 03:58 PM
circpros circpros is offline
Banned User
 
Join Date: Mar 2005
Posts: 61
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

Is there a loss of certain calls related to the upgrade? I'm using a very simple text updater program that calls from a flat log file to fill in content, and am getting the following error.

Quote:
Warning: fopen(post.log): failed to open stream: Permission denied in /home/***/public_html/text.php on line 58

Warning: flock(): supplied argument is not a valid stream resource in /home/***/public_html/text.php on line 59

Warning: fputs(): supplied argument is not a valid stream resource in /home/***/public_html/text.php on line 60

Warning: fclose(): supplied argument is not a valid stream resource in /home/***/public_html/text.php on line 61


The section in the referenced file is listed below with the pertainent lines in bold italics:

Quote:

### UPDATING LOG FILE ###

case 'update':

if (get_magic_quotes_gpc()) {

$com = stripslashes($com);

}

$fp = fopen($logfile, "w");

flock($fp, LOCK_EX);

fputs($fp, $com);

fclose($fp);

echo
<<<EOF

<form action="$PHP_SELF" method="POST">

Successfully updated.
<br>

<input type=hidden name=action value=admin>

<input type=hidden name=pass value="$pass">

<input type=submit value="BACK"></form>

</td></tr></table><hr>

EOF;

break;

### UPDATING LOG FILE ###




My cpanel reflects PHP version 4.3.10 and MySQL version 4.0.22. I'm not certain that the Cpanel is reflecting the correct info, because I know these calls worked before I left for vacation, and don't work now.... The only intervening event I can see is the upgrade. Is there a change in syntax between PHP versions that renders the above language obsolete?

Last edited by circpros; 06-01-2005 at 04:01 PM.
Reply With Quote
  #6  
Old 06-03-2005, 05:54 PM
GatorLyron
HostGator Guest
 
Posts: n/a
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

No, sorry had other issues that needed to be addressed. Will get it done soon.
Reply With Quote
  #7  
Old 06-03-2005, 11:16 PM
circpros circpros is offline
Banned User
 
Join Date: Mar 2005
Posts: 61
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

And my problem was simply permissions based. Probably related to the ftp hack that happened while I was on vacation.......
Reply With Quote
  #8  
Old 06-19-2005, 06:20 AM
tolgaorhon tolgaorhon is offline
Hatchling Croc
 
Join Date: Jun 2005
Posts: 8
Question Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

Any news about the upgrade? Although not urgent, upgrade to 4.1 would be nice as it supports different charsets and colations.
Reply With Quote
  #9  
Old 07-11-2005, 04:19 AM
David's Avatar
David David is offline
Swamp Croc
 
Join Date: Sep 2004
Posts: 297
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

Even though cpanel is showing 4.3.10, I think something has changed on my server (i.e. the upgrade or configuration change) because we have two sites running phpATM and they are now both giving this error randomly:
Fatal error: session_start(): Failed to initialize storage module: user (path: /tmp) in /home/..../public_html/include/common.php on line 65

I am the only one who has file level access to these sites, and nothing has changed with any of the php code, so something strange must be going on. Can anyone shed light on this?


David
Reply With Quote
  #10  
Old 07-11-2005, 07:30 AM
circpros circpros is offline
Banned User
 
Join Date: Mar 2005
Posts: 61
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

Double check permissions David. I've had a few instances of file permissions changing on me with noone accessing them, and spending a lot of time trying to figure it out before I just checked permissions.....
Reply With Quote
  #11  
Old 07-22-2005, 10:38 AM
c-double's Avatar
c-double c-double is offline
Hatchling Croc
 
Join Date: Apr 2005
Location: Bakersfield, CA
Posts: 11
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

there's a security advisory out for mysql
http://secunia.com/advisories/16170/
they say to upgrade to version 4.1.13
__________________
C-Double Web Development
Affordable Web Hosting & Design
Reply With Quote
  #12  
Old 07-29-2005, 09:43 AM
jwhouse jwhouse is offline
Hatchling Croc
 
Join Date: Jul 2005
Posts: 5
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

Any idea when this happened? Today, I began having some trouble with my nuke site and then noticed in cpanel that the php version is now 4.3.11 but the sql version is still 4.0.24.

EDIT:Nevermind. I figured it out, although I'm not sure why it only started happening today. Anyway, Thanks!

Last edited by jwhouse; 07-29-2005 at 10:24 AM.
Reply With Quote
  #13  
Old 08-02-2005, 09:34 PM
lynt lynt is offline
Hatchling Croc
 
Join Date: Feb 2005
Posts: 7
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

Anyone else see their timestamps are warped?!!?

Plus some PHP functions that were working are now not ie:

I wish to use: imagettftext()

And PHP support say "You need to compile the freetype library into php to be able to use that function."





Last edited by lynt; 08-02-2005 at 11:25 PM.
Reply With Quote
  #14  
Old 10-29-2005, 12:03 AM
markgroen markgroen is offline
Hatchling Croc
 
Join Date: Oct 2004
Posts: 26
Question Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

Just hoping I might get an answer faster this way as it's been about an hour and half since I emailed support and maybe someone is checking this more often.

Anyhoo - my question is: cadillac doesn't seem to have been upgraded to MySQL 4.1.x yet and of course wondering what the hold up is as it's a pretty old version and think there are some security updates about it to upgrade too.

UPDATE: Just in from support:
Code:
We are migrating all our server to mysql 4.1 one by one. They are being done in  batches. You can expect to have cadillac upgraded by the next weekend at the  max. We will try to post in the forum about this as well.
I re-wrote my sql to use a join instead of a sub-query just in case, it's not as elegant and fast so looking forward to the upgrade.
__________________
cheers,

Mark Groen
mgwebservices.ca
markgroen.com

Last edited by markgroen; 10-29-2005 at 12:46 AM.
Reply With Quote
  #15  
Old 10-29-2005, 12:54 PM
GatorShashank's Avatar
GatorShashank GatorShashank is offline
Hostgator Staff
 
Join Date: Jun 2004
Location: Make a guess :-)
Posts: 1,077
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

We do check into this forum as well but normally all technical issues are handled only when you mail support@hostgator.com . So just submit a ticket whenever you need an instant update from our support team. Regarding the upgrade issue. It has already been discussed about the upgrade internally amongst us and we are working on getting the servers upgraded to the Mysql 4.1 very soon.

We will keep you posted.
__________________
Shashank Wagh
Systems Administrator & Level III Support,
Hostgator.com LLC.
Hostgator in India. Its here.
http://www.hostgator.in
Reply With Quote
  #16  
Old 10-29-2005, 01:22 PM
MachineDog MachineDog is offline
Royal Croc
 
Join Date: Jul 2005
Location: Somewhere in the everglades.
Posts: 513
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

Already been done for awhile on my box..
__________________

Reply With Quote
  #17  
Old 12-28-2005, 01:28 PM
mxp mxp is offline
Hatchling Croc
 
Join Date: Feb 2005
Posts: 5
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

When can we expect to see an upgrade to mysql v4.1? Dont know about others but the server im on is running MySQL 4.0.25-standard.

many thanks
mxp
Reply With Quote
  #18  
Old 12-28-2005, 02:44 PM
GatorTimGreer
HostGator Guest
 
Posts: n/a
Default Re: Upgrade Planned: PHP 4.3.11 & MySQL 4.1

Hello,

If you can open a ticket with the server or your domain name, and ask for the upgrade, we can do this for you. Thanks.
Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
MySQL Upgrade Nutter Suggestions 0 12-29-2004 10:39 AM
Potential Problems upgrade PHP to 4.3.10 (especially Mambo) karz10 Suggestions 5 12-22-2004 08:11 AM

All times are GMT -5. The time now is 06:40 AM.