vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Miscellaneous Hacks - VSa - PayPal Donate (https://vborg.vbsupport.ru/showthread.php?t=236480)

comunidadmh 06-21-2012 02:41 AM

Hello people

I am having a problem.

Install the hack is working, but I get the status bar (as was donated to date) on my website.

Someone could say me what is the code to add it manually in forumhome!

Adam_MSS 06-27-2012 01:32 AM

Quote:

Originally Posted by DarioVinci (Post 2341467)
hello guys after upgrading to vb 4.2 i lost the link to view donations in the quick links popup menu.

Also the Donate link is missed

i reinstalled the template and checked the pluging configuration but everything seems ok.

Any idea?

Same issue here. No link to view/verify donations in the quick links popup menu after updating to 4.2.

meissenation 06-27-2012 10:48 AM

I said it before and I have to say it again - something about this modification is NOT secure. Yet again someone else's paypal address was able to be entered into the settings. I had two donations come in that didn't go to my paypal account and when I logged into my VBulletin Settings someone else's paypal address was in the settings. There's nothing in the VBulletin Control Panel logs for someone logging in and making this change.

Again - there is an active exploit for this modification.

Valter 06-27-2012 12:56 PM

If someone is able to change settings in your AdminCP it has nothing to do with this add-on.

meissenation 06-28-2012 12:40 PM

All I know is they are not doing it through the AdminCP. That means they're somehow doing a SQL Injection attack which changes the value in the database. This is the second time the settings ONLY for the PayPal Donate mod have been exploited. No other changes are being made to the forum.

The fraudulent e-mail address that is being added into my settings is: memogl39@googlemail.com - They have stolen over $100 in donations from my site. :(

The real pain, too, is that PayPal turns a complete cold shoulder to the issue. I've tried submitting multiple fraud cases with them over this and it never gets any response. Trying to submit through the Resolution Center yields an error message so I tried through the Contact Us forms they have and those don't get a confirmation e-mail or any type of response.

When I alerted the users that their donations went to a fraudulent user, they submitted cases to PayPal and they told them there was nothing they could do... Absolutely ridiculous.

tareqbd 07-01-2012 03:30 PM

Is it possible to add a column for IP of the user who donated.
Thank you.

cjwinternet 07-01-2012 09:11 PM

When you use a custom link colour the html is incorrect...

HTML Code:

<span style="color:yellow;"><b>Donate</b><span>
the closing span is incorrect and the colour is used further down the forum.

This is only rendered incorrectly (or pedantically correct) by Internet Exploder. It is ignored by Chrome and Firefox.

Whereabouts would I amend the correct closing span tag please?

dmm2020 07-01-2012 09:24 PM

Quote:

Originally Posted by cjwinternet (Post 2344363)
When you use a custom link colour the html is incorrect...

HTML Code:

<span style="color:yellow;"><b>Donate</b><span>
the closing span is incorrect and the colour is used further down the forum.

This is only rendered incorrectly (or pedantically correct) by Internet Exploder. It is ignored by Chrome and Firefox.

Whereabouts would I amend the correct closing span tag please?

First thing, right off the bat, you do not have a closing tag after donate. It should be </span>.

cjwinternet 07-01-2012 09:34 PM

That's not helpful at all to be honest. I said...

Quote:

When you use a custom link colour the html is incorrect...
Quote:

the closing span is incorrect
Quote:

Whereabouts would I amend the correct closing span tag please?
To be more precise here is the generated html...


<li id="vsapaypal_donlink"><a href="misc.php?do=donate"><span style="color:yellow;"><b>Donate</b><span></a></li>

ForceHSS 07-01-2012 11:50 PM

Quote:

Originally Posted by cjwinternet (Post 2344367)
That's not helpful at all to be honest. I said...







To be more precise here is the generated html...


<li id="vsapaypal_donlink"><a href="misc.php?do=donate"><span style="color:yellow;"><b>Donate</b><span></a></li>

Needs to be
<li id="vsapaypal_donlink"><a href="misc.php?do=donate"><span style="color:yellow;"><b>Donate</b></span></a></li>

cjwinternet 07-02-2012 05:41 AM

I know what it needs to be.

The question is, how do you make vbulletin output the correct code?

Hippy 07-02-2012 05:18 PM

cjwinternet

I'm not home to test this
but open up the .xml file from the archive
then search for
Code:

$vbphrase['vb_navigation_link_vsapaypal_donlink_text'] = '<span style="color:'.$vbulletin->options['vsapaypal_link_color'].';">'.$vbphrase['vb_navigation_link_vsapaypal_donlink_text'].'<span>';
and change it to
Code:

$vbphrase['vb_navigation_link_vsapaypal_donlink_text'] = '<span style="color:'.$vbulletin->options['vsapaypal_link_color'].';">'.$vbphrase['vb_navigation_link_vsapaypal_donlink_text'].'</span>';
all your changing is
Code:

<span>
to
Code:

</span>
re-import the product
hope this helps

cjwinternet 07-02-2012 05:40 PM

Thanks Hippy, that solved it.

Regards

Chris

Akyeame Kwame 07-02-2012 09:30 PM

I just missed a $200 donation due to this error:

Code:

Return to Merchant
Error Message

The link you have used to enter the PayPal system is invalid. Please review the link and try again.

I tried downgrading from 5.0.3 to 5.0 and no joy. Any idea what could be causing this issue?

It occurs only with subscriptions and my payment options are configured with the following options:

Code:

5,5|1,10,10|1,20,20|1,25,25|1,30,30|1,40,40|1,50,50|1,75,75|1,100,100|1,200,200|1,300,300|1,400,400|1,500,500|1,750,750|1,1000,1000|1,2000,2000|1,3000,3000|1,4000,4000|1,5000,5000|1,7500,7500|1,10000,10000|1
]

I'm trying to get the options to charge every month. Formerly I had 5|12 but that only charges $5 per year with the next donation taking place a year from the date. The X|12 method worked in the past but the 5|1 isn't working at all

Valter 07-03-2012 08:11 AM

Can you try if it works with English language?

Maybe some phrases or special characters in the username are breaking links?

ForceHSS 07-03-2012 01:04 PM

Quote:

Originally Posted by Akyeame Kwame (Post 2344608)
I just missed a $200 donation due to this error:

Code:

Return to Merchant
Error Message

The link you have used to enter the PayPal system is invalid. Please review the link and try again.

I tried downgrading from 5.0.3 to 5.0 and no joy. Any idea what could be causing this issue?

It occurs only with subscriptions and my payment options are configured with the following options:

Code:

5,5|1,10,10|1,20,20|1,25,25|1,30,30|1,40,40|1,50,50|1,75,75|1,100,100|1,200,200|1,300,300|1,400,400|1,500,500|1,750,750|1,1000,1000|1,2000,2000|1,3000,3000|1,4000,4000|1,5000,5000|1,7500,7500|1,10000,10000|1
]

