jpilantrose
Forum Replies Created
-
Hmm. Well it worked for me. Sorry.
Can you post some of your code? I really can’t do anything more at this point.
An option for Account ID should show up on the dashboard. Have you tired deactivating and reactivating?
These changes should be made the to file emma_email_signup.php or emma_email_signup_php5.php
What kind of error are you getting?
This fix worked for me. Thank you General for posting this.
Forum: Networking WordPress
In reply to: Parent-child relationship in MUIt’s working now. I believe that the Super-Cache plug-in was playing tricks on me. I felt assured that I’d set it up correctly when I forced it to spit out `print “Parent “.get_bloginfo(‘template_directory’);
print “Child “.get_bloginfo(‘stylesheet_directory’);`I also had to enter the network admin and check the stylesheet and template vars to make sure they were set correctly.
After some deleting, re-adding, deleting, reloading, etc., it started working. Probably, again, the caching.
Thanks for your help on this.
Forum: Networking WordPress
In reply to: Parent-child relationship in MUMy htaccess:
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L]Forum: Networking WordPress
In reply to: Parent-child relationship in MUI’m pretty sure I’ve set it up correctly. I’ve tried a few different names for the folders and theme (it’s a self-created parent theme), just to make sure I’m not running into issues there.
Besides the information at the top of style.css and the folder names, no other code should be essential, right?
My bigger concern is that I have a few custom htaccess calls in the folder. Would any of those affect the parent-child themes?
Thanks for your help.
Forum: Themes and Templates
In reply to: "The template files are located in" shows child directoryHi Amanda,
Did you ever find an answer to this?
I’ve fixed this problem with some help from Emma. The new form requires an AccountID also. Here are the changes that I made to the code:
Line 51 add
$accountid = get_option('emma_accountid');Line 57 add
$accountid = $_POST['emma_accountid'];Line 61 add
update_option( ’emma_accountid’, $accountid );Line 74 add
<p><?php _e("Account ID:", 'emma-email-signup' ); ?> <input type="text" name="emma_accountid" value="<?php echo $accountid; ?>" size="20"> </p>line 107 change to
define('POSTURL', 'https://app.e2ma.net/app/view:Join/signupId:' . get_option('emma_signupid') .'/acctId:' . get_option('emma_accountid'));I guess I should mention that I’m using 3.1.
I’m having a similar issue, in that nothing is happening. The form gives the submitted message, but nothing shows on the emma side. Has anyone found a solution to this or has this plugin just become obsolete?
Forum: Networking WordPress
In reply to: Subdomain with one subdirectory install?Good to know. Thanks Andrea.
Forum: Networking WordPress
In reply to: Subdomain with one subdirectory install?I guess I should mention that all of this currently works except for http://stage.othersite.com/folder/ which 404s.
Forum: Networking WordPress
In reply to: Subdomain with one subdirectory install?I’m getting much closer now. I’m still running into an issue but I’m wondering if it has to do with the server instead of my wordpress settings. What I’m trying to do is set up a staging mirror of our multisite built at subdomain addresses on the server. See below:
http://stage.mysite.com <- location of the wordpress install
http://stage.mysite.com/wp-admin/ <- location of the superadmin
http://stage.mysite.com/ <- site #1
http://stage.anothersite.com/ <- site #2
http://stage.othersite.com/folder/ <- site #3Note that site #3 has to appear in a subdirectory at its location. Is this possible, noting the “stage.” subdomain address?
Thanks for all of your help.
Forum: Networking WordPress
In reply to: Domain mapping database connection issueThis ended up being two issues with my hosting service. One: the permissions of directory was preventing the database from being accessed (see: http://rhcelinuxguide.wordpress.com/2008/08/25/mysql-error-1045-28000-access-denied-for-user-rootlocalhost-using-password-yes/ ). Two: my hosting service needed to set up a server alias and restart apache. Once these issues were addressed, the database error disappeared and the site showed up at its designated domain.
The other issue (detailed here: http://wordpress.org/support/topic/domain-mapping-to-another-sites-directory) still persists, now across all mapped domains. Investigating that now. Thanks for your help Andrea!