Joomla.it Forum

Joomla! 1.0.x (versione con supporto terminato) => Le voci di Joomla.it (solo per versione Joomla 1.0.x) => : bibopm 21 Jul 2006, 17:33:10

: Problema con account expiration control
: bibopm 21 Jul 2006, 17:33:10
Ho installato account expiration control e sul menù trovo la voce Hacks. Se premo li compare questa cosa...sapete darmi una mano per impostarlo in modo che funzioni?


IMPORTANT NOTES

To complete the installation you need to change your <root_dir>/includes/joomla.php, <root_dir>/modules/mod_login.php and <root_dir>/components/com_registration/com_registration.php files.
Please, MAKE A BACKUP OF THESE FILES BEFORE ANY CHANGES!!!
On mod_login.php you need to change the call when users click on "Create one" link for create a new account on your site.
You just need to change this file if you want to use integration with payment systems and for default expiration setting work properly.
Look on the file for the piece of code below and edit the line in red font, from "option=com_registration" to "option=com_acctexp".


        if ( $registration_enabled ) {
                ?>
                <tr>
                        <td>
                        <?php echo _NO_ACCOUNT; ?>
                        <a href="<?php echo sefRelToAbs( 'index.php?option=com_acctexp&task=register' ); ?>">
                        <[/url]
                        </td>
                </tr>
                <?php
        }
         
         



