coachfonz
Forum Replies Created
-
Forum: Plugins
In reply to: [Authors List] Remove specific user/authorThat’s awesome….thanks!
Just paid for membership and posted to the forum under same topic heading of “Changing a Payment Due Date”
That might be helpful and it might be what I need … however … I have no idea what I’m supposed to do with that.
Is there any information or help on that?
Thanks.
Jess,
The example I used about the member, it was a recurring membership that was renewed. In migrating from our old site to the new site, I put the members in to the yearly recurring plan and set an expiration date to match their current date in our old site. They will obviously have to renew since the new site does not have their payment information from the old site.
As my example showeed, a member that was set to expire on Dec. 10, 2014 renewed with a yearly membership on July 31. That created a payment due date of July 31, 2015 when it should have created the next payment due date of December 10, 2015 (at least that’s what I hoped it would have done).
Therefore, I’m just wondering if there is any way to adjust the payment due date. So, for example, I could go in and change his next due date from July 31, 2015 to December 10, 2015.
I also question that possibility because we sometimes gift a member with bonus months. For example, instead of a current due date of August 5, we would change it to November 5 for that member … giving him 3 free months. Again, I don’t see any way of changing the payment due date.
Is that even possible?
I’m not sure that the Set Expiration Dates addon is what I’m looking for. I’m not looking to set a specific expiration date as our plans are all renewing plans and don’t expire.
Just tried it and it looks like it worked. No error message at all.
Thanks!
Forum: Networking WordPress
In reply to: Network Admin Links 404 ErrorWell, that would have saved a lot of time if I had recognized that earlier!
I had an htaccess in both the /hoopsu/ and /wordpress/ folders!
I removed the htaccess from the wordpress and tested both codes above with the htaccess in the /hoopsu/ folder. They both work!
My only question now … does it matter which of the codes you gave me to use?
Forum: Networking WordPress
In reply to: Network Admin Links 404 ErrorNeither worked. I get a 404 error on pages such as https://hoopsu.com/wp-admin/network/ and on pages that end in .php such as https://hoopsu.com/wp-admin/network/sites.php I get the ‘500 internal server error’
As those links above show, the network admin links still don’t include /wordpress/ folder.
And just to be clear the htaccess should be in /hoopsu/wordpress/ correct?
Forum: Networking WordPress
In reply to: Network Admin Links 404 ErrorNot sure exactly what an add-on domain is. HoopsU.com was added to a hosting account which is why the /hoopsu folder was created. WP was installed within the /hoopsu folder.
Forum: Networking WordPress
In reply to: Network Admin Links 404 ErrorHere is what I see at hoopsu.com/wp-admin/network/setup.php.
I get a 500 Internal Server Error:
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator and inform them of the time the error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Apache Server at https://www.hoopsu.com Port 80
If I manually type hoopsu.com/WORDPRESS/wp-admin/network/setup.php I get the original network configuration with what I copied and pasted into wp-config and htaccess.
The actual links within the admin, however, don’t point to hoopsu.com/WORDPRESS/wp-admin… The ‘wordpress’ is left out.
Forum: Networking WordPress
In reply to: Network Admin Links 404 ErrorThanks for the heads-up on using the code tag … missed that.
Here is what I see in wp-admin/network/setup.php
<?php /** * Network Setup administration panel. * * @package WordPress * @subpackage Multisite * @since 3.1.0 */ /** Load WordPress Administration Bootstrap */ require_once( dirname( __FILE__ ) . '/admin.php' ); if ( ! is_multisite() ) wp_die( __( 'Multisite support is not enabled.' ) ); require( ABSPATH . 'wp-admin/network.php' );
Forum: Networking WordPress
In reply to: Network Admin Links 404 ErrorCorrect, the network admin links are pointing to hoopsu.com/wp-admin/network.
htaccess:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^wp-admin$ wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^(wp-(content|admin|includes).*) hoopsu/wordpress/$1 [L] RewriteRule ^(.*\.php)$ hoopsu/wordpress/$1 [L] RewriteRule . index.php [L] </IfModule> # END WordPress
Added to wp-config:
define('WP_ALLOW_MULTISITE', true); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', true); define('DOMAIN_CURRENT_SITE', 'hoopsu.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);
Forum: Plugins
In reply to: [Background Manager] Updated PHP, still detecting old versionThanks much! That fixed it. Some file was causing it to not update, but they were able to do get it right.
Thanks again for responding with the tip!