I'm trying to get the options to charge every month. Formerly I had 5|12 but that only charges $5 per year with the next donation taking place a year from the date. The X|12 method worked in the past but the 5|1 isn't working at all

if the above is what you have in the donation amount list then you have it wrong this is why you are having problems check the first and last numbers

cjwinternet 07-05-2012 04:54 PM

If someone selects an amount, then goes to paypal, they are recorded as having made a donation, even if they don't finish the transaction at Paypal. It's just a guess really isn't it?

rgreene1971 07-08-2012 12:33 PM

Is their a way to remove the option of the paypal recording what site and user the donation came from? I have many users requesting the donation be anonymous but in the notes field the mod always says donation for site by user

rgreene1971 07-08-2012 08:19 PM

Or maybe the lines I could //comment out to remove it?

ForceHSS 07-08-2012 09:34 PM

Quote:

Originally Posted by rgreene1971 (Post 2346038)
Is their a way to remove the option of the paypal recording what site and user the donation came from? I have many users requesting the donation be anonymous but in the notes field the mod always says donation for site by user

do members see the list or just mods and admins?

bzcomputers 07-08-2012 10:23 PM

Quote:

Originally Posted by cjwinternet (Post 2345320)
If someone selects an amount, then goes to paypal, they are recorded as having made a donation, even if they don't finish the transaction at Paypal. It's just a guess really isn't it?

