hello,
thank you very much for your reply.
i have re-download and re-installed carbogrid and the problem i am getting now is different.
when i click on ‘Single grid’ or ‘Multiple grid’ it just loads the homepage again (even though the url looks like http://mysitename.com/subdirectory/sample/single and http://mysitename.com/subdirectory/sample/multiple resp.).
steps i followed per readme.txt instructions:
1. Edit application/config/config.php
- set your site URL here: $config[‘base_url’] = “http://mysitename.com/subdirectory/”;
2. Import database
- create a new database (i already had a database)
- run database.sql ( i did not do this because i already had a database)
3. Setup database connection: (yes i did this)
- edit system/application/config/database.php:
$db[‘default’][‘hostname’] = “your_host”;
$db[‘default’][‘username’] = “your_user”;
$db[‘default’][‘password’] = “your_db_password”;
$db[‘default’][‘database’] = “your_db_name”;
4. To test file upload create files and files/temp folders and make sure that they are writeable (files is 755, and files/temp is 755)
5. Get rid of index.php from URL (apache mod_rewrite required)
- if application is not in your server root, edit last line in htaccess.txt: RewriteRule ^(.*)$ /path/to/app/index.php/$1 [L]
my htaccess at http://mysitename.com/subdirectory/.htaccess looks like:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /home/username/public_html/subdirectory/index.php/$1 [L]
- edit system/application/config/config.php: $config[‘index_page’] = “”;
yes i did this.
- rename htaccess.txt to .htaccess
yes i did this.
please see attached config.php file. [edit: forum won’t allow me to attach files).
thank you very much.
ps there also seems to be typos in the readme.txt file. there are incorrect references to:
system/application/config/database.php
system/application/config/config.php
the ‘application’ folder is not in the ‘system’ folder.