Haloscope
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WordPress Download Monitor] 3.3.3.5 broke my siteHey Mike,
I pulled the error_log file and found a VERY large number of connection attempts. Unfortunately, I had to pull the plugin because I couldn’t take the chance of having my website down during business hours. However, I’ll give it a whirl this weekend.
Thanks,
HForum: Plugins
In reply to: [Plugin: WordPress Download Monitor] 3.3.3.5 broke my siteHi Mike!
First off, you have a fantastic plugin. There was some kind of problem with one of the 3.3 releases – I had just installed 3.3.5 when I discovered it. In talking to my hosting company they said that I had too many failed connection attempts – which locked my DB on my site – and then all of my sites! I just took care of it with a phone call to tech support, but it was harrowing. It sounds like the latest version started to hammer my server and shut me down.
Thanks,
HForum: Plugins
In reply to: Plugin Upgrade FailedI’m getting the same problem.
Upgrade PluginDownloading update from http://downloads.wordpress.org/plugin/easy-adsenser.2.2.zip Download failed.: name lookup timed out Plugin upgrade FailedI’m running WPv2.7.1. That link to the plugin works, I don’t know why there’s a problem.
– H
Forum: Fixing WordPress
In reply to: Client Login ideas@jburkholder: Are you still looking for someone to build this for you?
-PDR
Forum: Plugins
In reply to: [Plugin: Register Plus] Feature SuggestionsSkullbit:
I’ve upgraded my website to WP v2.7 rc1. In doing so, I noticed an error in the dashboard:Warning: extract() [function.extract]: First argument should be an array in /home/ROOTNAME/public_html/WEBSITENAME/wp-content/plugins/register-plus/dash_widget.php on line 24Line 24 is:
extract( $args, EXTR_SKIP );I found that changing this to:
if (is_array($args)) { extract( $args, EXTR_SKIP ); }Fixed the problem.
Thanks again for your work on a truly fantastic plugin.
– H
Forum: Plugins
In reply to: Paybox paypal subscription plugin – Have you tried it?@talia:
I tried installing EasyPayPal, but I needed something that worked with PayPal’s IPN to create ongoing automatic subscriptions. An older version of EasyPayPal, v3.2 I believe, used the PayPal IPN but some users had problems with it. Without the IPN, the plugin cannot handle automatic payments. Even though it wasn’t integrated with the IPN, EasyPayPal allowed users to sign up, pay through PayPal, and become registered users – without me having to do anything. However, without the IPN, they’d be locked out every X days (where X is your subscription period).I also tried installing WP-Commerce, which some people apparently like, but I found it too incomprehensible.
In the end, I joined the EasyPayPal Plugin forum to discuss the IPN issue with other users. Eventually I was able to develop a version of EasyPayPal for use on my own website. My version allows users to register for free, but doesn’t allow access to additional features without a paid subscription.
It works for now, but I have a LOT of work on it (admin panel stuff, other options, etc) before it would be useful to anyone other than me.
If you’ve got the time and skill, I’d still recommend modifying EasyPayPal to suit your needs.
– H
Forum: Themes and Templates
In reply to: [Plugin: Register Plus] making an all authors pageI have used WP 2.5, 2.5.1, 2.6, and 2.6.1 with RegPlus and the option functions discussed above.
– H
Forum: Themes and Templates
In reply to: [Plugin: Register Plus] making an all authors pageThis is very odd. I’ve used the get_user_option($option_name, $user_id) function with RegisterPlus options in my own website, without fail.
I would suggest, for future use, to make sure you’ve got the option name properly formatted and are actually showing the user’s id.
– H
Forum: Themes and Templates
In reply to: [Plugin: Register Plus] making an all authors pagePsycolor: Make sure you’ve got the option name correct. The field name should be exactly as you named it in the plugin. If you’re not 100% sure, check the source code of your registration page for the name.
– H
Forum: Fixing WordPress
In reply to: Register plus: accessing additional user infoThis thread is exactly what you’re looking for.
Forum: Themes and Templates
In reply to: [Plugin: Register Plus] making an all authors pageThe user options are pretty well documented. They should all be retrievable with “get_user_option($option_name, $user_id)”.
Good luck.
Forum: Plugins
In reply to: [Plugin: Register Plus] User Defined Fields – cannot alter Required optionHey Ben,
From poking around in the MySQL tables, I suspect that all of the Register Plus options-values pairs are kept in a single option (named, “register_plus”). This would make it very easy to uninstall Register Plus – but slightly more difficult to modify a setting manually.
– H
Forum: Plugins
In reply to: [Plugin: Register Plus] Feature SuggestionsSkullbit,
Again, thank you for the fantastic plugin. I especially appreciate you incorporating my feature request.
From looking at the code for your plugin, it looks like all of the variables necessary for Register Plus are kept in a single option. Have you considered keeping them in separate, or more separate, option-value pairs in the options table? Doing so would enable other plugins, themes, etc to check individual Register Plus values instead of reading all the options and parsing it.
Thanks again,
– H
Forum: Fixing WordPress
In reply to: Register Plus errors when copying websiteYou should check the version of PHP your XAMPP install is running. Also, are your MySQL DB’s named exactly the same?
– H
Forum: Plugins
In reply to: WP/AJAX question – How do I access a user’s ID info from outside WP?Thank you! I’ll try that! Do you have any idea how I would go about obtaining current user info from a file that’s outside WP?
Thanks,
– H