TikiWiki installed and throws error

Problem:

I installed TikiWiki and I am getting the following error:

Notice: Only variable references should be returned by reference in /home/~/lib/adodb/adodb.inc.php on line 2741

Notice: Only variable references should be returned by reference in /home/~/lib/adodb/adodb.inc.php on line 2736

Notice: Only variable references should be returned by reference in /home/~/lib/adodb/adodb.inc.php on line 2736

Warning: Cannot modify header information - headers already sent by (output started at /home/~/lib/adodb/adodb.inc.php:2741) in /home/~/index.php on line 10

Solution:

You need to make the following changes to the ~/lib/adodb/adodb.inc.php:

Line 2736:
change-
  return $false;
to-
  $false1 = &$false;
  return $false1;

Line 2741:
change-
  return $arr;
to-
  $arr1 = &$arr;
  return $arr1;
  • 18 Users Found This Useful
Was this answer helpful?

Related Articles

Configuring the PHP Environment With php.ini

Problem: How do I change the PHP environment for my site with php.ini? Solution:   To...

PHP with FastCGI

Problem: What is FastCGI for PHP? Solution: FastCGI for PHP makes all your PHP applications...

Upload_Max_Filesize

Problem: How do I change my upload_max_filesize? Solution: Summary Locate the php.ini...

Cron Jobs with PHP Files

How do I run a php file using Cron jobs?   From the cPanel, click the Cron Jobs icon and enter...

Basic Site Security Checklist

Remove malicious files and/or files you are not familiar with. While many PHP applications...