Announcement

Collapse
No announcement yet.

OCCUpgrade

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    OCCUpgrade

    HELP!!! First off, I'm a bit of a newcomer to all of this so basic language is required!!!!
    I am trying to set up Protx as my PSP. I have found the OCCupgrade file to put in the encrption password but where on earth do I put it!!
    Thanks!! Lorraine

    #2
    Hi Lorraine,

    You've found the file OCCProtxScriptTemplate.pl within your

    {actinic root}\OCCUpgrade\CommonOCC folder (where {actinic root} is where you have installed Actinic, normally C:\Program Files\Actinic 7)

    Edit this file using a text editor (NotePad for example), NOT Word

    Around line 48 You'll see:

    Code:
    PROTX VPS Specific constants here
    The next lines are

    Code:
    my $sPassword = 'testvendor';
    my $sConfirmationEMail = '';
    Replace testvendor with the 16 character password sent by Protx, leaving the quotes intact.

    The $sConfirmationEMail line allows you to specify an email address to have Protx send the transaction results to e.g:

    $sConfirmationEMail='protx@yourcompany.com';

    Also bear in mind the type of authorisation you are doing:

    1. Payment
    2. Deferred
    3. Pre-authorised.

    The default in this file is PAYMENT (line 84)

    Code:
    $sHiddenValues .= "<INPUT TYPE=HIDDEN NAME=\"TxType\" VALUE=\"PAYMENT\">\n";
    Depending on the method you have agreed with Protx, you may need to change PAYMENT to DEFERRED or PREAUTH

    Save file.

    One last important step.

    CLOSE Actinic program.

    Find the file OCCUpgrade.ini file in {actinic root}\OCCUpgrade\

    Edit using notepad.

    Line 2, under [VERSION] is a number e.g. 1045. Incremenent whatever number you have by 1 e.g 1045 -> 1046

    Save file.

    Start Actinic

    All being well, you should see a diaglogue box pop up with a message abount upgrading the databases OCC providers (can't remember exact message!)

    Upload site

    Done

    HTH
    Chris
    -----
    http://www.livingaidsonline.co.uk

    Comment


      #3
      Thanks

      Thanks! All done.

      Comment

      Working...
      X