set admin and front in codeignitier - codeigniter
I have codeigniter 3.1.6 I am trying to separate admin and front both are in the different folder in application folder
e.g
application/admin (In this all folder and file which is in the application)
application/front (In this all folder and file which is in the application)
and localhost/ci/ load the front and localhost/ci/admin load the admin
how it is possible ? also css and js not load which is
application/admin/assets/css/ ( I used base_url(assets/css/cssfile.css) )
same as for fron
please help I spen lot of time to set this one
this is my .htacess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /codeigniter/
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /codeigniter/index.php?/$1 [L]
#When your application folder isn't in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /codeigniter/index.php?/$1 [L]
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /codeigniter/index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /codeigniter/index.php
</IfModule>
config.php
| path to your installation.
|
*/
$config['base_url'] = '';
/* variable */
$config['chemin_images'] = '/homepages/42/d422273845/htdocs/sites/markoub2/assets/images/';
$config['chemin_cars'] = '/homepages/42/d422273845/htdocs/sites/markoub2/assets/images/cars/';
/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = '';
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string. The default setting of 'AUTO' works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'AUTO' Default - auto detects
| 'PATH_INFO' Uses the PATH_INFO
| 'QUERY_STRING' Uses the QUERY_STRING
| 'REQUEST_URI' Uses the REQUEST_URI
| 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
|
*/
$config['uri_protocol'] = 'AUTO';
index.php
<?php
/*
*---------------------------------------------------------------
* APPLICATION ENVIRONMENT
*---------------------------------------------------------------
*
* You can load different configurations depending on your
* current environment. Setting the environment also influences
* things like logging and error reporting.
*
* This can be set to anything, but default usage is:
*
* development
* testing
* production
*
* NOTE: If you change these, also change the error_reporting() code below
*
*/
define('ENVIRONMENT', 'development');
/*
*---------------------------------------------------------------
* ERROR REPORTING
*---------------------------------------------------------------
*
* Different environments will require different levels of error reporting.
* By default development will show errors but testing and live will hide them.
*/
if (defined('ENVIRONMENT'))
{
switch (ENVIRONMENT)
{
case 'development':
error_reporting(E_ALL);
break;
case 'testing':
case 'production':
error_reporting(0);
break;
default:
exit('The application environment is not set correctly.');
}
}
/*
*---------------------------------------------------------------
* SYSTEM FOLDER NAME
*---------------------------------------------------------------
*
* This variable must contain the name of your "system" folder.
* Include the path if the folder is not in the same directory
* as this file.
*
*/
$system_path = 'system';
/*
*---------------------------------------------------------------
* APPLICATION FOLDER NAME
*---------------------------------------------------------------
*
* If you want this front controller to use a different "application"
* folder then the default one you can set its name here. The folder
* can also be renamed or relocated anywhere on your server. If
* you do, use a full server path. For more info please see the user guide:
* http://codeigniter.com/user_guide/general/managing_apps.html
*
* NO TRAILING SLASH!
*
*/
$application_folder = 'application';
/*
* --------------------------------------------------------------------
* DEFAULT CONTROLLER
* --------------------------------------------------------------------
*
* Normally you will set your default controller in the routes.php file.
* You can, however, force a custom routing by hard-coding a
* specific controller class/function here. For most applications, you
* WILL NOT set your routing here, but it's an option for those
* special instances where you might want to override the standard
* routing in a specific front controller that shares a common CI installation.
*
* IMPORTANT: If you set the routing here, NO OTHER controller will be
* callable. In essence, this preference limits your application to ONE
* specific controller. Leave the function name blank if you need
* to call functions dynamically via the URI.
*
* Un-comment the $routing array below to use this feature
*
*/
// The directory name, relative to the "controllers" folder. Leave blank
// if your controller is not in a sub-folder within the "controllers" folder
// $routing['directory'] = '';
// The controller class file name. Example: Mycontroller
// $routing['controller'] = '';
// The controller function you wish to be called.
// $routing['function'] = '';
/*
* -------------------------------------------------------------------
* CUSTOM CONFIG VALUES
* -------------------------------------------------------------------
*
* The $assign_to_config array below will be passed dynamically to the
* config class when initialized. This allows you to set custom config
* items or override any default config values found in the config.php file.
* This can be handy as it permits you to share one application between
* multiple front controller files, with each file containing different
* config values.
*
* Un-comment the $assign_to_config array below to use this feature
*
*/
// $assign_to_config['name_of_config_item'] = 'value of config item';
// --------------------------------------------------------------------
// END OF USER CONFIGURABLE SETTINGS. DO NOT EDIT BELOW THIS LINE
// --------------------------------------------------------------------
/*
* ---------------------------------------------------------------
* Resolve the system path for increased reliability
* ---------------------------------------------------------------
*/
// Set the current directory correctly for CLI requests
if (defined('STDIN'))
{
chdir(dirname(__FILE__));
}
if (realpath($system_path) !== FALSE)
{
$system_path = realpath($system_path).'/';
}
// ensure there's a trailing slash
$system_path = rtrim($system_path, '/').'/';
// Is the system path correct?
if ( ! is_dir($system_path))
{
exit("Your system folder path does not appear to be set correctly. Please open the following file and correct this: ".pathinfo(__FILE__, PATHINFO_BASENAME));
}
/*
* -------------------------------------------------------------------
* Now that we know the path, set the main path constants
* -------------------------------------------------------------------
*/
// The name of THIS file
define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));
// The PHP file extension
// this global constant is deprecated.
define('EXT', '.php');
// Path to the system folder
define('BASEPATH', str_replace("\\", "/", $system_path));
// Path to the front controller (this file)
define('FCPATH', str_replace(SELF, '', __FILE__));
// Name of the "system folder"
define('SYSDIR', trim(strrchr(trim(BASEPATH, '/'), '/'), '/'));
// The path to the "application" folder
if (is_dir($application_folder))
{
define('APPPATH', $application_folder.'/');
}
else
{
if ( ! is_dir(BASEPATH.$application_folder.'/'))
{
exit("Your application folder path does not appear to be set correctly. Please open the following file and correct this: ".SELF);
}
define('APPPATH', BASEPATH.$application_folder.'/');
}
/*
* --------------------------------------------------------------------
* LOAD THE BOOTSTRAP FILE
* --------------------------------------------------------------------
*
* And away we go...
*
*/
require_once BASEPATH.'core/CodeIgniter.php';
/* End of file index.php */
/* Location: ./index.php */
As i said the webapp works fine on the Server
Use this below link sample boilerplate from github. You can see both frontend and admin panel as you asked.
https://github.com/jiji262/codeigniter_boilerplate
This will be helpful.
Related
How to make Magento understand we are on the subdomain?
Need your help. I made a multi-view (domain.com & sub.domain.com) store with Magento 1.9.2.1. Everything is fine! But! When you try to get the subdomain, magento show you information from the main domain. On the other side when you try to get subdomain through the main domain (language switcher with GET "?___store=viewSubDomainCode&___from_store=viewDomainCode"). The reason is in setting Cookies I suppose. How to make Magento set cookies when my request is directly http://sub.domain.com. Index.php of subdomain: /* Store or website code */ $mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : 'code of my WEBSITE'; /* Run store or run website */ $mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'website'; Mage::run($mageRunCode, $mageRunType); Important thing: I need one COOKIES for both domains (one cart). Simply say: I want to set CurrentStore of subdomain!
First of, you need to set your cookies correctly to make them work in domain/subdomain: https://magento.stackexchange.com/questions/68070/whats-the-correct-cookie-config-for-a-magento-site-split-across-multiple-instan Regarding the store switching to the correct view, you need either .htaccess modification: RewriteCond %{HTTP_HOST} www\.domain1\.com [NC] RewriteRule .* - [E=MAGE_RUN_CODE:domain1_com] RewriteCond %{HTTP_HOST} www\.domain1\.com [NC] RewriteRule .* - [E=MAGE_RUN_TYPE:website] RewriteCond %{HTTP_HOST} www\.domain2\.com [NC] RewriteRule .* - [E=MAGE_RUN_CODE:domain2_com] RewriteCond %{HTTP_HOST} www\.domain2\.com [NC] RewriteRule .* - [E=MAGE_RUN_TYPE:website] Or modify index.php to switch based on domain: switch($_SERVER['HTTP_HOST']) { case 'domain1.com': case 'www.domain1.com': $mageRunCode = 'domain1_com'; $mageRunType = 'website'; break; case 'domain2.com': case 'www.domain2.com': $mageRunCode = 'domain2_com'; $mageRunType = 'website'; break; } With this, don't forget to clear cache & sessions, it should work.
CodeIgniter date - wrong time
I'm using: date("d-m-Y h:i:s") in my controller, but the time is later than actual time. For example, now in my country it's 01:02, date return 20-06-2015 01:06:38. How to fix it?
1st Step : Go to config/config.php and write //specify your region date_default_timezone_set('Europe/Warsaw'); 2nd step: now you can use your time date("d-m-Y h:i:s") //for 21/12/2010 20:12:00 date("h:i:s") //for 12:12:11 time only
Place timezone on the top of the config.php file above base_url date_default_timezone_set('Europe/Warsaw'); Then refresh server <?php defined('BASEPATH') OR exit('No direct script access allowed'); date_default_timezone_set('Europe/Warsaw'); /* |-------------------------------------------------------------------------- | Base Site URL |-------------------------------------------------------------------------- | | URL to your CodeIgniter root. Typically this will be your base URL, | WITH a trailing slash: | | http://example.com/ | | If this is not set then CodeIgniter will try guess the protocol, domain | and path to your installation. However, you should always configure this | explicitly and never rely on auto-guessing, especially in production | environments. | */ $config['base_url'] = 'http://localhost/project/';
If you can change the hooks settings in your config file from TRUE to FALSE that should help with your issue. Except if you have a very important need for the hooks to be enabled you should be very fine this way. $config['enable_hooks'] = TRUE; change to: $config['enable_hooks'] = FALSE; I hope this helps you.
Codeigniter error log not working
I want to log my details for log my application event. So i have changed config.php as follows. $config['log_threshold'] = 4; $config['log_path'] = 'application/logs/main'; $config['log_date_format'] = 'Y-m-d H:i:s'; I use it in my controller as like this. log_message('error', 'Some variable did not contain a value.'); I grant write permission to main file. bt it is not working. What is the issue.
log_path is meant to be a folder not a file. If main is a folder then you should add a trailing /
Opencart cart across multiple stores with different subdomains
Hi have a single opencart install setup with several stores with different subdomains (all under the same domain). I want customers to be able to put items in the cart on one site, then move onto the next and put in more or even subtract, till eventually a customer checkouts out on any store. Note products might appear in one store but not another. I notice opencart does this somewhat. ie it will bring products already in the cart to the next store but only if the products appear in both stores. Further if a customer then deletes one of the items and moves back to the same store, they product reappears. First Problem seems to firstly be products in the cart are being displayed through what i guess is a query that selects products by store_id. I have had a hard look to see if i can find anything but am at a loss. Second problem seems to be with the contents of the session. I am still learning php and am a bit confused of how to even attempt to modify how the session works. Can anyone please provide some guidance on how i can go about fixing/changing this.
OpenCart stores all these information in you PHP session. Since your stores are located under different subdomains, the PHP session changes when you switch from one store to another. So the first thing you need to do is to share the session between all subdomains. By default, PHP uses the 'PHPSESSID' cookie to propagate session data across multiple pages, and by default it uses the current top-level domain and subdomain in the cookie declaration. Example: www.domain.com The downside to this is that the session data can't travel with you to other subdomains. So if you started a session on www.domain.com, the session data would become unavailable on forums.domain.com. The solution is to change the domain PHP uses when it sets the 'PHPSESSID' cookie. Assuming you have an init file that you include at the top of every PHP page, you can use the ini_set() function. Just add this to the top of your init page: ini_set('session.cookie_domain', substr($_SERVER['SERVER_NAME'],strpos($_SERVER['SERVER_NAME'],"."),100)); This line of code takes the domain and lops off the subdomain. Example: forums.domain.com -> .domain.com Now, every time PHP sets the 'PHPSESSID' cookie, the cookie will be available to all subdomains! You might also need to make some little modifications to the OpenCart's core in order to make it work. Have fun :)
After Tohids help I have the following solution, hopefully it helps others. I added the cookie_domain code line to the session.php file and also added or changed the cookie name wherever the setcookie function was used to cover the currency and language cookies. open \system\session.php find; ini_set('session.use_cookies', 'On'); ini_set('session.use_trans_sid', 'Off'); insert after; ini_set('session.cookie_domain', substr($_SERVER['SERVER_NAME'],strpos($_SERVER['SERVER_NAME'],"."),100)); open \index.php find; if (!isset($request->cookie['language']) || $request->cookie['language'] != $code) { setcookie('language', $code, time() + 60 * 60 * 24 * 30, '/', $request->server['HTTP_HOST']); } replace with; if (!isset($request->cookie['language']) || $request->cookie['language'] != $code) { setcookie('language', $code, time() + 60 * 60 * 24 * 30, '/', substr($_SERVER['SERVER_NAME'],strpos($_SERVER['SERVER_NAME'],"."),100)); } find; if (isset($request->get['tracking']) && !isset($request->cookie['tracking'])) { setcookie('tracking', $request->get['tracking'], time() + 3600 * 24 * 1000, '/'); } replace with; if (isset($request->get['tracking']) && !isset($request->cookie['tracking'])) { setcookie('tracking', $request->get['tracking'], time() + 3600 * 24 * 1000, '/', substr($_SERVER['SERVER_NAME'],strpos($_SERVER['SERVER_NAME'],"."),100)); } open system\currency.php find; if (!isset($this->request->cookie['currency']) || ($this->request->cookie['currency'] != $currency)) { setcookie('currency', $currency, time() + 60 * 60 * 24 * 30, '/', $this->request->server['HTTP_HOST']); } replace with; if (!isset($this->request->cookie['currency']) || ($this->request->cookie['currency'] != $currency)) { setcookie('currency', $currency, time() + 60 * 60 * 24 * 30, '/', substr($_SERVER['SERVER_NAME'],strpos($_SERVER['SERVER_NAME'],"."),100)); }
Very Easy Solution! Share the login session across the subdomains OPEN FILE: system/library/session.php FIND LINE: session_set_cookie_params(0, '/'); APPEND : session_set_cookie_params(0, '/','.DOMAIN.COM); Make sure to include the period "." before DOMAIN.COM That's it... Now login sessions started on www.domain.com is shared with www.sub.domain.com
Making PHP GET parameters look like directories
I am trying to make it so: http://foo.foo/?parameter=value "converts" to http://foo.foo/value Thanks.
Assuming you're running on Apache, this code in .htaccess works for me: RewriteEngine on RewriteRule ^([a-zA-Z0-9_-]+)/$ /index.php?parameter=$1 Depending on your site structure you may have to ad a few rules though.
Enabling mod_rewrite on your Apache server and using .htaccess rules to redirect requests to a controller file. .htaccess # Enable rewrites RewriteEngine On # The following two lines skip over other HTML/PHP files or resources like CSS, Javascript and image files RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # test.php is our controller file RewriteRule ^.*$ test.php [L] test.php $args = explode('/', $_SERVER['REDIRECT_URL']); // REDIRECT_URL is provided by Apache when a URL has been rewritten array_shift($args); $data = array(); for ($i = 0; $i < count($args); $i++) { $k = $args[$i]; $v = ++$i < count($args) ? $args[$i] : null; $data[$k]= $v; } print_r($data); Accessing the url http://localhost/abc/123/def/456 will output the following: Array ( [abc] => 123 [def] => 456 )
Assuming you are using Apache, the following tutorials are epically helpful: .htaccess part one .htaccess part two The second tutorial has your answer. Prepare to dig deep into a dungeon called mod_rewrite.
Use mod rewrite rules if you are using Apache. This is better and secure way to make a virtual directory.