-
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
If any one faces the same issue, the problem is not in the .htaccess file (it’s correct)! The problem is in the apache configuration file, assure that you put
AllowOverride all
in the virtual host directive. -
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
If any one faces the same issue, the problem is not in the .htaccess file (it’s correct)! The problem is in the apache configuration file, assure that you put AllowOverride all in the virtual host directive.
-
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
Any suggestion?
-
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
I’ve already tried to change the location of the https lines in the htaccess file but nothing changed :S the file is in the wordpress directory i.e in the socialnetwork directory in my case.
Thanks
-
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
If I remove the socialnetwork part, all pages are redirected to the homepage!
-
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
The entire content is as follows:
<IfModule mod_rewrite.c>
[Read more]
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteBase /socialnetwork/
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /socialnetwork/index.php… -
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
@henrywright sure, turning a wordpress website into https requires as mentioned in most of the references:
1- adding:
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]to the htaccess file
2- Modifying site and wordpress addresses (in the general settings).Talking about the htaccess file led us to what we…[Read more]
-
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
Yes I gave WordPress its own directory under the site root and Buddypress is working fine! My website is working fine from about a year an a half, the problem is in turning it into HTTPS which is not working :S
-
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
Don’t I need to mention the site folder? like if my website is http://your-site.com/wordpress, I put:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule> -
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
I get this error when trying to open any page except homepage (example the login page):
Not Found
The requested URL /socialnetwork/wp_login/ was not found on this server.In the error log I got for example:
[Wed May 20 00:22:24 2015] [error] [client ............] File does not exist: /var/www/favicon.ico, referer: https://......./socialnetwork/wp_login/
-
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
Like where? What could it be for example?
-
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
Don’t worry… I have the basic .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /socialnetwork/
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /socialnetwork/index.php [L]
</IfModule> -
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @henrywright,
Thanks for replying… Actually I’ve already done this and modified the site URL as mentioned in the guide but got the issue mentioned previously! Have I missed something?
Thanks
-
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @henrywright,
Thanks for replying… Actually I’ve already done this and modified the site URL as mentioned in the guide but got the issue mentioned previously!
Thanks
-
Hope replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @henrywright,
Thanks for replying… Actually I’ve already done this but I got the issue I mentioned previously!
Thanks
-
Hope started the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi dears,
I’m trying to turn my site to https by following the steps mentioned in this URL: https://css-tricks.com/moving-to-https-on-wordpress/ (9. Start forcing HTTPS everywhere) which are the same in many references. But unfortunately it works only on the homepage while all other pages don’t open (cannot open page… error occurs)! Have I…[Read more]
-
Hope replied to the topic [Resolved] Overriding bp_core_validate_user_signup function in the forum How-to & Troubleshooting 9 years, 6 months ago
Thanks a lot guys, it’s working now 🙂 Many thanks…
-
Hope started the topic [Resolved] Overriding bp_core_validate_user_signup function in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi dears,
I’m trying to override the bp_core_validate_user_signup function to add extra necessary checks but it’s not working. What I’ve done is the following:
add_filter('bp_core_validate_user_signup','validate_user_signup',10,2);
function validate_user_signup($user_name, $user_email)
{
// the modified code
}An error occurs when trying to…[Read more]
-
Hope started the topic [Resolved] Overriding bp_core_validate_user_signup function in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi dears,
I’m trying to override the bp_core_validate_user_signup function to add extra necessary checks but it’s not working. What I’ve done is the following:
add_filter('bp_core_validate_user_signup','validate_user_signup',10,2);
function validate_user_signup($user_name, $user_email)
{
// the modified code
}An error occurs when trying to…[Read more]
-
Hope started the topic [Resolved] Overriding bp_core_validate_user_signup function in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi dears,
I’m trying to override the bp_core_validate_user_signup function to add extra necessary checks but it’s not working. What I’ve done is the following:
add_filter(‘bp_core_validate_user_signup’,’validate_user_signup’,10,2);
function validate_user_signup($user_name, $user_email)
{
// the modified code
}
An error occurs when trying to sign…[Read more] - Load More
@amalsh
Active 9 years, 5 months ago