[PHP] PHP upgrade... issues???

2004-07-15 Thread Tristan . Pretty
I've just got this mail from my host... = Dear customer, This email is sent to inform you that we'll upgrade the PHP version on your server to the latest stable version 4.3.8 within the next hour. = Are there any issues that I need to panic about...? I'm off to google

Re: [PHP] PHP upgrade... issues???

2004-07-15 Thread John W. Holmes
[EMAIL PROTECTED] wrote: I've just got this mail from my host... = Dear customer, This email is sent to inform you that we'll upgrade the PHP version on your server to the latest stable version 4.3.8 within the next hour. = Are there any issues that I need to panic

Re: [PHP] PHP upgrade... issues???

2004-07-15 Thread Jordi Canals
[EMAIL PROTECTED] wrote: This email is sent to inform you that we'll upgrade the PHP version on your server to the latest stable version 4.3.8 within the next hour. = Are there any issues that I need to panic about...? Don't worry about, I'm sure you will have any problem as it only

Re: [PHP] PHP upgrade... issues???

2004-07-15 Thread Tristan . Pretty
' know I'm sounding liek a worried mother hen, but I can't seem to find confirmation on line?!?! Ho hum, nearly Friday eh? John W. Holmes [EMAIL PROTECTED] 15/07/2004 17:40 To [EMAIL PROTECTED] cc [EMAIL PROTECTED] Subject Re: [PHP] PHP upgrade... issues??? [EMAIL PROTECTED] wrote: I've

Re: [PHP] PHP upgrade... issues???

2004-07-15 Thread Marek Kilimajer
[EMAIL PROTECTED] wrote: Phew! However, While reading about php upgrades, I've got the impression that version 5, will not support MySQL by default... Does that mean that I'll have to ensure my hosts install an extra module, or worse case senario, I'll have to re-write all my pages, to take new

[PHP] upgrade issues

2003-02-06 Thread Brian V Bonini
What's wrong with this snippet of code that would make it stop working after upgrading from 4.0.6 to 4.3.0 ?php if (!$id) { include pagetop.inc.php; } if ($id == 1) { $title = xxx; include pagetop.inc.php; ? pStuff/p ?php } ? './configure' '--with-apxs=/usr/local/www/bin/apxs'

Re: [PHP] upgrade issues

2003-02-06 Thread Jason Sheets
It looks like your code is using register globals which are turned off by default in PHP 4.2 and greater. You can either modify your code to use the PHP super globals or turn register globals back on (you can do this in php.ini or via an httpd.conf/.htaccess). Jason On Thu, 2003-02-06 at 08:12,

[PHP] Upgrade issues

2002-11-25 Thread Chris Knipe
Lo all, I upgraded from PHP 4.2.1 to 4.2.2, and now all of a sudden the following code is generating a WARNING??? if (file_exists(themes/$ThemeSel/modules/$name/$mod_file.php)) { $modpath = themes/$ThemeSel/; } I don't get it? Warning: Unable to access

Re: [PHP] Upgrade issues

2002-11-25 Thread @ Edwin
Hello, Chris Knipe [EMAIL PROTECTED] wrote: Lo all, I upgraded from PHP 4.2.1 to 4.2.2, and now all of a sudden the following code is generating a WARNING??? if (file_exists(themes/$ThemeSel/modules/$name/$mod_file.php)) { $modpath = themes/$ThemeSel/; } I don't get

Re: [PHP] Upgrade issues

2002-11-25 Thread Chris Knipe
if (file_exists(themes/$ThemeSel/modules/$name/$mod_file.php)) { $modpath = themes/$ThemeSel/; } I don't get it? Warning: Unable to access themes/DeepBlue/modules/News/index.php in /usr/local/www/v-webs/games.savage.za.org/html/index.php on line 46 Line 46 is

Re: [PHP] Upgrade issues

2002-11-25 Thread @ Edwin
Chris Knipe [EMAIL PROTECTED] wrote: if (file_exists(themes/$ThemeSel/modules/$name/$mod_file.php)) { $modpath = themes/$ThemeSel/; } I don't get it? Warning: Unable to access themes/DeepBlue/modules/News/index.php in

Re: [PHP] Upgrade issues

2002-11-25 Thread Chris Knipe
if (file_exists(themes/$ThemeSel/modules/$name/$mod_file.php)) { $modpath = themes/$ThemeSel/; } I don't get it? Warning: Unable to access themes/DeepBlue/modules/News/index.php in /usr/local/www/v-webs/games.savage.za.org/html/index.php on line 46

Re: [PHP] Upgrade issues

2002-11-25 Thread Marek Kilimajer
Check the owners of directories and files, they must be the same as for /usr/local/www/v-webs/games.savage.za.org/html/index.php, then it should work under safe mode too. Chris Knipe wrote: if (file_exists(themes/$ThemeSel/modules/$name/$mod_file.php)) { $modpath =

Re: [PHP] Upgrade issues

2002-11-25 Thread Chris Knipe
, November 25, 2002 8:19 PM Subject: Re: [PHP] Upgrade issues Check the owners of directories and files, they must be the same as for /usr/local/www/v-webs/games.savage.za.org/html/index.php, then it should work under safe mode too. Chris Knipe wrote: if (file_exists(themes/$ThemeSel/modules