CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums

ASP.NET Web Hosting – 3 Months Free!
Free 3 Months



Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.dotnetnuke.custom_modules Tags:
Item Type: NewsGroup Date Entered: 4/15/2005 10:21:12 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 20 Views: 61 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
21 Items, 2 Pages 1 2 |< << Go >> >|
ErikVB
Asp.Net User
new PayPal donation module4/15/2005 10:21:12 PM

0/0

Hi All,

I created a PayPal donation module, settings are: button image, account name, description, request comment, currency and extra module info. Localized for Dutch and German. Its available for download for free, including source, here: http://www.apollo-software.nl/Default.aspx?tabid=69 (feel free to donate if you like it Wink [;)])

Beer [B]cheers,

erik


Erik van Ballegoij, The Netherlands














Nocturnal
Asp.Net User
Re: new PayPal donation module4/15/2005 10:39:19 PM

0/0

Bedankt Erik! Do you tie donations to members so you can see a report who donated how much? I can't install right now to try :)

SquadEngine for game squad and clan hosting
GravityPoint for all other group portal hosting
TungstenTech: DNN Site
ErikVB
Asp.Net User
Re: new PayPal donation module4/15/2005 10:47:15 PM

0/0

ummm, nope, this is just a simple button generation module ;)

but that would indeed be a nice enhancement ... i'm a bit busy with other modules now though, so maybe in the future ...

Beer [B]cheers,

erik


Erik van Ballegoij, The Netherlands














PJNAGY
Asp.Net User
Re: new PayPal donation module4/16/2005 5:22:47 AM

0/0

Erik,

Nice job, I got it up and running, no problem.   One issue though, the images for the donate buttons are not showing. 

Thanks, Pete


Peter Nagy
ErikVB
Asp.Net User
Re: new PayPal donation module4/16/2005 7:42:50 AM

0/0

Hi Pete,

Are you running dnn in a virtual directory, or in the root of your web. I just did a test install, and the images show up fine... i didnt test it in a virtual dir though, its possible that i made a mistake with the calculation of the image path.

Could you paste the path that's calculated (view source of the page, look for "PayPalDonations/images/button0" and check the complete path) and the path it should be.

cheers,

erik

 


Erik van Ballegoij, The Netherlands














PJNAGY
Asp.Net User
Re: new PayPal donation module4/16/2005 5:24:32 PM

0/0

Hello Erik,

I am running on a virtual directory, the path that is calculated is

_http://portal.XXXXXX.us/dnn3_dev/dnn3_dev/DesktopModules/PayPalDonations/

There's an extra dnn3_dev thrown in, so the correct path should be

_http://portal.XXXXXX.us/dnn3_dev/DesktopModules/PayPalDonations/

Thanks,

peter


Peter Nagy
PJNAGY
Asp.Net User
Re: new PayPal donation module4/17/2005 3:45:19 AM

0/0

Hello Erik,

I went on my localhost, which is set to the root and I still have the same error.

http://localhost/DotNetNuke/DotNetNuke/DesktopModules/PayPalDonations/

As you can see, DotNetNuke is repeated. Am I doing something wrong?

Thanks for your time,


Peter Nagy
Nocturnal
Asp.Net User
Re: new PayPal donation module4/17/2005 7:28:00 AM

0/0

 PJNAGY wrote:

Hello Erik,

I went on my localhost, which is set to the root and I still have the same error.

http://localhost/DotNetNuke/DotNetNuke/DesktopModules/PayPalDonations/

As you can see, DotNetNuke is repeated. Am I doing something wrong?

Thanks for your time,



What version of DNN are you running? This used to be a problem with  .8 I believe.

SquadEngine for game squad and clan hosting
GravityPoint for all other group portal hosting
TungstenTech: DNN Site
PJNAGY
Asp.Net User
Re: new PayPal donation module4/17/2005 7:49:11 AM

0/0

Hello nocturnal,

I'm using DNN 3.0.12 for both.

Thanks


Peter Nagy
ErikVB
Asp.Net User
Re: new PayPal donation module4/17/2005 10:39:27 AM

0/0

Pete,

