PDA

View Full Version : Fresh 4.1 install and can't see anything apart from admin section


Dugi
01-06-2009, 01:31 AM
I installed 4.1 and i can access admin but i can't see the main page
http://localhost/vivvo can't see anything there
http://localhost/vivvo/admin i can see everything and change all the settings

error_reporting = E_ALL is already in my php.ini and I get no errors

running this on localhost
php version 5.2.8
everything that is required apart from zlib and smtp is installed on my localhost
my conf file
<?php
define('VIVVO_URL', 'http://localhost/vivvo/');
define('VIVVO_LICENSE_CODE', '*******************');
define('VIVVO_DB_HOST', 'localhost');
define('VIVVO_DB_USER', 'root');
define('VIVVO_DB_PASSWORD', '**************');
define('VIVVO_DB_DATABASE', 'vivvo');
define('VIVVO_DB_PREFIX', '');
define('VIVVO_DB_TYPE', 'mysql');
define('VIVVO_DOMAIN', 'localhost');
define('VIVVO_FS_ROOT', realpath(dirname(__FILE__)) . "/");
define('VIVVO_FS_INSTALL_ROOT', VIVVO_FS_ROOT);
define('VIVVO_FS_PLUGIN_ROOT', VIVVO_FS_ROOT);
define('VIVVO_FS_LANG_ROOT', VIVVO_FS_ROOT);
define('VIVVO_FS_TEMPLATE_ROOT', VIVVO_FS_ROOT);
define('VIVVO_FS_ADMIN_ROOT', VIVVO_FS_ROOT);
define('VIVVO_FS_ADMIN_DIR', 'admin/');
?>

Any Ideas?

Dugi
01-06-2009, 01:52 AM
update
if i try to view it with firefox I get the following message:

Content Encoding Error
The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression.

The page you are trying to view cannot be

shown because it uses an invalid or unsupported form of compression.

* Please contact the web site owners to inform them of this problem.

shketuljko
01-06-2009, 08:15 AM
You need to enable zlib extension or you can comment/remove this code in VIVVO_ROOT/index.php file (around line 18):


if (ini_get('zlib.output_compression')){
ob_start();
}elseif (function_exists('ob_gzhandler')){
ob_start('ob_gzhandler');
}else{
ob_start();
}


and this line (around line 127):


ob_end_flush();

Dugi
01-06-2009, 12:11 PM
Thanks shketuljko it works now
now apart from "allow_call_time_pass_reference" error (I fixed it) I also get the following 2 errors:

How to fix that?

Notice: Undefined variable: output in D:\websites\vivvo\lib\vivvo\framework\full_page_ca che.functions.php on line 48

Notice: Undefined variable: uncached_boxes in D:\websites\vivvo\lib\vivvo\framework\full_page_ca che.functions.php on line 48

shketuljko
01-06-2009, 01:58 PM
This is not error this is notification.
Everything is OK now so just disable error reporting and use your Vivvo :)

Fami40
12-04-2010, 09:11 AM
I had similar problem.

I have commented the lines that he says shketuljko.

Now, I can see the main page and all the site, but pictures donīt shows.

I canīt see anything there under /admin

When I try to access to admin pages, I get message:

Content Encoding Error
The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression.

This mistake was due to having changed the password of the database.