Welcome Guest, Not a member yet? Register   Sign In
AssetLibPro - An advanced CI Asset Library
#53

[eluser]Andreia M.[/eluser]
I must be doing something wrong here.

The page loads OK, but no CSS or JS works - it generates the output, it caches the file, all is apparently working, but it's the same as if the page had no CSS at all. I even checked the compressed file - it looks OK. I turned GZIP compression off, as my host does not have it on. Could that be it? Apparently it *is* generating the files as it should, but Safari and Firefox don't seem to recognize it.

Code:
<?php  if (!defined('BASEPATH')) exit('No direct script access allowed');
/**
* AssetLibPro - A CodeIgniter Asset Class
*
* @version of AssetLibPro:    1.0.5
*/

/*
|--------------------------------------------------------------------------
| Asset storage
|--------------------------------------------------------------------------
|
| The path to where to storage the joined assets.
| alp_cache_dir_css = "/assets/compressed/" (as example)
|
*/
$config['alp_asset_dir'] = '/';//TRAILING SLASH!
$config['alp_cache_dir_css'] = '/compressed/';//TRAILING SLASH!
$config['alp_cache_dir_js'] = '/compressed/';//TRAILING SLASH!

...

/*
|--------------------------------------------------------------------------
| Toggle CSSTidy/JSMin Compression
|--------------------------------------------------------------------------
|
| Whether to run compression using csstidy or jsmin
|
*/
$config['alp_enable_csstidy'] = TRUE;
$config['alp_enable_jsmin'] = TRUE;

/*
|--------------------------------------------------------------------------
| Toggle GZip Compression
|--------------------------------------------------------------------------
|
| Whether to compression the output using gzip
|
*/
$config['alp_gzip_compress_css'] = FALSE;
$config['alp_gzip_compress_js'] = FALSE;

/*
|--------------------------------------------------------------------------
| Toggle Browser Caching
|--------------------------------------------------------------------------
|
| Whether to force the browser to cache the files
| (Even with caching enabled web browsers will still detect changes automatically!)
|
*/
$config['alp_force_cache_css'] = TRUE;
$config['alp_force_cache_js'] = TRUE;

...

$config['alp_csstidy_basepath']    = "/plugins/csstidy/";

$config['alp_csstidy_config'] = array(
                                  'remove_bslash' => TRUE,
                                  'compress_colors' => TRUE,
                                  'compress_font-weight' => TRUE,
                                  'lowercase_s' => FALSE,
                                  'optimise_shorthands' => 1,
                                  'remove_last_,' => TRUE,
                                  'case_properties' => 1,
                                  'sort_properties' => FALSE,
                                  'sort_selectors' => FALSE,
                                  'merge_selectors' => 2,
                                  'discard_invalid_properties' => FALSE,
                                  'css_level' => 'CSS2.1',
                                  'preserve_css' => FALSE,
                                  'timestamp' => FALSE
                                 );
$config['alp_csstidy_template'] = "highest_compression";

/*
|--------------------------------------------------------------------------
| JSmin Config
|--------------------------------------------------------------------------
|
| Enter the path to your jsmin.php file. (relative from BASEPATH)
|
| jsmin = "/system/plugins/jsmin1.1.1.php" (as example)
|
*/
$config['alp_jsmin']    = "/plugins/jsmin.php";
?>

Code:
In the controller's constructor:

$this->load->config('assetlibpro');
$this->load->library('assetlibpro');

In the controller's index (which is the one function that uses it, currently):

$this->assetlibpro->add_css('css/e3.css');
$this->assetlibpro->add_css('css/lightwindow.css');
$this->assetlibpro->add_js('scripts/scriptaculous.js');
$this->assetlibpro->add_js('scripts/prototype.js');
$this->assetlibpro->add_js('scripts/lightwindow.js');

Code:
<?php
    echo $this->assetlibpro->output('all');
?>

Code:
View >> Source code of the view:

<link rel="stylesheet" href="http://mybaseurl/compressed/css_screen_829ee1f3_287bcf01_09d4b6a4.php" type="text/css" media="screen" />


Messages In This Thread
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-08-2008, 04:59 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-08-2008, 12:59 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-08-2008, 01:31 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-08-2008, 01:35 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-08-2008, 01:41 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-08-2008, 02:10 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-08-2008, 02:18 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-08-2008, 02:22 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-08-2008, 02:31 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-08-2008, 02:37 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-08-2008, 02:50 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-22-2008, 08:17 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-22-2008, 08:29 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-28-2008, 12:05 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-28-2008, 05:57 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-28-2008, 06:50 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-28-2008, 06:55 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-31-2008, 04:07 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 06-02-2008, 07:10 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 06-02-2008, 09:05 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 06-02-2008, 11:20 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 06-03-2008, 06:00 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 06-03-2008, 08:11 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 08-01-2008, 12:19 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 08-01-2008, 07:19 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 08-01-2008, 09:21 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 08-02-2008, 02:41 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 08-02-2008, 05:44 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 08-05-2008, 09:38 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 08-05-2008, 04:12 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 11-05-2008, 11:24 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 11-06-2008, 02:28 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 11-06-2008, 08:34 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 11-06-2008, 09:09 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 11-06-2008, 10:27 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 11-06-2008, 12:33 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 11-06-2008, 12:47 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 11-06-2008, 04:24 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 11-06-2008, 09:30 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 11-07-2008, 03:42 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 11-09-2008, 02:49 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 11-23-2008, 02:17 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 12-23-2008, 06:30 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 01-09-2009, 07:51 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 01-09-2009, 09:55 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 01-14-2009, 12:13 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 01-28-2009, 07:51 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 01-30-2009, 08:16 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 03-04-2009, 08:37 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 03-05-2009, 08:23 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 03-05-2009, 08:49 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 03-06-2009, 03:02 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 06-11-2009, 03:28 PM
AssetLibPro - An advanced CI Asset Library - by El Forum - 07-23-2009, 02:51 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 07-23-2009, 07:19 AM
AssetLibPro - An advanced CI Asset Library - by El Forum - 05-30-2010, 04:23 PM



Theme © iAndrew 2016 - Forum software by © MyBB