Blank page after moving online site

Permalink
This site perfectly works on localhost but online outputs 1 line empty source, dashboard and login works.

This is taken from server log (aruba.it)
[Wed Jan 08 12:15:21 2014] [error] [client xx.xxx.xxx.xxx] File does not exist: /web/htdocs/www.domain.it/home/favicon.ico

This is .htaccess

# -- concrete5 urls start --
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /parziale/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>
# -- concrete5 urls end --

And this is site.php
<?php
define('DB_SERVER', 'xx.xxx.xxx.xxx');
define('DB_USERNAME', 'Sql000000');
define('DB_PASSWORD', '12345678');
define('DB_DATABASE', 'Sql000000_4');
define('BASE_URL', 'http://www.domain.it');
define('DIR_REL', '/parziale');
define('PASSWORD_SALT', 'xxx...');
define('LOCALE', 'it_IT');

 
JohntheFish replied on at Permalink Reply
JohntheFish
A common issue with development to online moves is windows to UX case sensitivity.
See:
http://www.concrete5.org/marketplace/addons/database-case-sensitivi...

My Backup Voodoo addon integrates with the above to automatically sort out case when a backup is taken:
http://www.concrete5.org/marketplace/addons/backup-voodoo/...
accountconcrete5 replied on at Permalink Reply
No database is correct...I've checked online...
JohntheFish replied on at Permalink Reply
JohntheFish
Please clarify. Can you access the c5 dashboard for the online site?

If so, are the pages in the sitemap?

Have you cleared/disable pretty urls and the c5 cache?

You need to tell us a bit more about how you are set up. Is it running in a subdirectory or subdomain?

Is that .htacces copied from your dev system?
accountconcrete5 replied on at Permalink Reply
Yes, dashboard works on the online site, also sitemap, pretty url disabled, cleared cache a lot of time (also deleting manually from ftp files/cache folder).
It is running on a subdirectory called parziale in the root of the site.
The .htaccess is the online one.


P.S.
The local site works perfect.
I also noticed that others concrete5 themes works, mine not.
cherrycake replied on at Permalink Reply
cherrycake
dashboard works ok? if so, it sounds like there's something wrong with the site implementation. maybe try creating a new empty page that uses the default out of the box theme and see if it works.
accountconcrete5 replied on at Permalink Reply
Yes new pages with my custom theme appears but concrete sidebar is invisible...
cherrycake replied on at Permalink Reply
cherrycake
okay so an empty page + default theme works good and empty page + your theme works but doesn't show the concrete5 interface even though you are logged in? any javascript errors? otherwise, i'd try and backtrack by removing areas etc from your theme and see when it starts working.
accountconcrete5 replied on at Permalink Reply
Thank you very much for your suggestion, I've discovered that is a problem with global areas.

<?php 
   $a = new GlobalArea('Sidebar');
   $a->display($c);
?>
cherrycake replied on at Permalink Best Answer Reply
cherrycake
okay. my guess is that maybe it's not the global area itself but one (or more) of the blocks inside them?

maybe try removing the content from the Sidebar block from the Dashboard and hopefully it's one of the blocks causing the error?

should be located at /index.php/dashboard/blocks/stacks/
accountconcrete5 replied on at Permalink Reply
Thanks, the problem seems to be sortable fancybox gallery plugin...If i add more then a few image it crashes...

EDIT:
The problem was gallery pictures too big.