3
votes
4answers
170 views

Best location for a websites CMS

As part of my job I recently started making numerous content management systems for websites. So many that obviously my next step was to set up a 'template' for the websites so I could quickly remove ...
2
votes
1answer
66 views

How to find data usage of a user on my website?

I have a website (project) where users get logged in, do their work and then they log out. I need to build a report that displays how much each person has used of data. (bandwith, how much was ...
2
votes
1answer
361 views

Add email attachments by URL in CodeIgniter [closed]

I tried this code to attach a file in CI. This is working: $this->load->library('email'); $this->email->from('[email protected]', 'vignesh'); $this->email->subject('Email Test with ...
0
votes
3answers
840 views

Want to create dynamic subdomain in codeigniter? [closed]

In my site i want to add an functionality for user to use their username with domain. Like in codeigniter right now i want to give the user to use their own url to login in site and do other stuff. ...
0
votes
0answers
582 views

How do I delete the Facebook user cookie? [closed]

If I logout in my application the user is logged out in my application but not in Facebook. When I login again via Facebook the same user cookies are used to login again - I need a different user to ...
1
vote
2answers
220 views

.htaccess is not working in lease web hosting

.htaccess is not working. http://www.example.com/index.php/user -- is working http://www.example.com/user --- is not working the following file is my .htaccess file. RewriteEngine on RewriteCond ...
1
vote
1answer
299 views

.htaccess is not working in vps hosting

what is solution to create a .htaccess file in vps. I have tried most of the .htaccess file.but it doesnt work in vps. What is the solution? here is the code of htaccess file. RewriteEngine on ...
1
vote
1answer
123 views

Routing and relative paths

CodeIgniter and many other PHP frameworks rout URLs, e.g. if default controller is root.php then both URLs will work website.com/ website.com/root if controller has a function 'login' then this URL ...
3
votes
1answer
2k views

Setting file permissions on linux to allow PHP to write to a directory

I have a website built with Codeigniter and hosted on a Linux box. I am trying to follow "best practices" when it comes to my file permission settings, but I'm not sure if I completely understand the ...
1
vote
2answers
352 views

File permission problem with codeignitor project using xampp

I am currently using Codeignitor as my PHP framework with XAMPP. I always keep all my files in c:/xampp/htdocs/. The settings are working fine in my own localhost machine. But when I load the same ...
1
vote
1answer
962 views

Facebook Connect with CodeIgniter login problems

Im having a problem using Facebook Connect on my latest website. Im running it using the CodeIgniter framework and Elliot Haughin's library (http://www.haughin.com/code/facebook/). Everything is ...