Page 17 of 18

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Sun Sep 24, 2006 1:07 pm
by Ty2u
That sounds beautiful :D  I look forward to testing this out.  Is the frontend a tableless layout?  And will it support Docman?  That would be really cool!  I was trying to get Docman with JACL Plus working with this thing awhile ago but gave up.  I had converted it to a tableless on the frontend but I think you completely redid all that.  I also converted the backened to the new tabs and control panel format which was neat.  But that aint nothing compared to what you guys have done to this.  I can't wait till it works and I can start creating membership sites with it by the numbers :)  Thanks for all your great work!

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Sun Sep 24, 2006 1:12 pm
by skOre
Well, our first table-less frontend broke on too many sites, so I have to stack up on brains to make it work again. For now, we reverted to using some tables to ensure we are not breaking layouts. But for the future, table-less layouts still are high priority, as are accessibility. Its just that there were other things that we had to get done first.

Since it now works with JACL, and Docman was working without any problem before, I think that yes, we now support this combination. I just haven't tested it yet.

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Fri Oct 06, 2006 12:27 pm
by Mackelito
skOre wrote: To enflame some interest for our soon-to-be-publicly-released Version 1 RC1:
When will it go public? reeeeeeeeally wanna try it out.. sounds great.. but is it?

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Fri Oct 06, 2006 1:24 pm
by skOre
If everything goes right, we should have it done today. BUT I'm bad at such predictions... who knows what might turn up? :D

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Fri Oct 06, 2006 1:58 pm
by Mackelito
haha.. ok well then I´ll be waiting! ;)

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Fri Oct 06, 2006 9:40 pm
by skOre
Look what we got here :)

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Sat Oct 07, 2006 1:47 am
by helder
A click missed and the component haven't been published.. :)
Now, it's true: AEC 1.0.0RC1 available.

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Tue Oct 10, 2006 10:25 am
by Knalltrauma
Is there any way to hack the core-files manually? I don't like "hacks" of core-files by a system, I don't really know  :D

I'm quite paranoid, I know.  :-[ :P

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Tue Oct 10, 2006 10:28 am
by helder
: )
I really understand you, believe me.
Well, I would say... make a copy of the original files, use the automatic hack, and then run a "diff" of the original and new files. You will see exactly what is hacked (not much btw).
Then, if you want, you can restore the original files and make the hacks manually :P You can run the above in a test system and then change by your own your live system.

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Tue Oct 10, 2006 11:40 am
by skOre
There is also a hacks.txt included which teaches you on the hacks. Plus our component always makes backup-copies for the files it changes.

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Tue Oct 10, 2006 11:52 am
by Mackelito
skOre wrote: There is also a hacks.txt included which teaches you on the hacks. Plus our component always makes backup-copies for the files it changes.
Now I really do love you!  :-* :-* :-* :-*

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Tue Oct 10, 2006 11:59 am
by skOre
Really? wanna do a translation? :D 8)

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Tue Oct 10, 2006 12:05 pm
by Mackelito
sure why not... eeerm.. is it a bit language file?  :'(

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Tue Oct 10, 2006 12:06 pm
by skOre
Hehe, its about 300 variables if you mean that ;) (just check out the english.php)

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Tue Oct 10, 2006 12:16 pm
by Mackelito
iiiih!... oh well... I´m on it!

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Tue Oct 10, 2006 1:06 pm
by Mackelito

Code: Select all

<?php // Assemble Buttons
$link = 'index2.php?option=com_acctexp&task=config';
HTML_AcctExp::quickiconButton( $link, 'aec_symbol_edit.png', 'Edit Expiration' );

$link = 'index2.php?option=com_acctexp&task=notconfig';
HTML_AcctExp::quickiconButton( $link, 'aec_symbol_excluded.png', 'Excluded' );

$link = 'index2.php?option=com_acctexp&task=showSubscriptionPlans';
HTML_AcctExp::quickiconButton( $link, 'aec_symbol_plans.png', 'Plans' );

$link = 'index2.php?option=com_acctexp&task=showPending';
_AcctExp::quickiconButton( $link, 'aec_symbol_pending.png', 'Pending' );