Donations do not show as complete unless an admin or mod confirms them manually.

bzcomputers 07-08-2012 10:26 PM

Quote:

Originally Posted by rgreene1971 (Post 2346038)
Is their a way to remove the option of the paypal recording what site and user the donation came from? I have many users requesting the donation be anonymous but in the notes field the mod always says donation for site by user

This information only shows in PayPal, so unless someone has access to the user's PayPal account they would not know.

The only thing that shows in vBulletin is the username and amount. You can hide the amount so it does not show to users. You can also just not confirm the donation and nothing about the donation will show to users.

rgreene1971 07-09-2012 01:18 AM

I think maybe I explained it wrong. I do not want the mod telling paypal that the donation is from my website. For example, right now the mod tells paypal it received X amount of money from user X from this website. I do not want that info sent to paypal.

For example I receive the email from paypal saying "Donation to Support xxxxxxxxxxxxxxx (User: xxxxxxxxxxxx)"

I do not want that info sent to paypal

rgreene1971 07-09-2012 12:21 PM

Is their a way to comment out that part of the mod or would I need to seek another paypal mod?

cjwinternet 07-09-2012 01:22 PM

Quote:

Originally Posted by bzcomputers (Post 2346206)
Donations do not show as complete unless an admin or mod confirms them manually.

You're not correct. Do you think I just made it up?

ForceHSS 07-09-2012 01:45 PM

Quote:

Originally Posted by rgreene1971 (Post 2346345)
Is their a way to comment out that part of the mod or would I need to seek another paypal mod?

I would say that would be from PayPal not this mod that shows that. From what I remember there is a way to remove or change that in PayPal

bzcomputers 07-09-2012 07:43 PM

Quote:

Originally Posted by cjwinternet (Post 2345320)
If someone selects an amount, then goes to paypal, they are recorded as having made a donation, even if they don't finish the transaction at Paypal. It's just a guess really isn't it?

Quote:

Originally Posted by bzcomputers (Post 2346206)
Donations do not show as complete unless an admin or mod confirms them manually.

Quote:

Originally Posted by cjwinternet (Post 2346368)
You're not correct. Do you think I just made it up?

This is how my mod has worked from day 1 - others may have a different experience. For me - donations are recorded originally as an "unconfirmed" donation. This "unconfirmed" donation is only visible to the admin. Not until the donation is manually "confirmed" by the admin will it show to any user in the Donations List.

mfbmike 07-09-2012 11:52 PM

Quote:

Originally Posted by DarioVinci (Post 2341467)
hello guys after upgrading to vb 4.2 i lost the link to view donations in the quick links popup menu.

Also the Donate link is missed

i reinstalled the template and checked the pluging configuration but everything seems ok.

Any idea?

any fix for this yet? I have this installed but as you can tell under the navbar there is no donate link http://www.digitalsportscene.net/forum/forum.php

rgreene1971 07-10-2012 01:05 PM

Quote:

Originally Posted by ForceHSS (Post 2346373)
I would say that would be from PayPal not this mod that shows that. From what I remember there is a way to remove or change that in PayPal

A friend found it in the xml file and was able to remove it for me.


Running on 4.2 now with no problems, Thanks everyone

BeRLiNeRo 07-11-2012 01:12 PM

