dwheeler
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Clean Up Optimizer: Optimize Database & WordPress] deleting the pluginThis plugin created the largest table in my database. And this is a news site. This should not be the biggest table.
Forum: Plugins
In reply to: [Autologin Links] Bulk Creation of Autologin Links?Here is what I did.
Create an addition field in the users profile page that allows them to check if they want to be on the mailing list
In your functions file, add an action to personal_options_update which checks to see if that field is on. If it is on, have the function create the autologin link based on the paramaters found inside this plugin. Then in the same function use the mailchimp API to add/update the user to the specific list.
Set your additionalion field mailchimp to AUTOLOGINIf your Mailchimp campaign is based off an RSS feed, create a custom RSS feed that creates links using this url
<a href="' . get_permalink() . '?autologin_code=*|AUTOLOGIN|*">
I am about 90% finished writing this function for myself so I can’t provide full details yet.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Latest Version Not workingI removed jetpack, restarted the http server and the mysql server and I still get the following error
Call to undefined method Jetpack::validate_sync_error_idc_option() in /public_html/wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-admin-page.php on line 42
This is from a clean install
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Update CrashWordpress 4.6.1,
PHP Version 5.5.36Dedicated Server
128GB Ram
40 Processors
6X500gb SSD’s Raid 10I do a full backup of all the plugins and DB before I run any updates and was able to restore a previous version of Jetpack.
It’s not processing power even though we are a busy site.
I give up.
I’ve changed themes, followed in structions, modified folder permissions,changed the settings.
This thing does not work.I’ve changed the theme, but it keeps tellling me User login required, even though that setting is turned off.
Even if I redirect to a thank you page, I still get the same results.
I did all that,
the posts uploads and post correctly in the wp-admin, including the photos.
I still get a blank page.Yes, thanks that works.
A search function would help in the future, With over 10000 members it can take a few tries to find the correct user.
I have it showing 100 users per page. So I jump to page 50, then narrow it down from there.I have a non-technical staff that handles subscriber issues. They are having trouble adjusting that method.
Thanks.
Same issue with me.
I”m running a standalone server with 40 processors 128GB ram and 6 SSDs Raid10.I really don’t like the new upgrade.
I also had the PHP error others were getting but it went away.
There is a way to do this using one subscription plan for the subsites.
It involves manually editing your pages and testing for active subscriptions yourself.All the subscription forms and links you will need to create yourself. they must all point back to the main site.
All purchases, users must be in the main site profile.
you need to be familiar with PHP and Mysql and understand the WP templates
Here is how I did it.
Instead of using restriction shortcodes, I created a custom field called premium_content.
In Single.php , test for premium content. If the user is not logged in, show the excerpt then the login form.You can create a functions in the functions file to handle most of this.
If the user is logged in, call a function that executes a mysql statement that searches the subscriptions table. SQl Statement will look something like this.
SELECT * FROM wp_users INNER JOIN wp_pms_member_subscriptions ON wp_users.ID = wp_pms_member_subscriptions.user_id WHERE 1 AND user_id = '$userid'
if done correctly it will return all of the information about that users subscriptions.
From their you can show them all the content, if a paid user, or show them LINKS back to the main site. You can try creating a form for the instant purchase, or to resubscribe, but it easier to link the user back to the main site.
Remember Everything has to point back to the main site.
Don’t modify the plugin otherwise the next update will wipe out all your work.Forum: Plugins
In reply to: [Import External Images] "Import Images Now" and nothing happensAnother option you can try is to create a php.ini file with increase memory and timeout limits.
Take your server php.ini file save it into wp-admin, then make any memory or time out changes. The ini setting should only effect what happens in the wp-admin area.
My WordPress has 90k posts with 3 or for images per post and 120+ posts added each day.If you getting No Images imported, that is a different issue. What ever import engine you are using should import the images automatically. I use wpallimport. It takes some configuration but once it is working it is flawless.
Forum: Fixing WordPress
In reply to: Edit Image not WorkingI had the same problem, it wasn’t the GD extension but a blank line in the functions.php file in the theme folder.
I am on PHP 5.5.32 and It doesn’t work.
That is not the case.
I have Aggreator running.
When I try to active full text feeds it tells meThe WP RSS Aggregator – Full Text RSS add-on requires the WP RSS Aggregator plugin to be installed and activated, at version 2.9.4 or higher.
But I have version 4.81 running.