Connecting Tech Pros Worldwide Help | Site Map

Programmer wanted

  #1  
Old July 17th, 2005, 01:31 AM
T Hanson
Guest
 
Posts: n/a
Need PHP person to move a website from an old website to a new one.

The current server we're on is running php version 4.0.4 and the new servers
are running 4.3.1. The release dates between these versions are years
apart. This will undoubtedly cause compatibility issues that will need to
be fixed.

look here:
www.wallstreetpager.com

Then email me:

info@wallstreetpager.com



  #2  
Old July 17th, 2005, 01:31 AM
Keith Bowes
Guest
 
Posts: n/a

re: Programmer wanted


T Hanson wrote:[color=blue]
> The current server we're on is running php version 4.0.4 and the new servers
> are running 4.3.1. The release dates between these versions are years
> apart. This will undoubtedly cause compatibility issues that will need to
> be fixed.
>[/color]

Cool. Fixing it should keep you entertained for a long time.


  #3  
Old July 17th, 2005, 01:31 AM
lawrence
Guest
 
Posts: n/a

re: Programmer wanted


Keith Bowes <do.not@spam.me> wrote in message news:<1066094073.237549@cache7.usenetserver.com>.. .[color=blue]
> T Hanson wrote:[color=green]
> > The current server we're on is running php version 4.0.4 and the new servers
> > are running 4.3.1. The release dates between these versions are years
> > apart. This will undoubtedly cause compatibility issues that will need to
> > be fixed.
> >[/color]
>
> Cool. Fixing it should keep you entertained for a long time.[/color]

Not sure how to read this response.
  #4  
Old July 17th, 2005, 01:32 AM
Dominic Rogers
Guest
 
Posts: n/a

re: Programmer wanted


T Hanson wrote:
[color=blue]
> Need PHP person to move a website from an old website to a new one.
>
> The current server we're on is running php version 4.0.4 and the new servers
> are running 4.3.1. The release dates between these versions are years
> apart. This will undoubtedly cause compatibility issues that will need to
> be fixed.
>
> look here:
> www.wallstreetpager.com
>
> Then email me:
>
> info@wallstreetpager.com
>
>
>[/color]
Please can you specify a bit more details as to what scripts are
currently being used on the old site.

  #5  
Old July 17th, 2005, 01:32 AM
Justin Koivisto
Guest
 
Posts: n/a

re: Programmer wanted


T Hanson wrote:[color=blue]
> Need PHP person to move a website from an old website to a new one.
>
> The current server we're on is running php version 4.0.4 and the new servers
> are running 4.3.1. The release dates between these versions are years
> apart. This will undoubtedly cause compatibility issues that will need to
> be fixed.
>
> look here:
> www.wallstreetpager.com
>
> Then email me:
>
> info@wallstreetpager.com[/color]

Step one:
beginning of every script (because register_globals was likely On):
<?php
extract($_GET,EXTR_REFS);
extract($_POST,EXTR_REFS);
extract($_COOKIE,EXTR_REFS);
extract($_SESSION,EXTR_REFS);
?>

Step 2:
Replace in all files, all instances:
$HTTP_GET_VARS with $_GET
$HTTP_POST_VARS with $_POST
$HTTP_SESSION_VARS with $_SESSION
$HTTP_ENV_VARS with $_ENV
$HTTP_COOKIE_VARS with $_COOKIE
$HTTP_SERVER_VARS with $_SERVER
$PHP_SELF with $_SERVER['PHP_SELF']

Step 3:
Test the site

If you have places where file uploads are done, you may have to rewrite
those parts.

HTH

--
Justin Koivisto - spam@koivi.com
PHP POSTERS: Please use comp.lang.php for PHP related questions,
alt.php* groups are not recommended.

Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Fw: Access/SQL Programmer wanted in NY/Westchester Area 1solomon answers 2 September 5th, 2006 04:55 PM
PERL/CGI Programmer Wanted Greg answers 0 October 31st, 2005 09:25 PM
PHP programmer wanted Florida Gary Davis answers 0 July 17th, 2005 02:49 PM
PHP programmer wanted UK Chris answers 1 July 17th, 2005 12:35 PM
php/mysql programmer wanted ng@an4a.com answers 0 July 17th, 2005 10:32 AM