theshadowfan
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Virtue] YouTube Videos Overlap SidebarPerfect! Added that under Theme Options and it automatically adjusted the YouTube video player so it doesn’t overlap with the sidebar. Thanks!!!!
Forum: Networking WordPress
In reply to: 3.1.1 multisite Network Admin errorMy server host provider was awesome enough to go through the code and figure out this problem. For future reference if anyone runs into this issue maybe you should try this:
We had modifed the following code from the file “admin.php” in the path “/wp-admin/network”.
===========
Previous Codeif ( ( $current_blog->domain != $current_site->domain ) || ( $current_blog->path != $current_site->path ) ) {
wp_redirect( network_admin_url() );
exit;===========
Corrected Codeif ( ! is_main_site() ) {
wp_redirect( network_admin_url() );
exit;Forum: Networking WordPress
In reply to: 3.1.1 multisite Network Admin errorIt would have been either 3.0 or 3.1
Forum: Networking WordPress
In reply to: 3.1.1 multisite Network Admin errorI am having this issue on an upgrade.
The error is the same as it was before ‘This webpage has a redirect loop’
Forum: Networking WordPress
In reply to: 3.1.1 multisite Network Admin errorNoticed that having the plugins activated causes the redirect loop message on the website. Still can’t get into the Network Admin though.
Forum: Networking WordPress
In reply to: 3.1.1 multisite Network Admin errorI went through and switched the theme like Ipstenu said and then renamed the plugin and mu-plugin folder to deactivate all the plugins. Still couldn’t access the Network Admin section. I tried switching back to my old theme and renaming the plugin and mu-plugin folder but now the website is not loading and says that error with the loop.
Forum: Networking WordPress
In reply to: 3.1.1 multisite Network Admin errorThe Network Admin page on Chrome says ‘This webpage has a redirect loop’
Forum: Networking WordPress
In reply to: Multi-PostI do not encounter the error if I link posts to its children. I guess I have to do that.
Forum: Networking WordPress
In reply to: Multi-PostI’ve tried the suggested plugin but receive this error when I try to Update a post to send it to another blog.
Fatal error: Call to a member function has_linked_child_on_this_blog() on a non-object in /home/stuffwel/public_html/wp-content/plugins/threewp-broadcast/ThreeWP_Broadcast.php on line 1100
Forum: Networking WordPress
In reply to: Multiple Domain NamesI could not add a new domain as the option Domain Mapping did not appear in the menu.
Forum: Networking WordPress
In reply to: Multiple Domain NamesI was following the steps but I never saw the Tools – Domain Mapping appear that’s required for Step 4.
Forum: Fixing WordPress
In reply to: User Registration doesn’t send out passwordI’ve fixed this problem by actually creating the email address wordpress@stuffwelike.com. I read in other topics that wordpress@yourdomain.com is where the emails come from, so at least with my host that email actually has to be created.
Forum: Fixing WordPress
In reply to: Major Upgrading ErrorsThanks I was able to fix it all!