i changed the calculation of the button source from

resolveURL("~" + Me.TemplateSourceDirectory + "/" + Localization.GetString("button0" + ".src", LocalResourceFile))

to

(Me.TemplateSourceDirectory + "/" + Localization.GetString("button0" + ".src", LocalResourceFile))

Maybe this solves your problem with the replicated directory

Other than that, there is an error in the en-US (default) localization file, where the locale is inadvertedly left out of the name of the button source, i fixed that small omission as well. You can download the new version at www.apollo-software.nl/?tabname=modules

Coffee [C]cheers,

erik


Erik van Ballegoij, The Netherlands














Eppy
Asp.Net User
Re: new PayPal donation module4/18/2005 12:46:19 AM

0/0

I've tried your latest version and the button does not show. The code from view source is here:
 
<DIV align="center">
 <p><a id="dnn_ctr474_PayPalDonations_hlDonate" title="Race Central Hosting" href="https://www.paypal.com/xclick/business=randy.epstein%40alltel.net&amp;item_name=Race+Central+Hosting&amp;no_shipping=1&amp;no_note=1&amp;tax=0&amp;Currency_code=USD" target="_blank" style="border-width:0px;"><img title="Race Central Hosting" src="/DesktopModules/PayPalDonations/" alt="" border="0" /></a></p>
 <p>
  <span id="dnn_ctr474_PayPalDonations_lblModuleInfo" class="normal"></span></p>
</DIV>
 
This is on a test site at a hosting company. DNN is installed in the root of this site. If you'd like to see it go to 209.200.87.77
PJNAGY
Asp.Net User
Re: new PayPal donation module4/18/2005 6:59:04 AM

0/0

Hello Erik,

I downloaded the newest version and unfortunatly it still has exactly the same problem, both on the server as well as on localhost.

On localhost http://localhost/DotNetNuke/DotNetNuke/DesktopModules/PayPalDonations/

should be http://localhost/DotNetNuke/DesktopModules/PayPalDonations/

as you can see there's an extra DotNetNuke.

Thanks


Peter Nagy
ErikVB
Asp.Net User
Re: new PayPal donation module4/18/2005 8:19:04 AM

0/0

ok, it *should* be fixed now .... the problem was caused by a small error in the install procedure, which caused the vs generated resx files to replace the language resource files ....

you can download the new version here: www.apollo-software.nl/?tabname=modules

Coffee [C]cheers,

erik


Erik van Ballegoij, The Netherlands














ErikVB
Asp.Net User
Re: new PayPal donation module4/18/2005 11:14:30 AM

0/0

Peter,

You installed dnn in a virtual directory (ie localhost/dotnetnuke) .... thats a thing i didnt test yet (although its the suggested installation method of dnn, in my opinion its not a very comon one if you are running just one site). I will have to test that further, i probably do something wrong with the calculation of the path.....

cheers,

erik


Erik van Ballegoij, The Netherlands














Eppy
Asp.Net User
Re: new PayPal donation module4/18/2005 12:10:20 PM

0/0

The latest version seems to show the image just fine. I tried it on my test site and on a production site. The production site has DNN installed in a directory off the root while the test stie has it stored installed in the root.
ErikVB
Asp.Net User
Re: new PayPal donation module4/18/2005 6:17:41 PM

0/0

ok great, i hope this solves Peter's problem too ...Smile [:)]

Beer [B]cheers,

erik


Erik van Ballegoij, The Netherlands














PJNAGY
Asp.Net User
Re: new PayPal donation module4/19/2005 6:59:49 AM

0/0

Big Smile [:D]Hello Erik,

Excellent, excellent job, everything works great. I like to also thank you for your contribution to the DNN community, most excellent.

Thanks again for the great job and terrific response. Big Smile [:D]


Peter Nagy
ErikVB
Asp.Net User
Re: new PayPal donation module4/19/2005 11:16:00 AM

0/0

Peter,

thank you for your kind word Smile [:)], very good for my ego.... (i wont stop you from donating something on my site though Wink [;)])

anyway, let me know if you think of any easy to implement features, and i will see what i can do...

