 | Re: [Solved] Paypal Donation MOD problem |  |
Posted: 04/23/2007 8:33 PM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 12:21 PM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
Yahoo. Yes, it works. That was strange problem but sorted out
Thanks for your help rb2d2 and of course NightRider too  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Paypal Donation MOD problem |  |
Posted: 04/24/2007 12:42 AM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 4:21 AM
Location: St Pete, FL
|

|
|
|
|
 |
Good news. It appears that all is working as it should...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Paypal Donation MOD problem |  |
Posted: 04/24/2007 9:09 PM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 12:21 PM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
We have made VIP area and there is a little problem in it.
When i gave the permission to any category to let READ (REG), VIEW (ALL) than a normal member when tries to enter VIP area so the message comes is
Sorry, but only users granted special access can post topics in this forum.
And when I make it READ (PRIVATE), VIEW (ALL) than the message comes
Sorry, but only users granted special access can read topics in this forum.
Click here to select a group to join. You will need to pay a subscription fee.
So is it possible to make the users to READ (PRIVATE), VIEW (ALL), they should see
Click here to select a group to join. You will need to pay a subscription fee.
Instead of only Sorry, but only users granted special access can post topics in this forum. (which might makes confuse the user as what to do next! ) |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Paypal Donation MOD problem |  |
Posted: 04/25/2007 12:28 AM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 4:21 AM
Location: St Pete, FL
|

|
|
|
|
 |
Yes, you can do that by doing the following:
OPEN
viewforum.php
FIND
| Code:
|
$message = ( !$is_auth['auth_view'] ) ? $lang['Forum_not_exist'] : sprintf($lang['Sorry_auth_read'], $is_auth['auth_read_type']);
//-- mod : Loewen Enterprise - PAYPAL IPN REG / SUBSCRIPTION - GROUP -----------------------------------------------------------
//-- add
$message .= "<br><br>" . sprintf($lang['Click_return_subscribe_lw'], "<a href=lwtopup.$phpEx>", "</a>" );
//-- fin mod : Loewen Enterprise - PAYPAL IPN REG / SUBSCRIPTION - GROUP -----------------------------------------------------------
|
REPLACE WITH
| Code:
|
|
$message = ( !$is_auth['auth_view'] ) ? $lang['Forum_not_exist'] : sprintf($lang['Click_return_subscribe_lw'], "<a href=lwtopup.$phpEx>", "</a>" );
|
OPEN
viewtopic.php
FIND
| Code:
|
$message = ( !$is_auth['auth_view'] ) ? $lang['Topic_post_not_exist'] : sprintf($lang['Sorry_auth_read'], $is_auth['auth_read_type']);
//-- mod : Loewen Enterprise - PAYPAL IPN REG / SUBSCRIPTION - GROUP -----------------------------------------------------------
//-- add
$message .= "<br><br>" . sprintf($lang['Click_return_subscribe_lw'], "<a href=lwtopup.$phpEx>", "</a>" );
//-- fin mod : Loewen Enterprise - PAYPAL IPN REG / SUBSCRIPTION - GROUP -----------------------------------------------------------
|
REPLACE WITH
| Code:
|
|
$message = ( !$is_auth['auth_view'] ) ? $lang['Topic_post_not_exist'] : sprintf($lang['Click_return_subscribe_lw'], "<a href=lwtopup.$phpEx>", "</a>" );
|
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Paypal Donation MOD problem |  |
Posted: 04/25/2007 5:57 AM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 12:21 PM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
I changed the codes as you said and when i sign in through my test id
username - abdulbasit
password - abdulb
So it says
Sorry, but only users granted special access can reply to posts in this forum.
It does not give any link to user where to register as i want.
I can see topic and while replying it says that. So instead of that message i want this message to come
So is it possible to make this
Sorry, but only users granted special access can read topics in this forum.
Click here to select a group to join. You will need to pay a subscription fee. |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Paypal Donation MOD problem |  |
Posted: 04/25/2007 7:39 AM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 12:21 PM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
After this coding my mods were unable to get in and when i went in group admin, permission, there was advance mode, and when i click it to make it looks simple mode but it wasn't coming only after placing your codes. Than i reverse back the codes and delete that group and added a new and added my mods in that group and than it came to normal
So if the thing what i want can be happen will be much better so that members can at least see the stuff but when they click POST REPLY buttons, they will see
Sorry, but only users granted special access can read topics in this forum.
Click here to select a group to join. You will need to pay a subscription fee.
Thanks brother  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Paypal Donation MOD problem |  |
Posted: 04/25/2007 1:45 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 4:21 AM
Location: St Pete, FL
|

|
|
|
|
 |
From what I can tell, it looks like it is working correctly now. This is what I see when I go to the forum:
or
Am I looking in the wrong place???
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Paypal Donation MOD problem |  |
Posted: 04/25/2007 2:14 PM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 12:21 PM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
This is correct when we enter and it straightaway says
But see now Stage Shows / Concerts / Other Videos (category for which I have set a little different permission and now a normal user can logged in and go into the Stage Shows / Concerts / Other Videos category but when he/she will reply or create new topic, they will see only this message
Sorry, but only users granted special access can reply to posts in this forum.
And they should see actually this
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Paypal Donation MOD problem |  |
Posted: 04/25/2007 4:21 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 4:21 AM
Location: St Pete, FL
|

|
|
|
|
 |
Ok, this took a bit of detective work to figure out where this was happening. This is what you need to do:
OPEN
posting.php
FIND
| Code:
|
if ( $userdata['session_logged_in'] )
{
message_die(GENERAL_MESSAGE, sprintf($lang['Sorry_' . $is_auth_type], $is_auth[$is_auth_type . "_type"]));
}
|
REPLACE WITH
| Code:
|
if ( $userdata['session_logged_in'] )
{
$message = sprintf($lang['Sorry_' . $is_auth_type], $is_auth[$is_auth_type . "_type"]) . '<br /><br />' . sprintf($lang['Click_return_subscribe_lw'], "<a href=lwtopup.$phpEx>", "</a>" );
message_die(GENERAL_MESSAGE, $message);
}
|
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Paypal Donation MOD problem |  |
Posted: 04/25/2007 11:31 PM |
|
|
|
|
|
| Citation |
| Posts |
1017 |
| Word Cnt. |
64,643 |
| BDay |
Apr 18 |
| Sign |
Aries |
| Sex |
 |
|
|
|
Joined: Apr 01, 2007
Local time: 12:21 PM
Location: UNITED ARAB EMIRATES
|

|
|
|
|
 |
Yeah it works
But i am v.sad from my members. When they saw it's paid membership in some area, they just went off and don't come
And when it's free, they just come, take the links and go away. All mad Asians. |
|
|
 |
 |
| Back to Top |
|
|
 | Information |  |
|