SilverStripe 3: Can no longer access CMS admin area, receiving 500 error
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
When trying to access the CMS via /admin on a live SilverStripe site it's suddenly starting producing a 500 error page with the following message the rest of the site is fine:
The server encountered an internal error or misconfiguration and was unable to complete your request.
The most recent errors in the error log in the public_html folder shows:
[17-Nov-2018 03:06:11 UTC] PHP Warning: Director::protocolAndHost() lacks sufficient information - HTTP_HOST not set. in /home/mysite/public_html/framework/control/Director.php on line 488
The error log in cPanel shows:
[Wed Nov 21 15:27:24.578366 2018] [core:alert] [pid 10504:tid 47515481941760] [client 90.242.226.###:56737] /home/bwib/public_html/.htaccess: Invalid command 'SetEnv', perhaps misspelled or defined by a module not included in the server configuration
I've checked the .htaccess file and its somehow changed to this:
# BEGIN cPanel-generated php ini directives, do not edit
# Manual editing of this file may result in unexpected behavior.
# To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
# For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI)
<IfModule php5_module>
php_value date.timezone "UTC"
</IfModule>
# END cPanel-generated php ini directives, do not edit
If I replace it with the original .htaccess file the entire site breaks and I get a 500 error.
Original .htaccess here:
### SILVERSTRIPE START ###
# Deny access to templates (but allow from localhost)
<Files *.ss>
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Files>
# Deny access to IIS configuration
<Files web.config>
Order deny,allow
Deny from all
</Files>
# Deny access to YAML configuration files which might include sensitive information
<Files *.yml>
Order allow,deny
Deny from all
</Files>
# Route errors to static pages automatically generated by SilverStripe
ErrorDocument 404 /assets/error-404.html
ErrorDocument 500 /assets/error-500.html
<IfModule mod_rewrite.c>
# Turn off index.php handling requests to the homepage fixes issue in apache >=2.4
<IfModule mod_dir.c>
DirectoryIndex disabled
</IfModule>
SetEnv HTTP_MOD_REWRITE On
RewriteEngine On
RewriteBase '/'
# Deny access to potentially sensitive files and folders
RewriteRule ^vendor(/|$) - [F,L,NC]
RewriteRule silverstripe-cache(/|$) - [F,L,NC]
RewriteRule composer.(json|lock) - [F,L,NC]
# Process through SilverStripe if no file with the requested name exists.
# Pass through the original path as a query parameter, and retain the existing parameters.
RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* framework/main.php?url=%1 [QSA]
SILVERSTRIPE END
The hosting company are unwilling to advise or help investigate and just keep telling me "the admin folder is empty" very unhelpful.
Some research has pointed me in the direction of these answers but I'm not sure how to apply these via cPanel or the .htaccess file:
Director::protocolAndHost() lacks sufficient information - HTTP_HOST not set
https://github.com/kanboard/kanboard/issues/2685
Screenshot of the server settings attached:
Any advice on how to trouble shoot this would be great!
php apache .htaccess command-line-interface silverstripe
|
show 5 more comments
When trying to access the CMS via /admin on a live SilverStripe site it's suddenly starting producing a 500 error page with the following message the rest of the site is fine:
The server encountered an internal error or misconfiguration and was unable to complete your request.
The most recent errors in the error log in the public_html folder shows:
[17-Nov-2018 03:06:11 UTC] PHP Warning: Director::protocolAndHost() lacks sufficient information - HTTP_HOST not set. in /home/mysite/public_html/framework/control/Director.php on line 488
The error log in cPanel shows:
[Wed Nov 21 15:27:24.578366 2018] [core:alert] [pid 10504:tid 47515481941760] [client 90.242.226.###:56737] /home/bwib/public_html/.htaccess: Invalid command 'SetEnv', perhaps misspelled or defined by a module not included in the server configuration
I've checked the .htaccess file and its somehow changed to this:
# BEGIN cPanel-generated php ini directives, do not edit
# Manual editing of this file may result in unexpected behavior.
# To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
# For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI)
<IfModule php5_module>
php_value date.timezone "UTC"
</IfModule>
# END cPanel-generated php ini directives, do not edit
If I replace it with the original .htaccess file the entire site breaks and I get a 500 error.
Original .htaccess here:
### SILVERSTRIPE START ###
# Deny access to templates (but allow from localhost)
<Files *.ss>
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Files>
# Deny access to IIS configuration
<Files web.config>
Order deny,allow
Deny from all
</Files>
# Deny access to YAML configuration files which might include sensitive information
<Files *.yml>
Order allow,deny
Deny from all
</Files>
# Route errors to static pages automatically generated by SilverStripe
ErrorDocument 404 /assets/error-404.html
ErrorDocument 500 /assets/error-500.html
<IfModule mod_rewrite.c>
# Turn off index.php handling requests to the homepage fixes issue in apache >=2.4
<IfModule mod_dir.c>
DirectoryIndex disabled
</IfModule>
SetEnv HTTP_MOD_REWRITE On
RewriteEngine On
RewriteBase '/'
# Deny access to potentially sensitive files and folders
RewriteRule ^vendor(/|$) - [F,L,NC]
RewriteRule silverstripe-cache(/|$) - [F,L,NC]
RewriteRule composer.(json|lock) - [F,L,NC]
# Process through SilverStripe if no file with the requested name exists.
# Pass through the original path as a query parameter, and retain the existing parameters.
RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* framework/main.php?url=%1 [QSA]
SILVERSTRIPE END
The hosting company are unwilling to advise or help investigate and just keep telling me "the admin folder is empty" very unhelpful.
Some research has pointed me in the direction of these answers but I'm not sure how to apply these via cPanel or the .htaccess file:
Director::protocolAndHost() lacks sufficient information - HTTP_HOST not set
https://github.com/kanboard/kanboard/issues/2685
Screenshot of the server settings attached:
Any advice on how to trouble shoot this would be great!
php apache .htaccess command-line-interface silverstripe
Have you tried updating the htaccess the way they recommend: "To make changes to this file, use the cPanel MultiPHP INI Editor" since it also says: "Manual editing of this file may result in unexpected behavior."?
– Magnus Eriksson
Nov 21 '18 at 21:18
I don't know how to write the .htaccess contents to the php.ini format. Using any of the content from the .htaccess file in the editor just causes an error and it won't accept it. I've looked at the suggested documentation but it doesn't help with scope of knowledge: go.cpanel.net/EA4ModifyINI I've never had to do anything like this for any other server setup.
– pinkp
Nov 21 '18 at 21:46
that is not your .htaccess file, that is your php.ini file. In your htaccess there will be a line with SetEnv in it comment it out by placing a '#' in front of it. Report back after you have done this.
– Orlando P.
Nov 21 '18 at 21:47
So how do I use the php.ini file to fix the issues with the .htaccess file. Why does the it tell me to make changes to my .htaccess file via the INI editor... SetEnv is an .htaccess setting. :/
– pinkp
Nov 21 '18 at 21:50
Why is your web host overriding your .htaccess file and telling you not to change it? That's bizarre and dangerous (for them to do)
– Robbie Averill
Nov 26 '18 at 11:11
|
show 5 more comments
When trying to access the CMS via /admin on a live SilverStripe site it's suddenly starting producing a 500 error page with the following message the rest of the site is fine:
The server encountered an internal error or misconfiguration and was unable to complete your request.
The most recent errors in the error log in the public_html folder shows:
[17-Nov-2018 03:06:11 UTC] PHP Warning: Director::protocolAndHost() lacks sufficient information - HTTP_HOST not set. in /home/mysite/public_html/framework/control/Director.php on line 488
The error log in cPanel shows:
[Wed Nov 21 15:27:24.578366 2018] [core:alert] [pid 10504:tid 47515481941760] [client 90.242.226.###:56737] /home/bwib/public_html/.htaccess: Invalid command 'SetEnv', perhaps misspelled or defined by a module not included in the server configuration
I've checked the .htaccess file and its somehow changed to this:
# BEGIN cPanel-generated php ini directives, do not edit
# Manual editing of this file may result in unexpected behavior.
# To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
# For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI)
<IfModule php5_module>
php_value date.timezone "UTC"
</IfModule>
# END cPanel-generated php ini directives, do not edit
If I replace it with the original .htaccess file the entire site breaks and I get a 500 error.
Original .htaccess here:
### SILVERSTRIPE START ###
# Deny access to templates (but allow from localhost)
<Files *.ss>
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Files>
# Deny access to IIS configuration
<Files web.config>
Order deny,allow
Deny from all
</Files>
# Deny access to YAML configuration files which might include sensitive information
<Files *.yml>
Order allow,deny
Deny from all
</Files>
# Route errors to static pages automatically generated by SilverStripe
ErrorDocument 404 /assets/error-404.html
ErrorDocument 500 /assets/error-500.html
<IfModule mod_rewrite.c>
# Turn off index.php handling requests to the homepage fixes issue in apache >=2.4
<IfModule mod_dir.c>
DirectoryIndex disabled
</IfModule>
SetEnv HTTP_MOD_REWRITE On
RewriteEngine On
RewriteBase '/'
# Deny access to potentially sensitive files and folders
RewriteRule ^vendor(/|$) - [F,L,NC]
RewriteRule silverstripe-cache(/|$) - [F,L,NC]
RewriteRule composer.(json|lock) - [F,L,NC]
# Process through SilverStripe if no file with the requested name exists.
# Pass through the original path as a query parameter, and retain the existing parameters.
RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* framework/main.php?url=%1 [QSA]
SILVERSTRIPE END
The hosting company are unwilling to advise or help investigate and just keep telling me "the admin folder is empty" very unhelpful.
Some research has pointed me in the direction of these answers but I'm not sure how to apply these via cPanel or the .htaccess file:
Director::protocolAndHost() lacks sufficient information - HTTP_HOST not set
https://github.com/kanboard/kanboard/issues/2685
Screenshot of the server settings attached:
Any advice on how to trouble shoot this would be great!
php apache .htaccess command-line-interface silverstripe
When trying to access the CMS via /admin on a live SilverStripe site it's suddenly starting producing a 500 error page with the following message the rest of the site is fine:
The server encountered an internal error or misconfiguration and was unable to complete your request.
The most recent errors in the error log in the public_html folder shows:
[17-Nov-2018 03:06:11 UTC] PHP Warning: Director::protocolAndHost() lacks sufficient information - HTTP_HOST not set. in /home/mysite/public_html/framework/control/Director.php on line 488
The error log in cPanel shows:
[Wed Nov 21 15:27:24.578366 2018] [core:alert] [pid 10504:tid 47515481941760] [client 90.242.226.###:56737] /home/bwib/public_html/.htaccess: Invalid command 'SetEnv', perhaps misspelled or defined by a module not included in the server configuration
I've checked the .htaccess file and its somehow changed to this:
# BEGIN cPanel-generated php ini directives, do not edit
# Manual editing of this file may result in unexpected behavior.
# To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
# For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI)
<IfModule php5_module>
php_value date.timezone "UTC"
</IfModule>
# END cPanel-generated php ini directives, do not edit
If I replace it with the original .htaccess file the entire site breaks and I get a 500 error.
Original .htaccess here:
### SILVERSTRIPE START ###
# Deny access to templates (but allow from localhost)
<Files *.ss>
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Files>
# Deny access to IIS configuration
<Files web.config>
Order deny,allow
Deny from all
</Files>
# Deny access to YAML configuration files which might include sensitive information
<Files *.yml>
Order allow,deny
Deny from all
</Files>
# Route errors to static pages automatically generated by SilverStripe
ErrorDocument 404 /assets/error-404.html
ErrorDocument 500 /assets/error-500.html
<IfModule mod_rewrite.c>
# Turn off index.php handling requests to the homepage fixes issue in apache >=2.4
<IfModule mod_dir.c>
DirectoryIndex disabled
</IfModule>
SetEnv HTTP_MOD_REWRITE On
RewriteEngine On
RewriteBase '/'
# Deny access to potentially sensitive files and folders
RewriteRule ^vendor(/|$) - [F,L,NC]
RewriteRule silverstripe-cache(/|$) - [F,L,NC]
RewriteRule composer.(json|lock) - [F,L,NC]
# Process through SilverStripe if no file with the requested name exists.
# Pass through the original path as a query parameter, and retain the existing parameters.
RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* framework/main.php?url=%1 [QSA]
SILVERSTRIPE END
The hosting company are unwilling to advise or help investigate and just keep telling me "the admin folder is empty" very unhelpful.
Some research has pointed me in the direction of these answers but I'm not sure how to apply these via cPanel or the .htaccess file:
Director::protocolAndHost() lacks sufficient information - HTTP_HOST not set
https://github.com/kanboard/kanboard/issues/2685
Screenshot of the server settings attached:
Any advice on how to trouble shoot this would be great!
php apache .htaccess command-line-interface silverstripe
php apache .htaccess command-line-interface silverstripe
edited Nov 26 '18 at 9:34
pinkp
asked Nov 21 '18 at 21:01
pinkppinkp
5681525
5681525
Have you tried updating the htaccess the way they recommend: "To make changes to this file, use the cPanel MultiPHP INI Editor" since it also says: "Manual editing of this file may result in unexpected behavior."?
– Magnus Eriksson
Nov 21 '18 at 21:18
I don't know how to write the .htaccess contents to the php.ini format. Using any of the content from the .htaccess file in the editor just causes an error and it won't accept it. I've looked at the suggested documentation but it doesn't help with scope of knowledge: go.cpanel.net/EA4ModifyINI I've never had to do anything like this for any other server setup.
– pinkp
Nov 21 '18 at 21:46
that is not your .htaccess file, that is your php.ini file. In your htaccess there will be a line with SetEnv in it comment it out by placing a '#' in front of it. Report back after you have done this.
– Orlando P.
Nov 21 '18 at 21:47
So how do I use the php.ini file to fix the issues with the .htaccess file. Why does the it tell me to make changes to my .htaccess file via the INI editor... SetEnv is an .htaccess setting. :/
– pinkp
Nov 21 '18 at 21:50
Why is your web host overriding your .htaccess file and telling you not to change it? That's bizarre and dangerous (for them to do)
– Robbie Averill
Nov 26 '18 at 11:11
|
show 5 more comments
Have you tried updating the htaccess the way they recommend: "To make changes to this file, use the cPanel MultiPHP INI Editor" since it also says: "Manual editing of this file may result in unexpected behavior."?
– Magnus Eriksson
Nov 21 '18 at 21:18
I don't know how to write the .htaccess contents to the php.ini format. Using any of the content from the .htaccess file in the editor just causes an error and it won't accept it. I've looked at the suggested documentation but it doesn't help with scope of knowledge: go.cpanel.net/EA4ModifyINI I've never had to do anything like this for any other server setup.
– pinkp
Nov 21 '18 at 21:46
that is not your .htaccess file, that is your php.ini file. In your htaccess there will be a line with SetEnv in it comment it out by placing a '#' in front of it. Report back after you have done this.
– Orlando P.
Nov 21 '18 at 21:47
So how do I use the php.ini file to fix the issues with the .htaccess file. Why does the it tell me to make changes to my .htaccess file via the INI editor... SetEnv is an .htaccess setting. :/
– pinkp
Nov 21 '18 at 21:50
Why is your web host overriding your .htaccess file and telling you not to change it? That's bizarre and dangerous (for them to do)
– Robbie Averill
Nov 26 '18 at 11:11
Have you tried updating the htaccess the way they recommend: "To make changes to this file, use the cPanel MultiPHP INI Editor" since it also says: "Manual editing of this file may result in unexpected behavior."?
– Magnus Eriksson
Nov 21 '18 at 21:18
Have you tried updating the htaccess the way they recommend: "To make changes to this file, use the cPanel MultiPHP INI Editor" since it also says: "Manual editing of this file may result in unexpected behavior."?
– Magnus Eriksson
Nov 21 '18 at 21:18
I don't know how to write the .htaccess contents to the php.ini format. Using any of the content from the .htaccess file in the editor just causes an error and it won't accept it. I've looked at the suggested documentation but it doesn't help with scope of knowledge: go.cpanel.net/EA4ModifyINI I've never had to do anything like this for any other server setup.
– pinkp
Nov 21 '18 at 21:46
I don't know how to write the .htaccess contents to the php.ini format. Using any of the content from the .htaccess file in the editor just causes an error and it won't accept it. I've looked at the suggested documentation but it doesn't help with scope of knowledge: go.cpanel.net/EA4ModifyINI I've never had to do anything like this for any other server setup.
– pinkp
Nov 21 '18 at 21:46
that is not your .htaccess file, that is your php.ini file. In your htaccess there will be a line with SetEnv in it comment it out by placing a '#' in front of it. Report back after you have done this.
– Orlando P.
Nov 21 '18 at 21:47
that is not your .htaccess file, that is your php.ini file. In your htaccess there will be a line with SetEnv in it comment it out by placing a '#' in front of it. Report back after you have done this.
– Orlando P.
Nov 21 '18 at 21:47
So how do I use the php.ini file to fix the issues with the .htaccess file. Why does the it tell me to make changes to my .htaccess file via the INI editor... SetEnv is an .htaccess setting. :/
– pinkp
Nov 21 '18 at 21:50
So how do I use the php.ini file to fix the issues with the .htaccess file. Why does the it tell me to make changes to my .htaccess file via the INI editor... SetEnv is an .htaccess setting. :/
– pinkp
Nov 21 '18 at 21:50
Why is your web host overriding your .htaccess file and telling you not to change it? That's bizarre and dangerous (for them to do)
– Robbie Averill
Nov 26 '18 at 11:11
Why is your web host overriding your .htaccess file and telling you not to change it? That's bizarre and dangerous (for them to do)
– Robbie Averill
Nov 26 '18 at 11:11
|
show 5 more comments
1 Answer
1
active
oldest
votes
Never use the CPanel of your provider if you use FTP and SSH or vice versa.
You can't change all Apache settings in php, it's not the same things.
Remove SetEnv
because you certainly not have a dedicated server. So no SetEnv
for everybody because it's dangerous.
In .htaccess, it's preferable to check if mod_rewrite is enable :
<IfModule mod_rewrite.c>
# Enable URL rewriting
RewriteEngine On
# All the rewrite conditions and redirections below
</IfModule>
I think it's pretty unlikely that SilverStripe will work without the mod_rewrite module enabled, so while this answer is technically useful, it won't help the question author to solve the problem
– Robbie Averill
Dec 3 '18 at 12:31
should i delete ?
– Shim-Sao
Dec 3 '18 at 16:20
No =) there are no other answers yet, so you might get the bounty!
– Robbie Averill
Dec 3 '18 at 16:21
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420424%2fsilverstripe-3-can-no-longer-access-cms-admin-area-receiving-500-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Never use the CPanel of your provider if you use FTP and SSH or vice versa.
You can't change all Apache settings in php, it's not the same things.
Remove SetEnv
because you certainly not have a dedicated server. So no SetEnv
for everybody because it's dangerous.
In .htaccess, it's preferable to check if mod_rewrite is enable :
<IfModule mod_rewrite.c>
# Enable URL rewriting
RewriteEngine On
# All the rewrite conditions and redirections below
</IfModule>
I think it's pretty unlikely that SilverStripe will work without the mod_rewrite module enabled, so while this answer is technically useful, it won't help the question author to solve the problem
– Robbie Averill
Dec 3 '18 at 12:31
should i delete ?
– Shim-Sao
Dec 3 '18 at 16:20
No =) there are no other answers yet, so you might get the bounty!
– Robbie Averill
Dec 3 '18 at 16:21
add a comment |
Never use the CPanel of your provider if you use FTP and SSH or vice versa.
You can't change all Apache settings in php, it's not the same things.
Remove SetEnv
because you certainly not have a dedicated server. So no SetEnv
for everybody because it's dangerous.
In .htaccess, it's preferable to check if mod_rewrite is enable :
<IfModule mod_rewrite.c>
# Enable URL rewriting
RewriteEngine On
# All the rewrite conditions and redirections below
</IfModule>
I think it's pretty unlikely that SilverStripe will work without the mod_rewrite module enabled, so while this answer is technically useful, it won't help the question author to solve the problem
– Robbie Averill
Dec 3 '18 at 12:31
should i delete ?
– Shim-Sao
Dec 3 '18 at 16:20
No =) there are no other answers yet, so you might get the bounty!
– Robbie Averill
Dec 3 '18 at 16:21
add a comment |
Never use the CPanel of your provider if you use FTP and SSH or vice versa.
You can't change all Apache settings in php, it's not the same things.
Remove SetEnv
because you certainly not have a dedicated server. So no SetEnv
for everybody because it's dangerous.
In .htaccess, it's preferable to check if mod_rewrite is enable :
<IfModule mod_rewrite.c>
# Enable URL rewriting
RewriteEngine On
# All the rewrite conditions and redirections below
</IfModule>
Never use the CPanel of your provider if you use FTP and SSH or vice versa.
You can't change all Apache settings in php, it's not the same things.
Remove SetEnv
because you certainly not have a dedicated server. So no SetEnv
for everybody because it's dangerous.
In .htaccess, it's preferable to check if mod_rewrite is enable :
<IfModule mod_rewrite.c>
# Enable URL rewriting
RewriteEngine On
# All the rewrite conditions and redirections below
</IfModule>
answered Dec 1 '18 at 16:37
Shim-SaoShim-Sao
738415
738415
I think it's pretty unlikely that SilverStripe will work without the mod_rewrite module enabled, so while this answer is technically useful, it won't help the question author to solve the problem
– Robbie Averill
Dec 3 '18 at 12:31
should i delete ?
– Shim-Sao
Dec 3 '18 at 16:20
No =) there are no other answers yet, so you might get the bounty!
– Robbie Averill
Dec 3 '18 at 16:21
add a comment |
I think it's pretty unlikely that SilverStripe will work without the mod_rewrite module enabled, so while this answer is technically useful, it won't help the question author to solve the problem
– Robbie Averill
Dec 3 '18 at 12:31
should i delete ?
– Shim-Sao
Dec 3 '18 at 16:20
No =) there are no other answers yet, so you might get the bounty!
– Robbie Averill
Dec 3 '18 at 16:21
I think it's pretty unlikely that SilverStripe will work without the mod_rewrite module enabled, so while this answer is technically useful, it won't help the question author to solve the problem
– Robbie Averill
Dec 3 '18 at 12:31
I think it's pretty unlikely that SilverStripe will work without the mod_rewrite module enabled, so while this answer is technically useful, it won't help the question author to solve the problem
– Robbie Averill
Dec 3 '18 at 12:31
should i delete ?
– Shim-Sao
Dec 3 '18 at 16:20
should i delete ?
– Shim-Sao
Dec 3 '18 at 16:20
No =) there are no other answers yet, so you might get the bounty!
– Robbie Averill
Dec 3 '18 at 16:21
No =) there are no other answers yet, so you might get the bounty!
– Robbie Averill
Dec 3 '18 at 16:21
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420424%2fsilverstripe-3-can-no-longer-access-cms-admin-area-receiving-500-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you tried updating the htaccess the way they recommend: "To make changes to this file, use the cPanel MultiPHP INI Editor" since it also says: "Manual editing of this file may result in unexpected behavior."?
– Magnus Eriksson
Nov 21 '18 at 21:18
I don't know how to write the .htaccess contents to the php.ini format. Using any of the content from the .htaccess file in the editor just causes an error and it won't accept it. I've looked at the suggested documentation but it doesn't help with scope of knowledge: go.cpanel.net/EA4ModifyINI I've never had to do anything like this for any other server setup.
– pinkp
Nov 21 '18 at 21:46
that is not your .htaccess file, that is your php.ini file. In your htaccess there will be a line with SetEnv in it comment it out by placing a '#' in front of it. Report back after you have done this.
– Orlando P.
Nov 21 '18 at 21:47
So how do I use the php.ini file to fix the issues with the .htaccess file. Why does the it tell me to make changes to my .htaccess file via the INI editor... SetEnv is an .htaccess setting. :/
– pinkp
Nov 21 '18 at 21:50
Why is your web host overriding your .htaccess file and telling you not to change it? That's bizarre and dangerous (for them to do)
– Robbie Averill
Nov 26 '18 at 11:11