$link = 'index2.php?option=com_acctexp&task=showActive';
HTML_AcctExp::quickiconButton( $link, 'aec_symbol_active.png', 'Active' );

$link = 'index2.php?option=com_acctexp&task=showCancelled';
HTML_AcctExp::quickiconButton( $link, 'aec_symbol_cancelled.png', 'Cancelled' );

$link = 'index2.php?option=com_acctexp&task=showClosed';
HTML_AcctExp::quickiconButton( $link, 'aec_symbol_closed.png', 'Closed' );

$link = 'index2.php?option=com_acctexp&task=showManual';
HTML_AcctExp::quickiconButton( $link, 'aec_symbol_manual.png', 'Manual' );

$link = 'index2.php?option=com_acctexp&task=showSettings';
HTML_AcctExp::quickiconButton( $link, 'aec_symbol_settings.png', 'Settings' );

$link = 'index2.php?option=com_acctexp&task=editCSS';
HTML_AcctExp::quickiconButton( $link, 'aec_symbol_css.png', 'Edit CSS' );

$link = 'index2.php?option=com_acctexp&task=hacks';
HTML_AcctExp::quickiconButton( $link, 'aec_symbol_hacks.png', 'Hacks' );
?>
This should be in the language file! :)

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Tue Oct 10, 2006 1:09 pm
by skOre
Indeed, we're still not 100% internationalized... But we will be for RC2 :)

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Tue Nov 14, 2006 5:06 pm
by skOre
New Version of the AEC released - 0.10.1:

Read the original thread!

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Wed Nov 15, 2006 2:26 am
by digitalwhispers
skOre wrote: New Version of the AEC released - 0.10.1:

