Upload & Install, no website

GK User
Sun Sep 23, 2012 12:29 pm
I've uploaded esport, I configure it in the install ( NOTE NO PAGE TO INCLUDE ANY DEMO DATA DURING INSTALL)

I remove install folder and attempt to launch and there is nothing. just a blank page.

Back end opens fine. Front end is just not there at all.
User avatar
Fresh Boarder

GK User
Sun Sep 23, 2012 2:29 pm
Hi

First, please follow instructions to install the quickstart package on this page.

If you are doing all correct, you problem might be from your php version on your host.
Check this page on the official joomla support forum. The issue seams the same.
User avatar
Platinum Boarder

GK User
Sun Sep 23, 2012 11:19 pm
Seichinha wrote:Hi

First, please follow instructions to install the quickstart package on this page.

If you are doing all correct, you problem might be from your php version on your host.
Check this page on the official joomla support forum. The issue seams the same.



Sorry but this is an awful answer.. Furthermore, it's not even an answer. It's a hand off.

Of course I've installed everything correctly and of course my PHP is acceptable. I have other Joomla 2.5 installs on the same host. I've been a joomla developer for years and this is the first time I've had this happen.

Instead of redirecting me with a hand-off to a third party website or source, maybe I can get some help from the template company that I pay to be a member of. Because I've done everything right.
User avatar
Fresh Boarder

GK User
Mon Sep 24, 2012 1:46 am
Could You please take it easy.
I'm trying to help and i'm sure that i do not have a crystal ball to imagine what's wrong.

Most of the blank page after the installation is caused by an error from PHP side which is not displayed because there is display_errors directive set as off in php.ini file. In this case, you have to switch on displaying errors (if you have access to php.ini file) or in index.php in the next line after:

Code: Select all
<?php


Add the following fragment:
Code: Select all
ini_set('display_errors', 'On');
ini_set('error_reporting', E_ALL);


In other hand, if you have a white page with information about an error after template’s /Quickstart package installation, in most cases this message is connected with require_once function and inability of loading a file or information about inexistent class use. You have to upload file on a server once again because probably not all files were sent or saved correctly on your server.

If this doesn't help and if you have access to system logs, we can check error log where there should be all PHP errors written out with time and date its happening.
User avatar
Platinum Boarder


cron