My gallery2 intergration in PHPNuke 7.6 leave blank.
The gallery2 installation is in "html/gallery2"
The PHPNuke installation is in "html"
The g2data is in the directory "html/g2data"
The directory html is de root off my website.
This is the config.cfg
<?
$g2embedparams = array (
'embedphpfile' => '/var/www/html/gallery2',
'embedUri' => 'http://my.website/modules.php?name=gallery2',
'relativeG2Path' => '../g2data/',
'loginRedirect' => 'modules.php?name=Your_Account',
'activeUserId' => '0',
);
$g2mainparams = array (
'showSidebar' => NULL,
);
$g2configurationdone = "true"?>
wat I kan do?
Posts: 32509
jadijk, the phpnuke integration is out of date, but maybe it still works with the correct params:
<?
$g2embedparams = array (
'embedphpfile' => '/var/www/html/gallery2',
'embedUri' => 'modules.php?name=gallery2',
'embedPath' => '',
'relativeG2Path' => 'g2data/',
'loginRedirect' => 'modules.php?name=Your_Account',
'activeUserId' => '0',
);
$g2mainparams = array (
'showSidebar' => NULL,
);
$g2configurationdone = "true"?>
and if that doesn't work, try 'embedphpfile' => '/var/www/html/gallery2/embed.php',
Posts: 2
I have trayed your sugestion still blank.
wath are you mean with phpnuke intergration out of date?
Posts: 32509
that means that it hasn't been updated for a while...
do you have a url to show me this blank page?