-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I’ve using the following htaccess script so that i can hide index.php from the uri.
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
But i’ve facing a major problem…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hey,
I got a working webpage with CodeIgniter. I did now just upload it to my webserver and it gives me a 404 error.
The browser address is "web-page.com/folder/en/about"
The baseurl in the config is "web-page/folder/"
Also this is in the config.php, I did try AUTO but it does not work either…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have developed a simple site that fetches tweets from the Twitter public timeline, caches them for 60 seconds and so on. I have recently moved hosts from Hostgator to Mediatemple and my site was previously working fine on Hostgator.
My application doesn't use a database connection, nor does it…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I'm trying to pass parameters to a control in codeigniter, but I'm getting 404 page not found error, I don't get it, I did what the guide says: http://codeigniter.com/user_guide/general/controllers.html#passinguri
<?php
class Main extends Controller {
function index($username) {
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
Im trying to learn the code igniter library and object oriented php in general and have a question.
Ok so Ive gotten as far as making a page which loads all of the rows from my database and in there, Im echoing an anchor tag which is a link to the following structure.
[code]echo anchor("videos/video/$row-video_id"…
>>> More