latest stable versions: v150827 (changelog)

Old Forums (READ-ONLY): The community now lives at WP Sharks™. If you have an s2Member® Pro question, please use our new Support System.

Home Forums Eduan

Eduan

Moderator

My Latest Replies (From Various Topics)

Viewing 25 replies - 1,901 through 1,925 (of 3,367 total)
Author Replies
Author Replies
Posted: Friday Oct 5th, 2012 at 12:07 pm #27584
Eduan
Username: Eduan
Moderator

Hello LG,

Could you please post the date that you were expecting, and the date that you got? Thanks. :)

– Eduan

Posted: Friday Oct 5th, 2012 at 10:27 am #27578
Eduan
Username: Eduan
Moderator

Hello Paul,

Could you please take a screenshot of your restriction options? And give us a couple of URLs of the pages you want to protect? Thanks. :)

Posted: Friday Oct 5th, 2012 at 10:22 am #27577
Eduan
Username: Eduan
Moderator

Hello Mark,

Well for those requirements you would be required to have s2Member pro and PayPal Pro, because you want to use something that pro-forms offer. Just remember that to use pro-forms you also need to have an SSL certificate and using it, in your website.

Hope this helps. :)

Posted: Friday Oct 5th, 2012 at 10:19 am #27576
Eduan
Username: Eduan
Moderator

Hmm… I’m not sure what the result would be. I’ll check with Jason and see what he has to say about this. :)

Posted: Thursday Oct 4th, 2012 at 8:28 pm #27514
Eduan
Username: Eduan
Moderator

Glad I was able to help. :)

Posted: Thursday Oct 4th, 2012 at 7:01 pm #27504
Eduan
Username: Eduan
Moderator

Hello Pirco,

Currently the only way to do this would be to use the s2Member downloads folder, here’s a video explaining download protections: Video » s2Member® File Downloads (Complete Series)

So you might be able to upload everything to the s2Member folder, but put an .htaccess that redirects to it, so that it thinks it is it’s own folder, that’s my idea.

Hope this helps. :)

Posted: Thursday Oct 4th, 2012 at 6:57 pm #27502
Eduan
Username: Eduan
Moderator

I added a reply to your other post Jon. :)

Posted: Thursday Oct 4th, 2012 at 6:56 pm #27501
Eduan
Username: Eduan
Moderator

Well, if you want to check whether the user is logged in or not you would use:

[s2If !is_user_logged_in()]
    Some public content. They're NOT logged in.
        A leading !exclamation means false.
[/s2If]

The PHP version would be:

<?php if(is_user_logged_in()){ ?>
    Content for anyone that is logged in, regardless of their Membership Level.
<?php } else { ?>
    Some public content.
<?php } ?>

Hope this helps. :)

Posted: Thursday Oct 4th, 2012 at 6:51 pm #27500
Eduan
Username: Eduan
Moderator

Well I can’t figure out right away what the problem is.

I think it may be that all your custom select fields have the same name:

<input type="hidden" name="on2" value="Size">Size<select name="os1"> 
<option value="Small">Small</option>
<option value="Medium">Medium</option>
<option value="Large">Large</option>
<option value="XLarge">X-Large</option>
<option value="XXLarge">XX-Large</option>
</select>
<input type="hidden" name="on3" value="Size">Size<select name="os1"> 
<option value="Mens">Mens</option>
<option value="Womens">Womens</option>
</select>

So instead do it like:

<input type="hidden" name="on2" value="Size">Size<select name="os2"> 
<option value="Small">Small</option>
<option value="Medium">Medium</option>
<option value="Large">Large</option>
<option value="XLarge">X-Large</option>
<option value="XXLarge">XX-Large</option>
</select>
<input type="hidden" name="on3" value="Size">Size<select name="os3"> 
<option value="Mens">Mens</option>
<option value="Womens">Womens</option>
</select>

– Eduan

Posted: Thursday Oct 4th, 2012 at 5:47 pm #27483
Eduan
Username: Eduan
Moderator

Hello Mike,

Do you still have this problem if you use the default WordPress theme? (TwentyEleven.)

Posted: Thursday Oct 4th, 2012 at 5:44 pm #27480
Eduan
Username: Eduan
Moderator

Hello Jon,

So basically do you want to show a different content (or none at all) depending if the user is logged in or not, correct?

In that case, you might be interested in using s2Member conditionals: Knowledge Base » s2Member® Conditionals

Hope this helps. :)

Posted: Thursday Oct 4th, 2012 at 3:25 pm #27471
Eduan
Username: Eduan
Moderator

Hello there,

Could you please post the full URL that you get when accessing the rest of the level 0 pages/posts? This will allow us to see what the problem might be.

– Eduan

Posted: Thursday Oct 4th, 2012 at 3:23 pm #27470
Eduan
Username: Eduan
Moderator

Hello Novo,

You mean if the user credentials can be automatically sent to the user?

– Eduan

Posted: Thursday Oct 4th, 2012 at 11:03 am #27450
Eduan
Username: Eduan
Moderator

Thanks for this solution Shawn! :)

Posted: Thursday Oct 4th, 2012 at 11:01 am #27449
Eduan
Username: Eduan
Moderator

I checked, and from what I can tell, an ideal .htaccess is:

