docnzok
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Cannot Login to root site after 3.1 upgradeIf anyone would like to try to login to my site, I have no problem with that…just let me know via a post.
Forum: Networking WordPress
In reply to: Cannot Login to root site after 3.1 upgradeJust an update, I have tried all the suggestions that you have posted and I appreciate all the help, but I still have the issue.
Since my last post, I have deactivated all plugins (Except the ones that I cannot get to in the base domain) dashboard that are network activated)
But, still when I try to administer the base url of my wordpress install, it just keeps giving me the login page.
I would appreciate any more help you can give…
Thanks
Forum: Networking WordPress
In reply to: Cannot Login to root site after 3.1 upgradeNo, I type that into the browser and get the login box, type in the user and pass then get the login page again with the following URL.
http://mysite.com/wp-login.php?redirect_to=http%3A%2F%2Fmysite.com%2Fwp-admin%2F&reauth=1
and it just keeps taking me back to this page.
And Andrea, I assume it’s stripping because in wp-config, I have
define(‘WP_DEBUG’, false);
@define(‘ADMIN_COOKIE_PATH’, ‘/’);
define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, true );
$base = ‘/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘mysite.com’ );
define( ‘PATH_CURRENT_SITE’, ‘/’ );
define( ‘SITE_ID_CURRENT_SITE’, 1 );
define( ‘BLOG_ID_CURRENT_SITE’, 1 );The site I cannot access is site 1. The site that works fine is site 5 if any of that helps
Forum: Networking WordPress
In reply to: Cannot Login to root site after 3.1 upgradeUpdate on this issue…
http://www.mysite.com/ -public site works fine
http://www.mysite.com/wp-admin – STUCK IN LOGIN LOOP:
[http://mysite.com/wp-login.php?redirect_to=http%3A%2F%2Fmysite.com%2Fwp-admin%2F&reauth=1]http://sub.mysite.com -public site works fine
http://sub.mysite.com/wp-admin – logs in just fineTroubleshooting Steps:
1. Clear cookies and cache
2. Deactivate ALL plugins (Some are network activated and I cannot get to them since they are under the mysite.com/wp-admin dashboard.)
3. Install and try some conical redirect plugins (now deactivated)Don’t know what to do next
I cannot access the root website of this network installation. It would really help if I could…you know for administrative reasons….
HELP !
Forum: Networking WordPress
In reply to: Cannot Login to root site after 3.1 upgradeI still cannot login to my root site?
Anyone have any ideas?
Forum: Networking WordPress
In reply to: Cannot Login to root site after 3.1 upgradeYes Windows Server 2008
Not using IIS
Using Wamp (Windows, Apache, mysql, php)
Thanks
Forum: Networking WordPress
In reply to: User RegistrationAndrea, thanks a lot, I see you all around the WordPress community. BUT..
So I created a new page template in my theme directory called wp-signup.php and copied the content of the base install wp-signup.php.
Its the redirect that I am missing in the code.
My main site is http://www.docnzok.com and teh siteI am working on is movies.docnzok.com
As usual, your help is always appreciated.
Mark
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Additional SettingsI figured it out!
on_sent_ok: "location.replace('http://the.first.part' + $('#the_second_part').val());"Works Great!
What was your fix
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Store form fields in DB?Just as an FYI, I am using the Contact Form 7 to Database Extension works like a charm
I appreciate your fast response.
I was able to do exactly what you said and it worked flawlessly. Now I can collect data from the post, go to a new contact page, pull in data from the GET and after the user fills out the rest of the form, input that data into the database for further uses and queries.
Excellent.
Happy Holidays.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] form “sends” but not sentSame problem here. Green box after submit but no email
Great plugin..
Is there a way to pass two variables to the contact page?
I am already using..
`<?php global $post;
echo ‘<a href=”http://movies.docnzok.com/guestreview?context=’.urlencode(get_post_meta($post->ID, ‘IMDB’, true)) . ‘”>Create a GUEST REVIEW for ‘ . urlencode(get_the_title($post->ID)) . ‘</a>’;?></div>`Is there a way to send
blah/guestreview?context=SOMETHING&title=SOMETHINGELSEand have dynamic pick up both variables
Thanks for the plugin, I like it….
Forum: Plugins
In reply to: Widget with QueryOccasionally, when you are really stuck, you start over again from square one and when you solve the problem, you feel really, really good.
Here’s the solution:
<?php $querystr = “
SELECT * FROM $wpdb->posts as wpost
INNER JOIN $wpdb->postmeta
ON (wpost.ID = $wpdb->postmeta.post_id)
AND $wpdb->postmeta.meta_key = ‘CustomField’
ORDER BY $wpdb->postmeta.meta_value DESC
LIMIT 5
“;
$pageposts = $wpdb->get_results($querystr, OBJECT); ?>[SOLVED]
Add actions in functions.php is the way to roll