gesman
Forum Replies Created
-
Forum: Plugins
In reply to: Need redirect plugin that will work with MemberwingI can craft something for you (I think someone already asked this Q before) and embed it within MemberWing-X settings.
Send details via memberwing.com contact form if interested.Gleb,
MemberWing-XForum: Plugins
In reply to: memberwingHi Mariposa,
I am the author of MemberWing.
You may use any FTP program to upload plugin’s directory to your hosting space under plugins directory.
If you have trouble with these concepts – feel free to contact me – and I’ll offer you solution.Gleb
Forum: Plugins
In reply to: how to limit users in role manager to post in just ONE category?I think you may need a plugin crafted that make it happen.
WP does not have this capabilities by default – but with filters it could be possible.Gleb
Forum: Requests and Feedback
In reply to: Studio Press themesThere could be 2 problems:
– your router is misconfgured. See this post. Try another router or another place?
– your hosting service is too restrictive in terms of allocating resources for you. This hosting company works like a charm.Gleb
Forum: Requests and Feedback
In reply to: Plugin request ignoredNo, I have issues with my existing plugin repository and trying to reach someone with no luck…
Gleb
Hi vgaman,
thank you for your comment.
If link already exists – AFLinker leaves it completely untouched and unchanged.
Although I have a plans to introduce an optional extra functionality to add tracking to *all* outgoing links, not only ones that were created by AFLinker. These are plans so far – essentially it depends if enough people will ask for it.Gleb
Hi Jeff,
For Google Analytics you do this:1. Integrate it with Google analytics by checking [x] Enable Google Analytics tracking? in AFLinker admin panel/Global Settings.
2. Once you done that – AFLinker adds small piece of javascript to [A] tags (as per Google standards) to track clicks to outgoing links. Every outgoing link is represented as a separate “page” in your Google analytics stats. That “virtual” page name starts with “/outgoing/” name, followed by the page URL where it was clicked from, followed by the link number of that page.
From there you may track every bit a and piece of statistics that GA allows you.
AFLinker allows you to track not only click on redirects – GA stats page will show you exact page and exact link number on this page that was clicked.
So you may even track where people are clicking more – at the beginning, in the middle or at the bottom of the page – and adjust your marketing and web creation efforts accordingly.
Note: only outgoing links created on page by AFLinker will be tracked. Existing links are untouched.3. Yes, you may use AFLinker as simple redirector or URL shortener as well. For that – you just fill “Source URL” and “Destination URL” and ignore anything else. As simple as that.
Hope this helps.
Gleb
Forum: Plugins
In reply to: Best contact pluginMy favorite is easy contact:
http://wordpress.org/extend/plugins/easy-contact/Very clean, simple with anti-spam features.
Gleb
Forum: Plugins
In reply to: [Plugin: WordPress Membership Site Plugin Memberwing] WTF? Encrypted Source??Hi ravijp,
I am “those scumbags” who developed MemberWing plugin and “had the audacity” to submit it into WP repository encrypted.I will be opening sources and updating plugin tree soon. I am getting in contact with WP repository management on doing it in a least destructive fashion to all current and active users.
Updated thread with more explanations and details about it is here:
http://wordpress.org/support/topic/307457?replies=4Gleb
Hi Mark,
I am author and developer of MemberWing. I am sorry for mishap.
All sources are used to be opened. Then a client asked me to add a piece of useful functionality but insisted on having it protected. So I used Ioncube but I guess overdone it a bit.I’d be happy to open my sources back and resolve this issue to the best of all – there are no problems.
If you could contact me offline (gleb at memberwing.com) to discuss logistics that would great.
Thanks!
Gleb
Forum: Fixing WordPress
In reply to: register_activation_hook JUST WON’T WORKSee my post with sample of working code here:
http://wordpress.org/support/topic/312342?replies=2#post-1226615Gleb
Forum: Plugins
In reply to: register_activation_hook DOES NOT WORKAfter long struggle with it I found why.
1. register_activation_hook() must be called from the main plugin file – the one that has “Plugin Name: …” directive.
2. Your hook function must be in the same file as well. From that function it is ok to call other functions defined in other files.
3. Doing echo “My hook called!”; – does not work from it. So this is not a good way to judge whether it working or not.
4. Your global variables must be explicitly declared as global for them to be accessed from inside of my_activation_hook().
Here’s a tiny plugin code sample with working code to demonstrate all that:<?php /* Plugin Name: A Test Description: A Test */ require_once (dirname(__FILE__) . '/my_other_file.php'); // This code *will not* work. Activation hook function must be defined in the main plugin file. // register_activation_hook (dirname(__FILE__) . '/my_other_file.php', 'my_other_function'); // This code will work. register_activation_hook (__FILE__, 'test_activated'); // This is correct way to declare/access globals. global $some_var; // globals must be declared explicitly. Without this you will not be able to access '$some_var' from within 'test_activated()' function. $some_var = 'hey'; //=========================================================================== function test_activated () { global $some_var; // Now it will be 'hey'. // This function is defined in 'my_other_file.php' my_other_function (); // This will not work, so don't try. If you need logging write something in temporary log file in here via fopen/fwrite. // If you want to quickly test if your activation hook works - put exit() into it. At least you'll see error during activation. echo 'test_activated called!'; } //=========================================================================== ?>Gleb Esman
Check to see if you have __log.php file created inside MemberWing’s installation directory.
This file is created and updated each time your system recieves payment notification (that is if it’s being correctly setup).
If you don’t see __log.php file than it means Paypal’s IPN either never reached script or never were fired out for some reason.
Login to your paypal account and then follow this link:
https://www.paypal.com/us/cgi-bin/webscr?cmd=_display-ipns-historyIt will show you your IPN activity history as well as any status codes that paypal received.
This will help you see if you have any problems or if your Paypal IPN is working correctly.Gleb
Forum: Fixing WordPress
In reply to: paid membershipMemberWing membership plugin supports recurring payment schedules via Paypal.
More details on how to do it memberwing.com/software/wordpress-membership-site-plugin-memberwing/memberwing-user-guide configure MemberWing step by step is here.Gleb
[spam links moderated]
Forum: Plugins
In reply to: Premium content – paid subs ???Memberwing was *designed* to do this job.
It was also specifically designed for SEO (search engine friendliness), so even your membership site with protected content could be indexed and ranked well on search engines.This way new visitors and prospects could find your membership site much quicker than if you’d use membership software that just plain locks out chunk of content from everyone. So now one, including search engines would find anything.
MemberWing allows to have “free teasers” for every piece of protected content – this way Google could index your site and new visitors will be able to get a peek of your content and got interested to pay to see the rest.
Gleb