Lorand98 Posted April 18, 2020 Share Posted April 18, 2020 Hello everyone, I am not able to turn on the Full Friendly Rewrite option. The control from .htaccess file is enabled in apache server configuration, so probably I need to enable something else. My version of WHMCS: 7.8.3-release.1 PHP Version: PHP 7.3.16-1+ubuntu18.04.1 0 Quote Link to comment Share on other sites More sharing options...
Jim O'Quinn Posted April 24, 2020 Share Posted April 24, 2020 Same here. WHMCS 7.10.1, PHP 7.3.17, Apache2 2.4.43, fresh install. Auto-Manage Rewrite is ON and WHMCS Rules synchronized. No errors in Apache's error.log or anything suspicious in server.log. I do have mod_rewrite enable: Quote root@host:/var/log/apache2# a2enmod rewrite Module rewrite already enable I have the port 80 rewrite provided by Letsencrypt in my virtual server config and it looks like this, not sure this is an issue, but figured I'd mention it: RewriteEngine on RewriteCond %{SERVER_NAME} =host.somesite.com RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] My .htaccess looks like this: ### BEGIN - WHMCS managed rules - DO NOT EDIT BETWEEN WHMCS MARKERS ### <IfModule mod_rewrite.c> RewriteEngine on # RewriteBase is set to "/" so rules do not need updating if the # installation directory is relocated. It is imperative that # there is also a RewriteCond rule later that can effectively get # the actual value by comparison against the request URI. # # If there are _any_ other RewriteBase directives in this file, # the last entry will take precedence! RewriteBase / # Redirect directories to an address with slash RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^(.+[^/])$ $1/ [R] # Send all remaining (routable paths) through index.php RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Determine and use the actual base RewriteCond $0#%{REQUEST_URI} ([^#]*)#(.*)\1$ RewriteRule ^.*$ %2index.php [QSA,L] </IfModule> ### END - WHMCS managed rules - DO NOT EDIT BETWEEN WHMCS MARKERS ### 0 Quote Link to comment Share on other sites More sharing options...
imsky Posted May 3, 2020 Share Posted May 3, 2020 yup! i have the same problem and literally don't know how to fix. i tried pretty much everything i found on google. maybe it's a feature just for the people who pay for whmcs? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted May 4, 2020 Share Posted May 4, 2020 19 hours ago, imsky said: maybe it's a feature just for the people who pay for whmcs? do you mean that you don't pay for it? 🙄 1 Quote Link to comment Share on other sites More sharing options...
imsky Posted May 7, 2020 Share Posted May 7, 2020 On 5/4/2020 at 7:18 PM, brian! said: do you mean that you don't pay for it? 🙄 while i'm finishing my whmcs theme, no. i feel like there's no point in that? 0 Quote Link to comment Share on other sites More sharing options...
Jim O'Quinn Posted May 11, 2020 Share Posted May 11, 2020 On 5/3/2020 at 9:11 AM, imsky said: maybe it's a feature just for the people who pay for whmcs? I pay and it does not work, so don't think that is the case. WHMCS likely needs to update their documentation or fix a bug in the .htaccess code...given the number of people who cannot configure it properly. 0 Quote Link to comment Share on other sites More sharing options...
ITKoolKidd Posted June 1, 2020 Share Posted June 1, 2020 I'm also having this issue and can't figure out why 🤷♂️ 0 Quote Link to comment Share on other sites More sharing options...
Lorand98 Posted June 2, 2020 Author Share Posted June 2, 2020 I figured out the problem, in my case the mod_rewrite from apache server was not enabled.https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.