Programmer wanted

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • T Hanson

    Programmer wanted

    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:


    Then email me:

    info@wallstreet pager.com



  • Keith Bowes

    #2
    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.


    Comment

    • lawrence

      #3
      Re: Programmer wanted

      Keith Bowes <do.not@spam.me > wrote in message news:<106609407 3.237549@cache7 .usenetserver.c om>...[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.

      Comment

      • Dominic Rogers

        #4
        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@wallstreet pager.com
        >
        >
        >[/color]
        Please can you specify a bit more details as to what scripts are
        currently being used on the old site.

        Comment

        • Justin Koivisto

          #5
          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@wallstreet pager.com[/color]

          Step one:
          beginning of every script (because register_global s was likely On):
          <?php
          extract($_GET,E XTR_REFS);
          extract($_POST, EXTR_REFS);
          extract($_COOKI E,EXTR_REFS);
          extract($_SESSI ON,EXTR_REFS);
          ?>

          Step 2:
          Replace in all files, all instances:
          $HTTP_GET_VARS with $_GET
          $HTTP_POST_VARS with $_POST
          $HTTP_SESSION_V ARS with $_SESSION
          $HTTP_ENV_VARS with $_ENV
          $HTTP_COOKIE_VA RS with $_COOKIE
          $HTTP_SERVER_VA RS 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.

          Comment

          Working...