codefight cms could not get admin page
codefight cms could not get admin page
Hi,
I am using codefight cms in the development server (e.g http://www.myhost.com/dev/) , which is set up on a godaddy server.
First I couldn't access any CMS pages. Then I searched and found out that the .htaccess needed to be changed to make it work.
I changed the following htaccess lines
RewriteBase /
RewriteRule ^admin/(.*)$ admin.php/$1 [L]
RewriteRule ^(.*)$ index.php/$1 [L]
to this. [below changed lines]
RewriteBase /dev
RewriteRule ^admin/(.*)$ admin.php?/$1 [L]
RewriteRule ^(.*)$ index.php?/$1 [L]
now, when I try to access the http://www.myhost.com/dev/admin, I get a 404 page.
Is there any way that I could be able to resolve this by making any changes to the .htaccess?
Thank you
I am using codefight cms in the development server (e.g http://www.myhost.com/dev/) , which is set up on a godaddy server.
First I couldn't access any CMS pages. Then I searched and found out that the .htaccess needed to be changed to make it work.
I changed the following htaccess lines
RewriteBase /
RewriteRule ^admin/(.*)$ admin.php/$1 [L]
RewriteRule ^(.*)$ index.php/$1 [L]
to this. [below changed lines]
RewriteBase /dev
RewriteRule ^admin/(.*)$ admin.php?/$1 [L]
RewriteRule ^(.*)$ index.php?/$1 [L]
now, when I try to access the http://www.myhost.com/dev/admin, I get a 404 page.
Is there any way that I could be able to resolve this by making any changes to the .htaccess?
Thank you
Re: codefight cms could not get admin page
Hi Chaleswa,chaleswa wrote:Hi,
I am using codefight cms in the development server (e.g http://www.myhost.com/dev/) , which is set up on a godaddy server.
First I couldn't access any CMS pages. Then I searched and found out that the .htaccess needed to be changed to make it work.
I changed the following htaccess lines
RewriteBase /
RewriteRule ^admin/(.*)$ admin.php/$1 [L]
RewriteRule ^(.*)$ index.php/$1 [L]
to this. [below changed lines]
RewriteBase /dev
RewriteRule ^admin/(.*)$ admin.php?/$1 [L]
RewriteRule ^(.*)$ index.php?/$1 [L]
now, when I try to access the http://www.myhost.com/dev/admin, I get a 404 page.
Is there any way that I could be able to resolve this by making any changes to the .htaccess?
Thank you
You seems to be doing everything right. I was unable to access the /dev. Did you remove it or is still not accessible.
RewriteBase is not really required, so you can try removing that.
If that doesn't work and if you trust you can PM me your temporary FTP access and i can look it for you.
Re: codefight cms could not get admin page
After removing the rewrite base it didn't work. pls check your pm for details.
Re: codefight cms could not get admin page
I think I got it fixed (not sure whether it's the right fix). But it worked for me.
I found that the URI segment was combining the suffix (.HTML) with the last argument
e.g
http://www.myhost.com/user/register.html
it is considered as
http://www.myhost.com/user/register_html
I modified the URI.php library file to remove the suffix and then it started working.
Now everything did work fine.
The actual modification I made was to
to this
Please let me know if this is the right solution or is there a proper solution to it. Thank you very much for your help!
Chaleswa
I found that the URI segment was combining the suffix (.HTML) with the last argument
e.g
http://www.myhost.com/user/register.html
it is considered as
http://www.myhost.com/user/register_html
I modified the URI.php library file to remove the suffix and then it started working.
Now everything did work fine.
The actual modification I made was to
Code: Select all
function _explode_segments()
{
foreach(explode("/", preg_replace("|/*(.+?)/*$|", "\\1", $this->uri_string)) as $val)
{
// Filter segments for security
$val = trim($this->_filter_uri($val));
if ($val != '')
{
$this->segments[] = $val;
}
}
}
Code: Select all
function _explode_segments()
{
foreach(explode("/", preg_replace("|/*(.+?)/*$|", "\\1", $this->uri_string)) as $val)
{
// Filter segments for security
$val = trim($this->_filter_uri($val));
if ($val != '')
{
$this->segments[] = $val;
}
}
/* START: Non CI code to solve the problem of suffix combining with the last argument */
if ($this->config->item('url_suffix') != '') {
$index = sizeof($this->segments);
$index -= 1;
$url_suffix = str_replace(".","_",$this->config->item('url_suffix'));
if (substr($this->segments[$index],(strlen($this->segments[$index]) - strlen($url_suffix)),strlen($url_suffix)) == $url_suffix) {
$this->segments[$index] = substr($this->segments[$index],0,(strlen($this->segments[$index]) - strlen($url_suffix)));
}
}
/* END: Non CI code to solve the problem of suffix combining with the last argument */
}
Chaleswa
Re: codefight cms could not get admin page
Hi Chaleswa,chaleswa wrote:After removing the rewrite base it didn't work. pls check your pm for details.
Its strange that htaccess works for frontend but not for admin. I did few searches and found godaddy has issues with its .htaccess and so many people frustrated with that.
Now the only thing to make admin accessible is to use 'admin.php?' in admin config and removing 'admin/' occurence in all view files under 'app\admin\modules'. You can do a quick search and replace.
see: http://codeigniter.com/forums/viewthread/71881/#625476
Re: codefight cms could not get admin page
If you don't need suffix, you can just set in config:chaleswa wrote:I think I got it fixed (not sure whether it's the right fix). But it worked for me.
I found that the URI segment was combining the suffix (.HTML) with the last argument
e.g
http://www.myhost.com/user/register.html
it is considered as
http://www.myhost.com/user/register_html
I modified the URI.php library file to remove the suffix and then it started working.
Now everything did work fine.
Please let me know if this is the right solution or is there a proper solution to it. Thank you very much for your help!
Chaleswa
app\frontend\config\config.php
app\admin\config\config.php
Code: Select all
$config['url_suffix'] = ""; //leave this blank. By default codefight cms has .html but as it was causing issue, i have removed that for you.
Re: codefight cms could not get admin page
Hi dbashyal,
Actually I did put you in a wrong impression by this
it said for e.g login_html instead of login.
So, I was actually trying to remove the suffix from the last segment value (not from the URL) .
Thus allowing the url suffix to work and removing the suffix from the last segment value.
For admin, I think what you had detailed is the only Hope for now.
Actually I did put you in a wrong impression by this
when I accessed the last segment usingI modified the URI.php library file to remove the suffix and then it started working.
Code: Select all
$this->uri->segment(no)
So, I was actually trying to remove the suffix from the last segment value (not from the URL) .
Thus allowing the url suffix to work and removing the suffix from the last segment value.
For admin, I think what you had detailed is the only Hope for now.
Re: codefight cms could not get admin page
Hi Chaleswa,chaleswa wrote:Hi dbashyal,
Actually I did put you in a wrong impression by this
I modified the URI.php library file to remove the suffix and then it started working.
Yes i missunderstood you. And, i think your solution is best for now and actually i added that to my site codefight.org now as well. Thanks

I saw that issue after upgrading to current codeigniter and not sure how i fixed that time. Hopefully it will be fine in next release of codeigniter.
Re: codefight cms could not get admin page
Hi dbashyal ,
And I went ahead with your solution of removing "admin/" for the admin section.
I added "admin.php?" in the admin/config/config.php file
and removed the "admin/" within
admin/modules
admin/views/ and also
admin/libraries/login.php
It Worked a Treat.
Thank you very much for the timely solution!
I am happy that it was useful.Yes i missunderstood you. And, i think your solution is best for now and actually i added that to my site codefight.org now as well. Thanks
And I went ahead with your solution of removing "admin/" for the admin section.
I added "admin.php?" in the admin/config/config.php file
Code: Select all
$config['index_page'] = "admin.php?";
admin/modules
admin/views/ and also
admin/libraries/login.php
It Worked a Treat.
Thank you very much for the timely solution!
Re: codefight cms could not get admin page
New version of codefight cms is now available for download. Just a new skin + few bug fixes + removed "admin/" from url to work in above server environment as well.