Re: CI CRUD - routes Programming Web Development by cereal …when you try to access your `ci` controller you do something like this: http://website.tld/ci/ci/ Correct? > I only …routes 2 controllers in my routes: ci and caddLatihan. (only ci works) If it was the .htaccess then your… `ci` controller should not work either, so do not change … Re: CI application Programming Web Development by LastMitch … saw there are two folders: site & admin folders in CI application folder. If someone created those 2 folders, then you… being rude but you been posting these ridiculous questions about CI when you can look at their guides & forum. …There are tutorial on CI but you seen want to get a quick answer/code… Re: CI application Programming Web Development by davy_yg Well, I have been reading the CI guides. The CI tutorials from google also a good idea. I have asked … I keep asking too much about the programming side of CI. So I thought I am looking for another source to… help me. I receive this errors when I run the CI program after seperating the site and admin in application folders… Re: CI CRUD - routes Programming Web Development by davy_yg Now, I only routes 2 controllers in my routes: ci and caddLatihan. (only ci works) ci is my CI installation directory. How to edit my .htaccess? CI application Programming Web Development by davy_yg Hello, I am trying to understand the CI code that somebody made. I saw there are two folders: site & admin folders in CI application folder. I wonder why? Is it to separate the site and admin page? Is that possible? Re: CI CRUD - routes Programming Web Development by cereal Davy: 1. are you able to directly open this link? 2. do you experience this problem just with these two controllers or it is a common issue to all controllers? I see you're using a different link now: /ci/caddLatihan/ If your CI installation is inside `/ci/` then you should edit your .htaccess files in order to reflect the path. Re: CI application Programming Web Development by PixelatedKarma I dont really dabble to much in CI, however what you have is a broken require link. Basically … Re: CI application Programming Web Development by Tpojka It is custom made file system, not CI native. You need to be sure if site folder is … Re: CI application Programming Web Development by GliderPilot If you're going to change the folder names for the application and system folders you need to go into the main CI index.php file and change those values to your new file names. Re: CI CRUD - routes Programming Web Development by davy_yg …; <button type="button" onClick="parent.location='/ci/caddLatihan/'">Add Latihan</button><br…;head> <title>File View untuk Latihan 2 CI </title> </head> <body> <… CI image downloading Programming Web Development by veledrom …->load->helper('download'); // $filepath below produces http://localhost/CI/upload/82df53aae33450324bd26cd880d678b5.png $filepath = base_url() . 'upload/' . $this->uri->… CI site in a subdomain, shows index of page instead of the site Programming Web Development by cgull … a sub domain. I have a site I developed with ci 2.1.3 My folders structure is: c:\sites\mysite… CI CRUD - routes Programming Web Development by davy_yg …, I am still having problem with this basic stuff in CI: viewlatihanci.php <button type="button" onClick="… Re: CI CRUD - routes Programming Web Development by cereal …/user_guide/installation/upgrade_200.html) My opinion: since you're using CI it is highly convenient to switch to the last version… Re: CI CRUD - routes Programming Web Development by davy_yg Looks like I am using CI 1.7.2 temporarily. where is the .htaccess located? I try to insert: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] in order to delete the index.php Re: CI CRUD - routes Programming Web Development by davy_yg Nevermind. I migrate to the newest version of CI - CI3: Now, I am having this error: A PHP Error … Re: CI CRUD - routes Programming Web Development by davy_yg ok, I re-migrate to CI 2.2.1 Here is my errors: A PHP Error … Re: CI CRUD - routes Programming Web Development by davy_yg …;head> <title>File View untuk Latihan 2 CI </title> </head> <body> <… Re: CI CRUD - routes Programming Web Development by davy_yg …;head> <title>File View untuk Latihan 2 CI </title> </head> <body> <… Re: CI CRUD - routes Programming Web Development by davy_yg …;head> <title>File View untuk Latihan 2 CI </title> </head> <body> <… Re: CI CRUD - routes Programming Web Development by cereal …. Also: use `$this->input->post()` instead of `$_POST`, CI will sanitize the data through the input class. Last: don… Re: CI CRUD - routes Programming Web Development by davy_yg …'); return $this->db->insert('latihan', $this); } } ?> database: ci table: latihan id isi 1 contoh latihan pertama 2 contoh… Re: CI CRUD - routes Programming Web Development by cereal … week](https://www.daniweb.com/web-development/php/threads/492210/ci-crud-routes#post2155634), are you loading the form helper in… Re: ci pagination helper Programming Web Development by veedeoo …get the total count it can work on CI. Below is a classic CI pagination calls $count = 'Count of ….php $route['NameOfYourController/:num'] = 'ControllerClassName'; I love CI because it was my training ground. Unlike other frameworks…, CI allows us to load libraries as needed and … Re: CI 3.0 is out Programming Web Development by iamthwee … Rick Ellis. Their flagship product 'expression engine' is built on CI so one wonders about the link between… Re: CI error Programming Web Development by cereal … An alternative approach is described here: * https://github.com/bcit-ci/CodeIgniter/wiki/Multiple-Applications Instead of rewriting the URLs you… is the HMVC approach, but I haven't tested with CI 3.*, for more information see: * https://bitbucket.org/wiredesignz/codeigniter… Re: CI Model Programming Web Development by LastMitch >Out of these two tables, I am trying to create two table. How to create the model file, controller and the view files that organize the information in a neat table? **@davy_yg** Can you explain to me why you need to nest a table? I assuming you are doing a e-comm website with CI? Re: CI 3.0 is out Programming Web Development by DJBirdi Good lord it's about time! EllisLab made us wait forever for v3. To be honest though, I have a few large projects built on CI and I'm kinda afraid to upgrade because of all the horror stories I've heard about things breaking with framework upgrades. Once a stable version is out, I'll probably be using it for my next project though. Re: CI error Programming Web Development by cereal > like how? Download this file: * https://github.com/bcit-ci/CodeIgniter/archive/3.1.3.zip or download the version you are using. Extract, browse up to `application/views/` and copy the **errors** directory, with all the contents, into your `application/site/views/` directory. Re: Web error - CI Programming Web Development by veedeoo …a pretty simple quidelines on the basics of CI. You can either do it like this …</html> we can also use the CI suggested syntax for foreach like this <?php foreach…the naming convention I used for the controller, CI is smart enough to find it. I will …'t create a route for it, because CI will look for the Myapp controller class in…