Skip to Content Skip to Menu

CB 1.4X and above configuration field blank screen

  • borak
  • borak
  • OFFLINE
  • Posts: 4
  • Thanks: 0
  • Karma: 0
13 years 2 months ago - 13 years 2 months ago #173722 by borak
CB 1.4X and above configuration field blank screen


Hi guys, i've got a problem with my CB 1.4.x and above
I'm using joomla 1.5.23 and everything went well, perfect component instalation
All versions but I can not enter the field configuration. screen is blank and waiting.
- No forum so I called the resort
- Faqs (Blank page, white page, nothing, just nothing) description page there was not enough. I called the resort, so no.

Please help me,

My system info:

php:5.3.6
mysql:5.0.92-community
server:Linux
database collacation: utf8_general_ci
Last edit: 13 years 2 months ago by borak.

Please Log in or Create an account to join the conversation.

  • nant
  • nant
  • OFFLINE
  • Posts: 12339
  • Thanks: 1467
  • Karma: 877
13 years 2 months ago #173743 by nant
Upgrade to CB 1.7 and test again.

Check your server error logs.

Please Log in or Create an account to join the conversation.

  • borak
  • borak
  • OFFLINE
  • Posts: 4
  • Thanks: 0
  • Karma: 0
13 years 2 months ago #173746 by borak
Hi Mant;
Version 17 is already established. error_log but empty, there is still a blank screen. I'm tired now

Please Log in or Create an account to join the conversation.

  • nant
  • nant
  • OFFLINE
  • Posts: 12339
  • Thanks: 1467
  • Karma: 877
13 years 2 months ago #173756 by nant

borak wrote: Hi Mant;
Version 17 is already established. error_log but empty, there is still a blank screen. I'm tired now


I doubt server error log is really empty.
Turn on Joomla debug and check again.
The following user(s) said Thank You: borak

Please Log in or Create an account to join the conversation.

  • borak
  • borak
  • OFFLINE
  • Posts: 4
  • Thanks: 0
  • Karma: 0
13 years 2 months ago - 13 years 2 months ago #173759 by borak
I solved the problem, finally. As a result of long studies will hopefully help everyone.

Files that must be edited :

1- administrator\components\com_comprofiler\admin.comprofiler.html.php
2- administrator\components\com_comprofiler\imgToolbox.class.php

3- administrator\components\com_comprofiler\controller\controller.deault.php



1-
administrator\components\com_comprofiler\admin.comprofiler.html.php
find ;
$imageLibs=$imgToolBox->getImageLibs();
replace to;
$imageLibs = array ("imagemagick" => 0, "netpbm" => 0, "gd" => array("gd1" => 0, "gd2" => 1) );

2-
administrator\components\com_comprofiler\imgToolbox.class.php
find;
function getImageLibs(){

I completely disabled this function, you can leave if you want to
I put in front of the line tag (//)



3-
administrator\components\com_comprofiler\controller\controller.deault.php
find;
$imageLibs=$imgToolBox->getImageLibs();
replace to;
$imageLibs = array ("imagemagick" => 0, "netpbm" => 0, "gd" => array("gd1" => 0, "gd2" => 1) );


that's it
Last edit: 13 years 2 months ago by borak.

Please Log in or Create an account to join the conversation.

  • borak
  • borak
  • OFFLINE
  • Posts: 4
  • Thanks: 0
  • Karma: 0
13 years 2 months ago - 13 years 2 months ago #173763 by borak
Hello,
In Turkish summary for our solution :
Merhaba;
Community Builder 1.4X ve üzeri versiyonlarda çok kişinin karşılaştığı, konfigürasyon sekmesi boş ekran hatasına ilişkin çözüm aşağıdaki gibidir.



Ben 3 dosya üzerinde değişiklik yaptım. Ancak isteyenler sadece 2 dosya üzerinde değişiklik yaparak da çalıştırabilirler.
Her versiyonda satır numaraları değiştiği için satır numaralarını vermiyorum. İlgili dosyalarda " $imageLibs " olarak arama yaparsanız bu satırları kolayca bulabilirsiniz.

Değiştirilecek dosyalar:

1- administrator\components\com_comprofiler\admin.comprofiler.html.php
2- administrator\components\com_comprofiler\imgToolbox.class.php
3- administrator\components\com_comprofiler\controller\controller.deault.php

Hangi dosyanın hangi klasörde olduğuna lütfen dikkat edelim.
Değiştirilmesi gereken satırların önüne " // " tag ını koyarsanız hatta // tagından sonra adınızı ya da değiştirildi gibi bir ibare yazarsanız ilerde hangi satırları ne ile değiştirdiğinizi anlamanıza yardımcı olabilir.
Şimdi yapılacak işlemler;

1-
administrator\components\com_comprofiler\admin.comprofiler.html.php
dosyasında bulunacak satır ;
$imageLibs=$imgToolBox->getImageLibs();
değiştirilecek hali;
$imageLibs = array ("imagemagick" => 0, "netpbm" => 0, "gd" => array("gd1" => 0, "gd2" => 1) );

2- isterseniz bu adımda herhangi bir işlem yapmayabilirsiniz.
administrator\components\com_comprofiler\imgToolbox.class.php
dosyasında bulunacak satır ;

function getImageLibs(){
// do auto-detection on the available graphics libraries
// This assumes the executables are within the shell's path
$imageLibs= array();
// do various tests:
if ( true == ( $testIM = $this->testIM() ) ) {
$imageLibs = $testIM;
}
if (true == ( $testNetPBM = $this->testNetPBM() ) ) {
$imageLibs = $testNetPBM;
}
$imageLibs = $this->testGD();
return $imageLibs;
}


Ben bu fonksiyon ile ilgili tüm satırları tamamen devre dışı bıraktım. Çünkü bu fonksiyon sadece sunucunuzun GD desteğini test ediyor. Ben anlam veremedim açıkçası.
Diğer fonksiyona kadar olan Her satırın önüne ( // ) koymanız yeterli.



3-
administrator\components\com_comprofiler\controller\controller.deault.php
dosyasında bulunacak satır ;
$imageLibs=$imgToolBox->getImageLibs();
değiştirilecek hali;
$imageLibs = array ("imagemagick" => 0, "netpbm" => 0, "gd" => array("gd1" => 0, "gd2" => 1) );


umarım birilerinin işine yarar, kolay gelsin
Last edit: 13 years 2 months ago by borak.

Please Log in or Create an account to join the conversation.

Moderators: beatnantkrileon
Powered by Kunena Forum