lata_dev
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Multisite installed on AWS – Permalinks not workingkediacorp, Ipstenu you’re my heroes!!! Thank you 🙂
Forum: Networking WordPress
In reply to: Multisite installed on AWS – Permalinks not workingSince its a multisite installation, there are already some lines in the .htaccess file according to the n/w configuration settings.
Should we add these lines after that or before? The contents are mentioned in the first post of this thread.
Forum: Networking WordPress
In reply to: Permalinks not working on multisite installationYup, Amazon Web Services it is! Found a thread by another user having the same issue. But doesn’t look like they found a solution either.
Forum: Networking WordPress
In reply to: Permalinks not working on multisite installationI guess I need to do that since the site is hosted on AWS, not using a hosting company.
Tried the settings you mentioned on this thread – http://ww.wp.xz.cn/support/topic/multisite-installed-on-aws-permalinks-not-working?replies=15
Couldn’t get the links working. Any other suggestions please?
Thanks.
Forum: Networking WordPress
In reply to: Permalinks not working on multisite installationIpstenu sorry, using subfolder, not subdomain (sorry about the confusion above). Here’s the htaccess file’s content (same as that in the Network Settings)
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L]Forum: Networking WordPress
In reply to: Permalinks not working on multisite installationI am not using BuddyPress, just wordpress multisite for a specific blog structure I want (sub-domains). So not sure if it happens with buddypress installation. But the issue started happening when I entered the custom structure in permalinks (/%postname%/).
It works fine with the default structures.
Forum: Networking WordPress
In reply to: Permalinks not working on multisite installationAnyone found a solution to this? I get a 404 with permalinks when using a custom structure.
Forum: Networking WordPress
In reply to: Multisite installed on AWS – Permalinks not workingHi lumenbeing
Did you get a solution to this? I am porting my site to AWS but am stuck due to this issue. If you found a solution, would be great if you can post it here.
Thanks.
Thanks. In the extension, they are adding all actions as
add_action('wpcf7_before_send_mail', array(&$this, 'saveFormData'));But from what I read in the posts in this forum, they add it with just the function name i.e.
add_action('wpcf7_before_send_mail', 'myFunction');How do these 2 actions differ?