Support has been upgraded!
The Support Forum is closed. Not to worry! Providing the top quality support you expect and we're known for will continue! We're not ending support, just changing where you submit requests. This will provide you with the best experience possible.
Premium Support
Have you purchased an addon for Connections such as one of our premium templates or extensions with a valid license and you need help?
Please open a Support Ticket in your user account.
Free Support
Are you using the free Connections plugin? Don't worry, you are still very important to us! We are still providing you with the same high quality support that we're known for.
Please open a new support topic in the WordPress support forums for Connections.
- This topic has 9 replies, 3 voices, and was last updated 9 years, 3 months ago by
Matthew.
-
AuthorPosts
-
06/01/2014 at 6:02 am #292669
Daniel Brayfield
ParticipantHi,
I’ve just installed connections and purchased the link add-in. However unfortunately, after creating a directory entry, when I click the link for the name of the entry in the directory, I get a page not found message displayed on the next page that loads. I also get the same if I click options like the index letter in the directory listing. Any ideas what is causing this?
I think I saw an FAQ previously about an IIS setting, but I can no longer find this, and additionally I am using shared hosting, so I don’t have access to IIS settings. Is there anything I can do to make this work correctly?
Thanks
06/02/2014 at 9:28 am #292710Steven Zahm
Keymaster@ Daniel
Can you please share a link to the page having the issue so I can take a look? Thanks!
06/02/2014 at 11:27 am #292741Daniel Brayfield
ParticipantThis reply has been marked as private.06/02/2014 at 2:42 pm #292771Steven Zahm
Keymaster@ Daniel
Ok, looks like the server is IIS 6 … that’s pretty old. If you do not have access the the IIS config, then your host will have to make the change necessary to the rewrite rules in order to remove the
index.php
from the URL (that the website address in the browser address bar).See the last post in this support thread, they are a few links which may help.
http://wordpress.org/support/topic/removing-indexphp-from-my-urls#post-4433162Sorry that’s the best I can do because this is a web host issue. There’s nothing I can do to fix it, sorry.
06/02/2014 at 5:12 pm #292798Daniel Brayfield
ParticipantThanks so much for your quick response. I appreciate the answer even though it didn’t solve my problem as I now know my host needs to update their technology, or I need to find a new host.
Really appreciate your effort, thanks.
06/03/2014 at 2:26 pm #292840Steven Zahm
Keymaster@ Daniel
My apologies that I’m not able to give you a working solution to this problem.
06/23/2014 at 10:03 am #294819Matthew
ParticipantThis Worked for me. Add this to .htaccess file:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{THE_REQUEST} !^POST RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php/$1 [L] </IfModule> # END WordPress
06/23/2014 at 10:52 am #294822Steven Zahm
Keymaster@ Matthew
Thanks for sharing this solution! I’m going to add this to the FAQ/s.
06/23/2014 at 11:12 am #294825Matthew
ParticipantThey must have mod rewrite capabilities installed on their server which does not come natively. It is a third party add-on.
06/23/2014 at 2:19 pm #294843Matthew
ParticipantOkay, so the workaround I had before broke our contact form email. This worked for us:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
-
AuthorPosts
You cannot reply to this support topic. Please open your own support topic.