[Url=http://forum.joomla.org/index.php/topic,101775.0.html]Read the original thread[/ur]!
I have installed this component, have 2 plans set up, 1 paypal, 1 authorize.net and get the following errors when I click register:

Notice: Undefined property: intropage in /home/futuravi/public_html/components/com_acctexp/acctexp.php on line 721

Notice: Undefined variable: plan_info in /home/futuravi/public_html/components/com_acctexp/acctexp.php on line 944

Notice: Undefined variable: plan_info in /home/futuravi/public_html/components/com_acctexp/acctexp.php on line 945

Notice: Undefined variable: plan_info in /home/futuravi/public_html/components/com_acctexp/acctexp.php on line 946

Notice: Undefined variable: plan_info in /home/futuravi/public_html/components/com_acctexp/acctexp.php on line 944

Notice: Undefined variable: plan_info in /home/futuravi/public_html/components/com_acctexp/acctexp.php on line 945

Notice: Undefined variable: plan_info in /home/futuravi/public_html/components/com_acctexp/acctexp.php on line 946

Also, I go ahead and go through reg despite errors, post the transactiion to Authorize.net, and the script times out when getting response from gateway, but says transaction approved. The user is there, but in the pending list.


PLEASE HELP!!!!

I am using Joomla! 1.0.11 Stable [ Sunbow [eCommerce Edition]  and CB 1.0.1

Thanks.

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Wed Nov 15, 2006 3:02 am
by helder
digitalwhispers wrote: I have installed this component, have 2 plans set up, 1 paypal, 1 authorize.net and get the following errors when I click register:

Notice: Undefined property: intropage in /home/futuravi/public_html/components/com_acctexp/acctexp.php on line 721

(truncated)

Notice: Undefined variable: plan_info in /home/futuravi/public_html/components/com_acctexp/acctexp.php on line 946

Also, I go ahead and go through reg despite errors, post the transactiion to Authorize.net, and the script times out when getting response from gateway, but says transaction approved. The user is there, but in the pending list.
You are receiving "Notices" from php. Although we should make the point to declare all variables, the default behaviour for php configuration is to not show Notices, as those don't mean errors.

About the Authorize transaction, are you running on test mode or real mode? Could you check in the Authorize side if the transaction was really commited? And finally, could you make another test so we have a clean case of the process (without timeouts) and compare the results?

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Wed Nov 15, 2006 3:33 am
by digitalwhispers
helder wrote:
digitalwhispers wrote: I have installed this component, have 2 plans set up, 1 paypal, 1 authorize.net and get the following errors when I click register:

Notice: Undefined property: intropage in /home/futuravi/public_html/components/com_acctexp/acctexp.php on line 721

(truncated)

Notice: Undefined variable: plan_info in /home/futuravi/public_html/components/com_acctexp/acctexp.php on line 946

Also, I go ahead and go through reg despite errors, post the transactiion to Authorize.net, and the script times out when getting response from gateway, but says transaction approved. The user is there, but in the pending list.
You are receiving "Notices" from php. Although we should make the point to declare all variables, the default behaviour for php configuration is to not show Notices, as those don't mean errors.

About the Authorize transaction, are you running on test mode or real mode? Could you check in the Authorize side if the transaction was really commited? And finally, could you make another test so we have a clean case of the process (without timeouts) and compare the results?

Thanks for the reply,

So the Notices I am having are not saying there is a problem?

I tried again in NON-test mode, and got the same error, which takes about 15-20 seconds to display:

An error occurred while trying to report this transaction to the Merchant. An e-mail has been sent to the merchant informing them of the error.

And the email says:

Your script timed out while we were trying to post transaction results to
it.
   Transaction ID: 0
Transaction Result: This transaction has been approved.


So it appears as though the transaction occurs, but that it is having troble posting the response back from Authorize.net. The user shows up in the "Pending", but requires manual activation.

The url is www.futuravideo.net

Any ideas?

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Thu Nov 16, 2006 4:06 am
by helder
digitalwhispers wrote: So the Notices I am having are not saying there is a problem?
No, but we alll want clean code, right? I could not set the php.ini of my hosting system to show up notices, and my local system is broken, so I couldn't reproduce this to test what I've change. But with the lines reported by you, I think I figured out what to do.

Please use the file attached instead of the original one (make a backup of it first), and report here if you still see some Notice.
digitalwhispers wrote: I tried again in NON-test mode, and got the same error, which takes about 15-20 seconds to display:
An error occurred while trying to report this transaction to the Merchant. An e-mail has been sent to the merchant informing them of the error.
And the email says:
Your script timed out while we were trying to post transaction results to
it.
  Transaction ID: 0
Transaction Result: This transaction has been approved.
So it appears as though the transaction occurs, but that it is having troble posting the response back from Authorize.net. The user shows up in the "Pending", but requires manual activation.
The url is www.futuravideo.net
Any ideas?
I'll investigate this.

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Thu Dec 28, 2006 4:54 am
by cgeers
Any progress on a ccbill integration... I'm desperate for a nice, clean, working system and CCBill is my payment processor of choice.

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Wed Jan 10, 2007 11:57 am
by Vickko
skOre wrote: Really? wanna do a translation? :D 8)
:D I DO wanna make a translation ) And do you wanna to include affiliate program in your wonderful script?

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Thu Jan 11, 2007 4:01 pm
by skOre
We have started working on an abstraction layer that will make integrations with affiliate easier. But due to our current work on the latest version, this has been stuck a little. I will note it for the (hopefully less occupied) time after the next release :)

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Sun Jan 21, 2007 11:35 am
by skOre
Most recent version is for public beta! More information here

cheers  :D

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Thu Apr 12, 2007 1:52 pm
by beebogates
AEC Just rocks!!

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Tue May 29, 2007 9:49 am
by eelziere
Hi All,

As the old Joomla forge is not accessible anymore, does anybody know where I could find the NDFidelity component?
Is it in the new forge?

Thanks!

EE.

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Tue May 29, 2007 3:00 pm
by mic
eelziere wrote: Hi All,

As the old Joomla forge is not accessible anymore, does anybody know where I could find the NDFidelity component?
Is it in the new forge?

Thanks!

EE.
Hope you can use this version - 1.03 from 11.2005.
Just found it on my hardisc.

michael

Re: DISCUSSION: Paid Memberships or Subscriptions in Joomla!!

Posted: Sat Jun 02, 2007 8:51 am
by eelziere
Thanks mic, I am going to try it right now!!!