Login     Sign up
Wolf X Halton (@wolf29)
79 months ago
1404 Views

I have installed jcow from softaculous, and it returns a blank white page. Should I use a different install method. Community version.
Have checked ./my/config.php and it is pointed into the right folder in the domain.

2 people followed this question
0

Same issue here.

JMJ @jmj007
78 months ago
@jmj007 set in index.php ini_set('display_errors', 1); and try again
78 months ago
@jmj007 Fatal error: Uncaught Error: Function name must be a string in /home/marqu736/public_html/wndrr.com/jcow/free/index.php:38 Stack tra
78 months ago
@jmj007 my hosting service has the supported versions of PHP and MySQL (5.6.31 and 5.6.37 resp.)
78 months ago
@falcone ce: #0 {main} thrown in /home/marqu736/public_html/wndrr.com/jcow/free/index.php on line 38
78 months ago
@shigeru my hosting service has the supported versions of PHP and MySQL (5.6.31 and 5.6.37 resp.)
78 months ago
@jmj007 try this in index.php
78 months ago
@jmj007 if (is_numeric($parr[1])) { //$app->index($parr[1],$parr[2]); call_user_func(array($app,'index'),$parr[1],$parr[2]); }
78 months ago
@jmj007 else { if (!($parr[1])) { call_user_func(array($app,'index')); } else { call_user_func(array($app,$parr[1]),$parr[2],$parr[3]);} }
78 months ago
@jmj007 remove this from the first line //$app->index($parr[1],$parr[2]);
78 months ago
@falcone ok thx, that worked. What did it fix pls?
78 months ago
@jmj007 there was a problem with this line $app->$parr[1]($parr[2],$parr[3]);. $parr[1] as a function/method was not accepted
78 months ago
I did like this: $app->{$parr[1]}($parr[2],$parr[3]);
78 months ago
0

set in index.php ini_set('display_errors', 1); and try again

Jcow Master @falcone
78 months ago
0

please am having the same problem, can you please help me out?

<?php
/ ############################################################ \

Jcow Software (http://www.jcow.net)
IS NOT FREE SOFTWARE
http://www.jcow.net/commercial_license
Copyright (C) 2009 - 2010 jcow.net. All Rights Reserved.

* ############################################################ /
// boot
error_reporting(E_ERROR | E_PARSE);
ini_set('display_errors', 0);
header("Access-Control-Allow-Origin:
");
header('Access-Control-Allow-Methods: GET, PUT, POST, DELETE, OPTIONS');
header('Access-Control-Allow-Headers: Content-Type, Authorization, X-Requested-With');
function microtime_float()
{
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}

//
$time_start = microtime_float();

require_once './includes/boot.inc.php';

// load application
$app = new $parr[0]();
$app->name = $parr[0];
if (is_numeric($parr[1])) {
$app->index($parr[1],$parr[2]);
}
else {
if (!$parr[1]) {
$app->index();
}
else {
$app->$parr1;
}
}

// end
stop_here();
?>

thanks

Matthew dele @teemone2018
70 months ago
@teemone2018 ini_set('display_errors',1);
70 months ago