# BEGIN s2Member GZIP exclusions
<IfModule mod_rewrite.c>
	RewriteEngine On
	RewriteBase /
	RewriteCond %{QUERY_STRING} (^|\?|&)s2member_file_download\=.+
	RewriteRule .* - [E=no-gzip:1]
</IfModule>
# END s2Member GZIP exclusions

So what happens if you change that .htaccess, from:

# BEGIN s2Member GZIP exclusions

RewriteEngine On
# RewriteBase sandbox_nzlee_com
RewriteCond %{QUERY_STRING} (^|\?|&)s2member_file_download\=.+
RewriteRule .* – [E=no-gzip:1]

# END s2Member GZIP exclusions

to:

# BEGIN s2Member GZIP exclusions
<IfModule mod_rewrite.c>
	RewriteEngine On
	RewriteBase /
	RewriteCond %{QUERY_STRING} (^|\?|&)s2member_file_download\=.+
	RewriteRule .* – [E=no-gzip:1]
</IfModule>
# END s2Member GZIP exclusions

This is from your older post BTW, I checked that .htaccess file.

Tell me how it goes if you change that. :)

Posted: Thursday Oct 4th, 2012 at 9:07 am #27442
Eduan
Username: Eduan
Moderator

Hello Michael, Melissa,

I believe you can achieve this using the User Role Editor plugin, simply edit the s2Member level roles so that they have what you want, be aware that s2Member might behave strangely though.

Hope this helps. :)

Posted: Thursday Oct 4th, 2012 at 8:57 am #27438
Eduan
Username: Eduan
Moderator

If all you really want is to receive payments through PayPal and give access for it then not really.

What exactly do you want to achieve so that I can tell you if you need the pro versions or not?

– Eduan

Posted: Thursday Oct 4th, 2012 at 8:55 am #27437
Eduan
Username: Eduan
Moderator

@Chris,
You can if you want, really all I need is that you paste these logs here after you sensor out the private information, so that I see what s2Member has to say about the situation.

– Eduan


Hello Brad,

That is expected behavior, this is from Dashboard -› s2Member® -› PayPal® Options -› Automatic EOT Behavior:

*Some Hairy Details* There might be times whenever you notice that a Member’s Subscription has been cancelled through PayPal®… but, s2Member continues allowing the User access to your site as a paid Member. Please don’t be confused by this… in 99.9% of these cases, the reason for this is legitimate. s2Member will only remove the User’s Membership privileges when an EOT ( End Of Term ) is processed, a refund occurs, a chargeback occurs, or when a cancellation occurs – which would later result in a delayed Auto-EOT by s2Member.

s2Member will not process an EOT until the User has completely used up the time they paid for. In other words, if a User signs up for a monthly Subscription on Jan 1st, and then cancels their Subscription on Jan 15th; technically, they should still be allowed to access the site for another 15 days, and then on Feb 1st, the time they paid for has completely elapsed. At that time, s2Member will remove their Membership privileges; by either demoting them to a Free Subscriber, or deleting their account from the system ( based on your configuration ). s2Member also calculates one extra day ( 24 hours ) into its equation, just to make sure access is not removed sooner than a Customer might expect.

Hope this helps. :)

Posted: Thursday Oct 4th, 2012 at 8:46 am #27433
Eduan
Username: Eduan
Moderator

Hello Noel,

What is the actual URL of your website? And what are the contents of the .htaccess this time? With s2Member installed of course.

– Eduan

Posted: Thursday Oct 4th, 2012 at 8:43 am #27431
Eduan
Username: Eduan
Moderator

Thanks for the update Bossens. ;)

Also, glad you were able to solve the problem :)

Posted: Thursday Oct 4th, 2012 at 8:40 am #27429
Eduan
Username: Eduan
Moderator

Hello Rick,

This directory is not a WordPress thing, this directory has something to do with your server host, I recommend you contact them and ask them to give you read&write access for it, and also to WordPress.

– Eduan

Posted: Wednesday Oct 3rd, 2012 at 4:11 pm #27361
Eduan
Username: Eduan
Moderator

Just look for emails, names, and basically anything that might reveal the user’s personality.

– Eduan

Posted: Wednesday Oct 3rd, 2012 at 2:18 pm #27354
Eduan
Username: Eduan
Moderator

Could you please paste the logs here? All three are fine. :)

Posted: Wednesday Oct 3rd, 2012 at 1:13 pm #27349
Eduan
Username: Eduan
Moderator

Hello Neil,

I don’t have any experience with that plugin, but for your information, it is already discontinued, so I suggest you look into another plugin. Check http://www.s2member.com/primothemes/ for more info on this decision.

– Eduan

Posted: Wednesday Oct 3rd, 2012 at 1:11 pm #27348
Eduan
Username: Eduan
Moderator

Hello Mark,

s2Member integrates with PayPal for you, check under Dashboard -› s2Member® -› PayPal® Options -› Account Details to configure your PayPal account. Check this video: Video » s2Member (PayPal® Options/Buttons)

Hope this helps. :)

Viewing 25 replies - 1,901 through 1,925 (of 3,367 total)

Old Forums (READ-ONLY): The community now lives at WP Sharks™. If you have an s2Member® Pro question, please use our new Support System.

Contacting s2Member: Please use our Support Center for bug reports, pre-sale questions & technical assistance.