On joomla.php, first look in the begining of the file for a series of require_once instructions.
Between the last instruction and the comments stating "Class to support ..." insert (only) the lines in red, as I show below:


   require_once( $mosConfig_absolute_path . "/includes/joomla.xml.php" );
   require_once( $mosConfig_absolute_path . '/includes/phpInputFilter/class.inputfilter.php' );
   
   // Hack for integration with Account Expiration Component
   if (file_exists( $mosConfig_absolute_path . "/administrator/components/com_acctexp/includes/login.validate.php" )  ) {
      include_once( $mosConfig_absolute_path . "/administrator/components/com_acctexp/includes/login.validate.php" );
   }
   // End of code for Account Expiration Control Component
   
   /**
   * Class to support function caching
         
         

Next, look for the function login, on the same file, and change it according to the code below. Remember, code that must be inserted are in RED - just a few lines including comments.


   function login( $username=null,$passwd=null ) {
      global $acl;

      $usercookie    = mosGetParam( $_COOKIE, 'usercookie', '' );
      $sessioncookie    = mosGetParam( $_COOKIE, 'sessioncookie', '' );
      if (!$username || !$passwd) {
         $username    = mosGetParam( $_POST, 'username', '' );
         $passwd    = mosGetParam( $_POST, 'passwd', '' );
         $passwd    = md5( $passwd );
         $bypost    = 1;
      }
      $remember = mosGetParam( $_POST, 'remember', '' );

      if (!$username || !$passwd) {
         echo "\n";
         exit();
      } else {
         $query = "SELECT *"
         . "\n FROM #__users"
         . "\n WHERE username = '$username'"
         . "\n AND password = '$passwd'"
         ;
         $this->_db->setQuery( $query );
         $row = null;
         if ($this->_db->loadObject( $row )) {
            if ($row->block == 1) {
               mosErrorAlert(_LOGIN_BLOCKED);
            }
                // Hack for integration with Account Expiration Component
            // check if the user account has not been expired
            // IMPORTANT: Remove this line BEFORE uninstall the component
            loginValidate($username);
            // End of code for Account Expiration Control Component

            // fudge the group stuff
            $grp = $acl->getAroGroup( $row->id );
            $row->gid = 1;

            if ($acl->is_group_child_of( $grp->name, 'Registered', 'ARO' ) ||
            $acl->is_group_child_of( $grp->name, 'Public Backend', 'ARO' )) {
               // fudge Authors, Editors, Publishers and Super Administrators into the Special Group
               $row->gid = 2;
            }
            $row->usertype = $grp->name;

            $session =& $this->_session;
            $session->guest       = 0;
            $session->username       = $username;
            $session->userid       = intval( $row->id );
            $session->usertype       = $row->usertype;
            $session->gid          = intval( $row->gid );

            $session->update();

            $currentDate = date("Y-m-d\TH:i:s");
            $query = "UPDATE #__users"
            . "\n SET lastvisitDate = '$currentDate'"
            . "\n WHERE id = $session->userid"
            ;
            $this->_db->setQuery($query);
            if (!$this->_db->query()) {
               die($this->_db->stderr(true));
            }

            if ($remember=="yes") {
               $lifetime = time() + 365*24*60*60;
               setcookie( "usercookie[username]", $username, $lifetime, "/" );
               setcookie( "usercookie[password]", $passwd, $lifetime, "/" );
            }
            //mosCache::cleanCache('com_content');
            mosCache::cleanCache();
         } else {
            if (isset($bypost)) {
               mosErrorAlert(_LOGIN_INCORRECT);
            } else {
               $this->logout();
               mosRedirect("index.php");
            }
            exit();
         }
      }
   }



On com_registration.php, you need to disable the user link to it through browser's address bar.
Insert (only) the lines in red, as I show below:



   // no direct access
   defined( '_VALID_MOS' ) or die( 'Restricted access' );
   // Hack for integration with Account Expiration Component - Disabling direct registration
   echo "Hacking attempt.";
   return;
   // End of code for Account Expiration Control Component
   
: Re: Problema con account expiration control
: LucaZone 22 Jul 2006, 08:44:10
Devi modificare i file, registration.php e joomla.php, con quelle modifiche che ti dice nella guida

in joomla.php, devi aggiungere questo, cerca le voci

require_once( $mosConfig_absolute_path . "/includes/joomla.xml.php" );
require_once( $mosConfig_absolute_path . '/includes/phpInputFilter/class.inputfilter.php' );

ed aggiungi qusto:

   // Hack for integration with Account Expiration Component
   if (file_exists( $mosConfig_absolute_path . "/administrator/components/com_acctexp/includes/login.validate.php" )  ) {
      include_once( $mosConfig_absolute_path . "/administrator/components/com_acctexp/includes/login.validate.php" );
   }
   // End of code for Account Expiration Control Component

poi cerca,

         $this->_db->setQuery( $query );
         $row = null;
         if ($this->_db->loadObject( $row )) {
            if ($row->block == 1) {
               mosErrorAlert(_LOGIN_BLOCKED);
            }

ed aggiungi questo codice

                // Hack for integration with Account Expiration Component
            // check if the user account has not been expired
            // IMPORTANT: Remove this line BEFORE uninstall the component
            loginValidate($username);
            // End of code for Account Expiration Control Component

in registration.php, cerca

   // no direct access
   defined( '_VALID_MOS' ) or die( 'Restricted access' );

aggiungi questo codice

   // Hack for integration with Account Expiration Component - Disabling direct registration
   echo "Hacking attempt.";
   return;
   // End of code for Account Expiration Control Component


salva i file e caricali, attezione, prima fai un backup dei due file

Ciao



: Re: Problema con account expiration control
: bibopm 22 Jul 2006, 13:51:44
Ho seguito le tue istruzioni però mi resta sempre sopra questa cosa:

Notice: Constant _EXPIRE_NOW already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 34

Notice: Constant _EXPIRE_01MONTH already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 35

Notice: Constant _EXPIRE_03MONTH already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 36

Notice: Constant _EXPIRE_12MONTH already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 37

Notice: Constant _CONFIGURE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 38

Notice: Constant _REMOVE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 39

Notice: Constant _CNAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 40

Notice: Constant _USERLOGIN already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 41

Notice: Constant _EXPIRATION already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 42

Notice: Constant _USERS already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 43

Notice: Constant _DISPLAY already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 44

Notice: Constant _NOTSET already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 45

Notice: Constant _SAVE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 46

Notice: Constant _CANCEL already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 47

Notice: Constant _EXP_ASC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 48

Notice: Constant _EXP_DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 49

Notice: Constant _NAME_ASC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 50

Notice: Constant _NAME_DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 51

Notice: Constant _LOGIN_ASC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 52

Notice: Constant _LOGIN_DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 53

Notice: Constant _ORDER_BY already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 54

Notice: Constant _SAVED already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 55

Notice: Constant _CANCELED already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 56

Notice: Constant _CONFIGURED already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 57

Notice: Constant _REMOVED already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 58

Notice: Constant _ACCT_DATE_FORMAT already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 59

Notice: Constant _EXPIRED already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 60

Notice: Constant _ERRTIMESTAMP already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 61

Notice: Constant _EXPIRED_TITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 62

Notice: Constant _DEAR already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 63

Notice: Constant _EOT_TITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 64

Notice: Constant _EOT_DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 65

Notice: Constant _EOT_DATE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 66

Notice: Constant _EOT_CAUSE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 67

Notice: Constant _REMOVE_CLOSED already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 68

Notice: Constant _FORCE_CLOSE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 69

Notice: Constant _PUBLISH_PAYPLAN already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 70

Notice: Constant _UNPUBLISH_PAYPLAN already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 71

Notice: Constant _NEW_PAYPLAN already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 72

Notice: Constant _EDIT_PAYPLAN already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 73

Notice: Constant _REMOVE_PAYPLAN already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 74

Notice: Constant _SAVE_PAYPLAN already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 75

Notice: Constant _CANCEL_PAYPLAN already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 76

Notice: Constant _PAYPLANS_TITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 77

Notice: Constant _PAYPLANS_MAINDESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 78

Notice: Constant _PAYPLAN_NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 79

Notice: Constant _PAYPLAN_DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 80

Notice: Constant _PAYPLAN_ACTIVE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 81

Notice: Constant _PAYPLAN_A3 already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 82

Notice: Constant _PAYPLAN_P3 already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 83

Notice: Constant _PAYPLAN_T3 already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 84

Notice: Constant _PAYPLAN_USERCOUNT already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 85

Notice: Constant _PAYPLAN_REORDER already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 86

Notice: Constant _PAYPLANS_HEADER already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 87

Notice: Constant _ALTERNATIVE_PAYMENT already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 88

Notice: Constant _SUBSCR_DATE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 89

Notice: Constant _ACTIVE_TITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 90

Notice: Constant _ACTIVE_DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 91

Notice: Constant _LASTPAY_DATE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 92

Notice: Constant _USERPLAN already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 93

Notice: Constant _CANCELLED_TITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 94

Notice: Constant _CANCELLED_DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 95

Notice: Constant _CANCEL_DATE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 96

Notice: Constant _MANUAL_DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 97

Notice: Constant _CFG_TAB1_TITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 98

Notice: Constant _CFG_TAB2_TITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 99

Notice: Constant _CFG_TAB3_TITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 100

Notice: Constant _CFG_TAB1_SUBTITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 101

Notice: Constant _CFG_TAB2_SUBTITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 102

Notice: Constant _CFG_TAB3_SUBTITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 103

Notice: Constant _CFG_TAB1_OPT1NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 104

Notice: Constant _CFG_TAB1_OPT1DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 105

Notice: Constant _CFG_TAB2_OPT1NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 106

Notice: Constant _CFG_TAB2_OPT1DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 107

Notice: Constant _CFG_TAB2_OPT2NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 108

Notice: Constant _CFG_TAB2_OPT2DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 109

Notice: Constant _CFG_TAB2_OPT3NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 110

Notice: Constant _CFG_TAB2_OPT3DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 111

Notice: Constant _CFG_TAB3_OPT1NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 112

Notice: Constant _CFG_TAB3_OPT1DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 113

Notice: Constant _CFG_TAB3_OPT2NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 114

Notice: Constant _CFG_TAB3_OPT2DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 115

Notice: Constant _PAYPLAN_DETAIL_TITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 116

Notice: Constant _PAYPLAN_DETAIL01NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 117

Notice: Constant _PAYPLAN_DETAIL01DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 118

Notice: Constant _PAYPLAN_DETAIL02NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 119

Notice: Constant _PAYPLAN_DETAIL02DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 120

Notice: Constant _PAYPLAN_DETAIL03NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 121

Notice: Constant _PAYPLAN_DETAIL03DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 122

Notice: Constant _PAYPLAN_DETAIL04NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 123

Notice: Constant _PAYPLAN_DETAIL04DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 124

Notice: Constant _PAYPLAN_DETAIL05NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 125

Notice: Constant _PAYPLAN_DETAIL05DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 126

Notice: Constant _PAYPLAN_DETAIL06NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 127

Notice: Constant _PAYPLAN_DETAIL06DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 128

Notice: Constant _PAYPLAN_DETAIL07NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 129

Notice: Constant _PAYPLAN_DETAIL07DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 130

Notice: Constant _PAYPLAN_DETAIL08NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 131

Notice: Constant _PAYPLAN_DETAIL08DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 132

Notice: Constant _PAYPLAN_PERUNIT1 already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 133

Notice: Constant _PAYPLAN_PERUNIT2 already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 134

Notice: Constant _PAYPLAN_PERUNIT3 already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 135

Notice: Constant _PAYPLAN_PERUNIT4 already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 136

Notice: Constant _PAYPLAN_CBUTTON already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 137

Notice: Constant _EOT_CAUSE_FAIL already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 138

Notice: Constant _EOT_CAUSE_BUYER already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 139

Notice: Constant _EOT_CAUSE_FORCED already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 140

Notice: Constant _VERSION already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 142

Notice: Constant _SUB_COMPLETE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 147

Notice: Constant _PEND_DATE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 148

Notice: Constant _PEND_TITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 149

Notice: Constant _PEND_DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 150

Notice: Constant _PAYPLAN_CURRENCY1 already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 152

Notice: Constant _PAYPLAN_CURRENCY2 already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 153

Notice: Constant _PAYPLAN_CURRENCY3 already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 154

Notice: Constant _PAYPLAN_CURRENCY4 already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 155

Notice: Constant _PAYPLAN_CURRENCY5 already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 156

Notice: Constant _PAYPLAN_CURRENCY6 already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 157

Notice: Constant _PAYPLAN_DETAIL09NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 158

Notice: Constant _PAYPLAN_DETAIL09DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 159

Notice: Constant _PAYPLAN_DETAIL10NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 160

Notice: Constant _PAYPLAN_DETAIL10DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 161

Notice: Constant _PAYPLAN_CURRENCY already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 162

Notice: Constant _PAYPLAN_TRIAL already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 164

Notice: Constant _PAYPLAN_TRIAL_DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 165

Notice: Constant _PAYPLAN_TRIAL_TITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 166

Notice: Constant _PAYPLAN_DETAIL11NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 167

Notice: Constant _PAYPLAN_DETAIL11DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 168

Notice: Constant _PAYPLAN_DETAIL12NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 169

Notice: Constant _PAYPLAN_DETAIL12DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 170

Notice: Constant _PAYPLAN_DETAIL13NAME already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 171

Notice: Constant _PAYPLAN_DETAIL13DESC already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 172

Notice: Constant _PAYPLAN_REGULAR_TITLE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 173

Notice: Constant _FREE already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 175

Notice: Constant _FORFIRST already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 176

Notice: Constant _FOREACH already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 177

Notice: Constant _THEN already defined in c:\programmi\easyphp1-8\www\prealpi sport\administrator\components\com_acctexp\com_acctexp_language\english.php on line 178