skip to Main Content

Install codeigniter in parallels plesk server

The server runs 5.4.3 PHP with FastCGI For Cpanel, it works perfectly, however, it fail in plesk server. Here is the .htaccess used: RewriteEngine on DirectoryIndex index.php RewriteCond $1 !^(index.php|assets|upload|robots.txt) RewriteRule ^(.*)$ /my_folder/index.php/$1 [L] In config file: $config['base_url'] = '';…

VIEW QUESTION

Remove index.php from url code is not working in codeigniter in Godaddy Plesk hosting?

I have tried with following code. <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_URI} ^system.* RewriteRule ^(.*)$ /index.php?/$1 [L] RewriteCond %{REQUEST_URI} ^application.* RewriteRule ^(.*)$ /index.php?/$1 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?/$1 [L] </IfModule> I have replaced with blank…

VIEW QUESTION

Error in pagination of codeigniter 1 – SEO

In model/rci_model.php public function record_count() { return $this->db->count_all("produk"); } public function fetch_countries($limit, $start) { $this->db->limit($limit, $start); $query=$this->db->query("SELECT * FROM produk WHERE id_kategori='Men' order by nama_produk ASC"); return $query->result(); if ($query->num_rows() > 0) { foreach ($query->result() as $row) { $data[] =…

VIEW QUESTION

SEO Friendly URL like Magento

We are developing an eCommerce store using CodeIgniter framework. We need category management module, is it possible? And I have one query example below: www.xyz.com/jewelry/ring This is default URL, we can update this URL like www.xyz.com/jewelry/ring-for-man Is it possible using…

VIEW QUESTION

Every two inputs of a row saved in a separate db row – Photoshop

I am using MySQL and PHP CodeIgniter. I want to implement something like this: --------------------------------------- Skill name: Photoshop | Skill level: 4 --------------------------------------- --------------------------------------- Skill name: CSS | Skill level: 3 --------------------------------------- --------------------------------------- Skill name: CorelDraw| Skill level: 4 ---------------------------------------…

VIEW QUESTION
Back To Top
Search