Hello, my company's email for paypal is German. for example domain.de
But when users want to make a donation from this page in Spanish .. directs them in paypal in German language.

Is there any way to manually insert the language in the configuration, for display in the language selected in the page of paypal.com?

for example: <input type='hidden' name='LC' value='ES'>

thanks

ForceHSS 07-11-2012 01:57 PM

Quote:

Originally Posted by rgreene1971 (Post 2346655)
A friend found it in the xml file and was able to remove it for me.


Running on 4.2 now with no problems, Thanks everyone

Post fix so others can use

alexkohler 07-12-2012 09:44 AM

Quote:

Originally Posted by sgbmad (Post 1995112)
I have same configuration. What do you put in Locale field right now?

Quote:

Originally Posted by itiloo (Post 1995134)
right now nothing

Quote:

Originally Posted by sgbmad (Post 1995168)
And all works correctly?

Thanks ;)

Quote:

Originally Posted by itiloo (Post 1995180)
Yes, but in time and date options of vbulletin put d-m-y in place of%d-%m-%y

Is there any way to fix this d-m-y issue without removing the locale-setting from the language?

This affekts "very interesting" date an time-format on my forum which can not be fixed by editing the language settings in vB-options.

Edit:

Installed locales are:

Code:

locale -a
C
de_AT.utf8
de_BE.utf8
de_CH.utf8
de_DE.utf8
de_LI.utf8
de_LU.utf8
en_US.utf8
POSIX

The language uses de_DE.utf8 .

Best regards,
Alex

Relientk 07-16-2012 12:04 AM

Is there a way that I can change the word "Donate" to "Sponsor" when it shows up in the menu on the forum?

bzcomputers 07-16-2012 01:27 AM

Quote:

Originally Posted by Relientk (Post 2348510)
Is there a way that I can change the word "Donate" to "Sponsor" when it shows up in the menu on the forum?

The mod is fully phrased. You can edit all phrases by going to the Phrase Manager.

For this particular one: Search in Phrases for "vb_navigation_link_vsapaypal_donlink_text", then change "Donate" to "Sponsor".

mikeyg 07-18-2012 08:46 PM

Hi, thanks for a great Mod
I've looked through this thread and can see posts on how to get the donation bar on other pages but not the donate button
Currently, it only appears on my forum pages
Is there any way of getting the donate button on the nav bar of my CMS?

Hope someone can help

knightcard 07-23-2012 06:56 AM

Hi, I installed your program works great. But have a question i am using it for my donations
and would like to also use it for my VIP section, since this one take one thing can you load it agian and setup a second one for the VIP.

Thks

Booba 07-24-2012 07:08 AM

I have been using this hack for a little while but paypal seems to be taken offence to the use of the word donate. I have managed to change wording of most phrases however one is left.

In the notification email for merchant instructions i get the following:

Forum donation for member "Bob Smith"

How can I change that phrase to say something like "Forum donation for member xxxx"?

Thanks for the hack.

itzkr0me 07-24-2012 03:02 PM

How can I go about copying the donation list to the page where the users actually goes to submit their donation? Currently they are two different pages. I would like to incorporate that table into the donation page so people can see what others have donated easier than having to click a second link...

I thought to just copy the code from the template vsa_paypal_list, but this just creates a second table that isn't updated when a donation is made. Any ideas or help with this?

Walter Ronny 07-27-2012 07:27 PM

installed this new version for 4.2.0 and then donation phrase in nadvar dissapeared. everything is enabled and still not appear, any input? THanks.

RobDog888 07-30-2012 06:42 AM

Upgraded to vB 4.2 PL2 and the 5.0 version of this mod now is abscent from the main page.
Any idea why its gone? Product/plugins are enabled


All times are GMT. The time now is 08:06 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02395 seconds
  • Memory Usage 1,851KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (9)bbcode_code_printable
  • (2)bbcode_html_printable
  • (23)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete