CiviCRM Community Forums (archive)

*

News:

Have a question about CiviCRM?
Get it answered quickly at the new
CiviCRM Stack Exchange Q+A site

This forum was archived on 25 November 2017. Learn more.
How to get involved.
What to do if you think you've found a bug.



  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Installing CiviCRM »
  • Joomla! Installations (Moderator: Deepak Srivastava) »
  • Followed all instructions and still get blank page installing CiviCRM on Joomla
Pages: [1] 2

Author Topic: Followed all instructions and still get blank page installing CiviCRM on Joomla  (Read 8283 times)

penguinhead

  • I’m new here
  • *
  • Posts: 15
  • Karma: 0
Followed all instructions and still get blank page installing CiviCRM on Joomla
January 09, 2008, 02:11:17 pm
When I to install civiCRM on my Joomla website using the 'Upload from directory' option in the backend, it gives me a blank screen. If I try to refresh the screen or go back it just bounces me out of Joomla and I have to log back in. The CiviCRM doesn't appear in the Components menu, although it does create the following directories:

.../components/com_civicrm
.../administrator/components/com_civicrm

I have read all the forum posts I can find and have made all the suggested changes, but nothing seems to help. My configuration/setup details are as follows:

Host Provider: siteground.com
Joomla version: 1.0.13
CiviCRM version: civicrm-1.9.12432-joomla-php5.zip
Php version: 5.2.4
MySQL version: 5.0.45
Linux
Apache version: 1.2.37 (Unix)
php info: http://woolamaibeach.asn.au/phpinfo.php

Is anyone able to help or provide me with any suggestions on how to resolve this problem?

Regards
Mike W.

Dave Greenberg

  • Administrator
  • I’m (like) Lobo ;)
  • *****
  • Posts: 5760
  • Karma: 226
    • My CiviCRM Blog
Re: Followed all instructions and still get blank page installing CiviCRM on Joo
January 09, 2008, 06:13:54 pm
Have you checked the Apache error log for errors which might help pinpoint the problem?
Protect your investment in CiviCRM by  becoming a Member!

penguinhead

  • I’m new here
  • *
  • Posts: 15
  • Karma: 0
Re: Followed all instructions and still get blank page installing CiviCRM on Joomla
January 10, 2008, 03:35:09 am
Thanks for the response Dave, much appreciated.
I couldn't see anything in the logs that points to a problem, but I have attached an extract from the Raw Access Log, as well as the  latest error log file.

As I mentioned, there doesn't seem to be anything that indicates a problem, but please feel free to have a look yourself.

Regards

Mike

Dave Greenberg

  • Administrator
  • I’m (like) Lobo ;)
  • *****
  • Posts: 5760
  • Karma: 226
    • My CiviCRM Blog
Re: Followed all instructions and still get blank page installing CiviCRM on Joo
January 10, 2008, 02:24:25 pm
Don't see any clues in those logs. Might help if you detail out the steps you take to get the blank screen. Also, does the rest of the Joomla admin interface work properly? Are there directories and files in .../administrator/components/com_civicrm? You should have a civicrm.settings.php file along with a bunch of sub-directories etc.

Hopefully some of our more experienced Joomla folks will jump in here as well with additional thoughts.
Protect your investment in CiviCRM by  becoming a Member!

lcdweb

  • Forum Godess / God
  • I live on this forum
  • *****
  • Posts: 1620
  • Karma: 116
    • www.lcdservices.biz
  • CiviCRM version: many versions...
  • CMS version: Joomla/Drupal
  • MySQL version: 5.1+
  • PHP version: 5.2+
Re: Followed all instructions and still get blank page installing CiviCRM on Joo
January 11, 2008, 02:31:31 pm
Siteground is your problem. Their default settings for memory_limit is 16m and max_execution_time is like 30 -- both of which are inadequate for most uses, nevermind CiviCRM's needs which are greater than most. Further, they don't allow you to change those settings or override them with a local php.ini file, so you're stuck with their system-wide settings.

I have successfully installed CiviCRM and got it running on a couple siteground sites, but it's a pain. I believe what I did (it was a while ago) is setup a test server locally, install CiviCRM, and then upload the CiviCRM files. You'll also need to run the sql file from phpmyadmin on the server to take care of the db component. Lastly, you'll need to adjust the civicrm.settings.php file in components/com_civicrm and administrator/components/com_civicrm to make sure they coordinate with your server settings (they will have been installed to your test server settings).

A pain, I know, but that may be the only way to make it work. As another option, ditch Siteground and go with a shared hosting provider that gives you control over php settings (or at least has more reasonable default settings). Bluehost is my recommendation.

-Brian
support CiviCRM through 'make it happen' initiatives!
http://civicrm.org/mih

penguinhead

  • I’m new here
  • *
  • Posts: 15
  • Karma: 0
Re: Followed all instructions and still get blank page installing CiviCRM on Joomla
January 12, 2008, 09:10:57 pm
Thanks for the feedback Brian. However I did create a php.ini file in the the /public_html/com_civicrm/ directory with the following in it:
max_execution_time = 600;
memory_limit = 100M;

... and it did seem to update the config as you can see at http://woolamaibeach.asn.au/phpinfo.php

ANY OTHER SUGGESTIONS ON WHAT I COULD TRY NEXT - ANY HELP WOULD BE MOST APPRECIATED!

thx Mike

