No Thumbs or Images after embedding into PhpNuke 7.5
madvoc
![]()
Joined: 2005-04-14
Posts: 6 |
![]() |
The gallery works fine as long as I don't view it through php nuke. Problem: No Thumbs or Images. If I remove the ".phpmodules" from the image link in the browser then it works. Info: Question --> Where is "modules.phpmodules" coming from? I know its in the embed files somewhere I just got tired of looking... ;-) |
|
valiant
Joined: 2003-01-04
Posts: 32509 |
![]() |
what do you use as embedPath, embedUri, relativeG2Path? |
|
madvoc
![]()
Joined: 2005-04-14
Posts: 6 |
![]() |
<? The gallery is installed in the phpnuke75/modules/gallery2 Reinstalled nuke and gallery -> The location of the thumbs and images now show this --> |
|
valiant
Joined: 2003-01-04
Posts: 32509 |
![]() |
ah, I checked the config file of the cvs version of the phpnuke integration. <? $g2embedparams = array ( 'embedphpfile' => '/mypath/to/gallery2', 'embedUri' => 'http://mywebsite.com/modules.php?name=gallery2', 'relativeG2Path' => '/gallery2/', 'loginRedirect' => 'modules.php?name=Your_Account', 'activeUserId' => '0', ); $g2mainparams = array ( 'showSidebar' => 'true', ); $g2configurationdone = 'false'; ?> i'm not too happy with that code. drumicube, could you please make use of 'embedPath'? |
|
drumicube
Joined: 2005-01-07
Posts: 32 |
![]() |
To be honest, i'm also not really happy with it !!! :lol: Here is my new personnal config file after activation: <? $g2embedparams = array ( 'embedphpfile' => 'C:/www/gallery2', 'embedUri' => 'modules.php?name=gallery2', 'embedPath' => '/phpnuke/', 'relativeG2Path' => '../gallery2/', 'loginRedirect' => 'modules.php?name=Your_Account', 'activeUserId' => '0', ); $g2mainparams = array ( 'showSidebar' => 'true', ); $g2configurationdone = 'true'; ?>
For your information: -1- Absolute URI is now fixed thanks to the embedPath parameter, no more needs for mywebsite.com -2- loginRedirect & activeUserId had never been used since the beginning ! -2- The same to embedUri, as this value is not custom and only obtained by the module installation folder. -3- I have also rename fields in the admin page to be more user friendly, as i'm quite sure a casual user have no ideas of what embedURI could means. Finally only 3 parameters remains in the admin page: Gallery2 Installation File Path: C:/www/gallery2 PhpNuke Root URI: /phpnuke/ Relative G2 URI from PhpNuke: ../gallery2/ It's really better, but not perfect, I would like to get rid of the last absolute field 'C:/www/gallery2' but i didn't managed to success, and i don't even know if this is possible. And by the way, if i'm not wrong G2 main installation ask for it too, no ? Valiant, What do you think of it ? Cheers. |
|
drumicube
Joined: 2005-01-07
Posts: 32 |
![]() |
Madvoc, for your problem try this: 'relativeG2Path' => '/phpnuke75/modules/gallery2/' |
|
valiant
Joined: 2003-01-04
Posts: 32509 |
![]() |
drumicube, Quote:
And by the way, if i'm not wrong G2 main installation ask for it too, no ? G2 standalone installation asks for the g2data path. It makes a pretty good guess automatically so most people don't have to edit it. I thinks it's good as it is. I'm still working from time to time on a generic synchronization code, this will be the solution for the updated user/deleted user synchronization which phpnuke can't provide. |
|
madvoc
![]()
Joined: 2005-04-14
Posts: 6 |
![]() |
drumicube wrote:
Madvoc, for your problem try this: Thanx for the help on this.... Yes I did try the above.. it appending anything I put into 'relativeG2Path'. Seem like its not trimming back far enough ... this is what it's showing for the location of the thumbs: --> http://localhost/phpnuke75/modules.php/phpnuke75/modules/gallery2/main.php?g2_view= |
|
madvoc
![]()
Joined: 2005-04-14
Posts: 6 |
![]() |
Shit.. I just got it to work... This is what I did... --> Added 'embedPath' => '/phpnuke75/modules/gallery2' to the gallery2.cfg So the working code for me --> <? TESTING --> cool :lol: Now to get the phpnuke gallery configuration panel set with embed path... 8) |
|
madvoc
![]()
Joined: 2005-04-14
Posts: 6 |
![]() |
ahhh dammit just when I thought all is good.. lol There is only one problem with above.. the dam themes... its only using the Gallery matrix theme and not the phpnuke theme.. well guess it will need to relativeG2Path anyway... lol wtf it works for now... :lol: |
|
madvoc
![]()
Joined: 2005-04-14
Posts: 6 |
![]() |
OK Finally... For those who have this similar problem --> 1 - Just at the EmbedPath to both the cfg, and index integration files.. a - go to the gallery/themes/matrix folder. Well hope this helps… here the code that is working for me...-> GALLERY CFG <? $g2embedparams = array ( 'embedphpfile' => '/mypath/to/gallery2', 'embedPath' => 'root path of phpnuke', 'embedUri' => 'http://mywebsite.com/modules.php?name=gallery2', 'relativeG2Path' => 'modules/gallery2/', 'loginRedirect' => 'modules.php?name=Your_Account', 'activeUserId' => '0', ); $g2mainparams = array ( 'showSidebar' => 'true', ); $g2configurationdone = 'false'; ?> INDEX.PHP $ret = GalleryEmbed::init(array( 'embedphpfile' =>$g2embedparams[embedphpfile], 'embedPath' =>$g2embedparams[embedPath], 'embedUri' => $g2embedparams[embedUri], 'relativeG2Path' => $g2embedparams[relativeG2Path], 'loginRedirect' => $g2embedparams[loginRedirect], 'activeUserId' => "$uid", 'activeLanguage' =>$g2currentlang)); |
|
cybrax
Joined: 2008-02-08
Posts: 2 |
![]() |
Hi...Im havin a problem getting the images to show in my embedded gallery... $g2embedparams = array ( |
|
cybrax
Joined: 2008-02-08
Posts: 2 |
![]() |
Hey thanks working now.. i used the same code from above |
|
SnyperBob
![]()
Joined: 2006-01-13
Posts: 10 |
![]() |
Hmmm, I'll have to try this out. I just saw the post from 02-2008 from ocybrax saying he had to use this code still. My 1.4.4 Gallery install isn't working correctly anymore, I tried 1.5.7 and it won't embed into 7.5 patched correctly, same with Gallery2. I'll try this code out when I get a chance and post up if it works for me! Thanks guys |
|