Coffee [C]cheers,

erik


Erik van Ballegoij, The Netherlands














Eppy
Asp.Net User
Re: new PayPal donation module4/19/2005 11:38:41 AM

0/0

As far as features go it woul dbe nice to have the amount as a setting so it is passed to paypal.
ErikVB
Asp.Net User
Re: new PayPal donation module4/19/2005 12:52:32 PM

0/0

That is reasonably simple to do ... Would you prefer one fixed amount, or an editable list of proposed amounts, so the user can select one?

cheers,

erik


Erik van Ballegoij, The Netherlands














21 Items, 2 Pages 1 2 |< << Go >> >|


Free Download:

Books:
Practical RDF: Solving Problems with the Resource Description Framework Authors: Shelley Powers, Pages: 331, Published: 2003
PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide Authors: Larry Edward Ullman, Pages: 572, Published: 2003
Blogging: Genius Strategies for Instant Web Content Authors: Biz Stone, Pages: 336, Published: 2002
Adventures in Drupal Authors: unknown, Pages: 0, Published: -1

Web:
Joomla! Extensions Directory - Advanced PayPal Donation Module Advanced PayPal Donation Module, Module module ... NEW Version 2.6: Bugs fixed. Cancel and Return Page. Support available in the forums! ...
Joomla! Extensions Directory - Paypal Donation Module v.1.1.2 This module allows any business receive donations online by paypal system ... You can set donation title version 1.0.1 - set new paypal e-mail text box ...
New PayPal Donation Module - RC1 - Mambo CMS Forum New PayPal Donation Module - RC1 Open Source Applications for Mambo.
Ultimate Paypal Donation Module for Joomla! | Products • Joomla ... Click on Browse..., select the Paypal Donation Module that you saved on your computer. ... Is it possible to let the PayPal site open in a new window? ...
Easy Joomla Paypal / Donations Module | Joomla Modules | / | Joomla Click on the Advanced Joomla 1.5 PayPal Payment / Donation Module item, ... every effort will be made to spend all donations on new developments Smile ...
PayPal Donation Module - Mambo CMS Forum PayPal Donation Module Mambo 4.6.x Extensions. ... You may not post new threads. You may not post replies. You may not post attachments ...
Paypal Donate Module [Archive] - Mambo - A PHP & MySQL Content ... Go to Paypal and generate the code for a Donate button... In Admin, go to Components, Page Modules, View Modules...then click New from top ...
PayPal Donations w/ IPN DotNetNuke Module This update works around this new PayPal limitation by automatically switching to mimic a ... Gumbosoft's PayPal Donations module as well as other Gumbosoft ...
New DotNetNuke Module - PayPal Donations - Only $10 Keep up to date on DotNetNuke and new modules from OnyakTech as well as other DNN tips, tricks and resources.
Easy Paypal Donation Module for Joomla 1.5.x Paypal donation this page are generated from Easy Paypal Donation. click Paypal Donation Module Download to download (md5: cc7bc8535a0a424a252d6fca1a6da11b) ...

Videos:
How to get the peng treasure in Dead Space (PS3 Trophy) (There's always peng!) Please Read. Questions Answered. -I'm New to youtube, so please comment and rate. -Peng treasure is available to get in both the PS3/X360 Versions. ...




Search This Site:










phonegenie free pa - get address info by tel number

compile time

dnn rss

dnn 3.1.n multiple settings controls per module?

editurl or something like that

sub menu control for 2.x?

hello world

query other database

paging issues...

styling solpartmenu

ais store -scaleability,relayability and over performance

re: findcontrol

dynamically generated images in a module

how to add separator to module menus?

error upload new module

ethics--abandoned module

app path for all the pages in dnn

using vs.net 2005 to develope modules?

looking for a dnn 3 compatable module...

looking for document/file manager module

dnn links module question

service request module

dnntoolset.dashboard

dnn forum suggestions please~!

caption for edit link on custom module

new module - xmldb

willowtree software releases multi-sql 1.0

randomhtml for dotnetnuke 1.x

setformfocus

table creation

  Privacy | Contact Us
All Times Are GMT