lcdweb

  • Forum Godess / God
  • I live on this forum
  • *****
  • Posts: 1620
  • Karma: 116
    • www.lcdservices.biz
  • CiviCRM version: many versions...
  • CMS version: Joomla/Drupal
  • MySQL version: 5.1+
  • PHP version: 5.2+
Re: Followed all instructions and still get blank page installing CiviCRM on Joo
January 12, 2008, 10:32:05 pm
If Siteground now lets you control those settings, that's news for me. Good news, though, as I still have a couple sites hosted with them.

Anyway, the php.ini file only overrides the default server settings for the folder it resides in. Take a look at this post in which I gave details for how to populate the php.ini file throughout your entire site (to ensure the higher values for those two settings are working in the correct folders to handle the CiviCRM installation).

Code: [Select]
http://forum.civicrm.org/index.php/topic,1974.0.html
support CiviCRM through 'make it happen' initiatives!
http://civicrm.org/mih

shaz84

  • Guest
Re: Followed all instructions and still get blank page installing CiviCRM on Joomla
February 04, 2008, 10:27:52 am
Hi

I am getting the same problem. I should point out mine is a localhost install.

http://forum.civicrm.org/index.php/topic,2230.0.html

Shaz xx

deciofabio

  • I’m new here
  • *
  • Posts: 9
  • Karma: 0
Re: Followed all instructions and still get blank page installing CiviCRM on Joo
March 26, 2008, 07:39:24 pm
Same , exactly problem.
Joomla 1.0.14 stable
I installed civicrm2.01 in order to get the facilities of civimail.
Unfortunately after some problems of installing, i had a perfect installation and suddenly: blank page!
Not even a single error message! Only blank page.
I checked the php versions etc, all ok.
Any help?
Decio ???

Dave Greenberg

  • Administrator
  • I’m (like) Lobo ;)
  • *****
  • Posts: 5760
  • Karma: 226
    • My CiviCRM Blog
Re: Followed all instructions and still get blank page installing CiviCRM on Joo
March 27, 2008, 08:45:46 am
Blank page generally means a PHP error - often insufficient memory. You'll need to check your PHP and webserver (Apache) error logs to figure out the exact cause of the problem.
Protect your investment in CiviCRM by  becoming a Member!

sungoddess

  • Guest
Re: Followed all instructions and still get blank page installing CiviCRM on Joo
March 29, 2008, 01:06:12 pm
I am experiencing this as well, but I got an earlier version of CiviCRM to work on another host. 1.9 it was.

What would I need to request from the hosting support people?


Or before I get to that point, what would I need to put in a local php.ini file and where on the server would I ordinarily put it?

sungoddess

  • Guest
Re: Followed all instructions and still get blank page installing CiviCRM on Joo
April 05, 2008, 02:39:50 pm
Respectfully bumping.

Desperate to get this to work.

lcdweb

  • Forum Godess / God
  • I live on this forum
  • *****
  • Posts: 1620
  • Karma: 116
    • www.lcdservices.biz
  • CiviCRM version: many versions...
  • CMS version: Joomla/Drupal
  • MySQL version: 5.1+
  • PHP version: 5.2+
Re: Followed all instructions and still get blank page installing CiviCRM on Joo
April 05, 2008, 04:13:20 pm
Find out from your hosting provider if and how they let you override default php settings. Some allow via .htaccess, some through php.ini. The two most important settings are memory_limit (I'd recommend at least 64mb) and max_execution_time (at least 300, I usually set to 600).

-Brian
support CiviCRM through 'make it happen' initiatives!
http://civicrm.org/mih

montano

  • Guest
Re: Followed all instructions and still get blank page installing CiviCRM on Joo
April 07, 2008, 02:38:20 pm
Just an FYI:  I had been trying to upgrade from 1.9 to 2.0 now 2.0.2 with no joy.  Lot's a snafus along the way.  I had to remember that I'd upgraded my Joomla site from 1.0.14 to 1.0.15 which meant I had to put the hack back in the index.php I tried to upgrade, no joy.  Then I tried and tried to  do a fresh install but just got the blank screen.  Then I remembered a note regarding upgrading and deleting the civicrm files in the media folder.  Well I did that, reinstalled (which created a fresh civicrm folder in media) and no more blank screen.  Now my problem is the css doesn't seem attached.  I'll hunt that down or post another thread.

lcdweb

  • Forum Godess / God
  • I live on this forum
  • *****
  • Posts: 1620
  • Karma: 116
    • www.lcdservices.biz
  • CiviCRM version: many versions...
  • CMS version: Joomla/Drupal
  • MySQL version: 5.1+
  • PHP version: 5.2+
Re: Followed all instructions and still get blank page installing CiviCRM on Joo
April 07, 2008, 02:49:47 pm
I just had an issue with css too. Turns out I had done a template override of the joomla.tpl file (in the common folder). That file has several modifications since 1.9, including some javascript and css linked files. I fixed that (actually just got rid of my override file) and it fixed the css issues.

Love having template  overrides, but I have to remember to do file comparisons periodically with current versions to ensure I'm not missing anything important.
support CiviCRM through 'make it happen' initiatives!
http://civicrm.org/mih

Pages: [1] 2
  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Installing CiviCRM »
  • Joomla! Installations (Moderator: Deepak Srivastava) »
  • Followed all instructions and still get blank page installing CiviCRM on Joomla

This forum was archived on 2017-11-26.