| Author |
Message |
webmice
Beginner


Joined: Apr 02, 2006 Posts: 1
|
Posted: Wed Apr 05, 2006 12:20 pm Post subject: gallery 2 Integration problems |
|
|
hey
i have install the gallery2 on my evo site as a stand alone gallery and it working oki i downloade the Integration Package At http://www.nukedgallery.net/downloads-cat11.html and i get this error
Your integration package is not up to date.
Latest version available is 0.5.10. Your installed version is
To see what has changed, read the ChangeLog here: http://www.nukedgallery.net/postp10252.html#10252.
You can download the latest integration package from http://www.nukedgallery.net/downloads-cat11.html
the file i downloade is the 0.5.10 what can the problem be
I have add the data to the Gallery 2 Integration Settings and savede them...
and i get this error when i try to go to the gallery for the menu i left side...
The module has not yet been configured. i nowe the modul i activatede i have set et i moduls
can some one hellp me
site data
http://noble-guardians.dk it is hostede At www.MyEvolutionHost.com |
|
| Back to top |
|
|
AdBot
|
| Post subject: gallery 2 Integration problems |
|
|
|
|
|
| Back to top |
|
 |
inetquestion
Beginner


Joined: Apr 04, 2006 Posts: 5
|
Posted: Thu Apr 06, 2006 8:20 am Post subject: Re: gallery 2 Integration problems |
|
|
I'm getting the exact same thing on my end...working to resolve now. will post back whatever I find.
-Inet |
|
| Back to top |
|
|
DeYesila
Beginner


Joined: Mar 31, 2006 Posts: 3
|
Posted: Thu Apr 06, 2006 8:22 am Post subject: Re: gallery 2 Integration problems |
|
|
I've got exactly the same error message.  |
|
| Back to top |
|
|
inetquestion
Beginner


Joined: Apr 04, 2006 Posts: 5
|
Posted: Thu Apr 06, 2006 12:50 pm Post subject: Re: gallery 2 Integration problems |
|
|
OK, i've managed to fix mine. Hopefully yours will be this simple to.
Use the mysql query browser and select the database which phpnuke stores its configuration into. Run the following query: SELECT * FROM nuke_g2config;
If you are having the same problem I did, then this table will exist however there is nothing in it. From my review of the code for the integration kit if this talbe exists then it will not attempt to fill in the values because it assumes they were populated when the table was created. (for some reason mine were not)...
What I did was drop this table and then goto the phpnuke admin page. From there click on the gallery2 icon and it will:
1. no longer tell you your installation is old
2. autopopulate what it thinks are the correct values
3. actually save your new/unchanged values once you click the button to do so.
4. Fix all the problems I've discovered up till now.
Hope this helps you out! If so how can do you submit bug finds/fixes for this? I'm quite new to this as of 1 day ago...
-Inet |
|
| Back to top |
|
|
inetquestion
Beginner


Joined: Apr 04, 2006 Posts: 5
|
Posted: Thu Apr 06, 2006 12:58 pm Post subject: Re: gallery 2 Integration problems |
|
|
below is the code from "docroot/modules/gallery2/admin/index.php" that is caused my pain. Perhaps this check could be modified to see if the data is there rather than the repository for it.
-Inet
$exist_sql = "SHOW TABLES FROM ".$dbname." LIKE '".$prefix."_g2config'";
$exist_result = $db->sql_query($exist_sql);
if($db->sql_numrows($exist_result) == 0) {
$installed = 0;
$setup_sql = "CREATE TABLE ".$prefix."_g2config (
embedUri VARCHAR( 255 ) NOT NULL ,
g2Uri VARCHAR( 255 ) NOT NULL ,
activeUserId INT( 10 ) NOT NULL ,
cookiepath VARCHAR( 255 ) NOT NULL ,
showSidebar TINYINT( 1 ) NOT NULL ,
g2configurationDone TINYINT( 1 ) NOT NULL ,
embedVersion VARCHAR( 255 ) NOT NULL
)";
$setup_result = $db->sql_query($setup_sql);
$version_text .= '<p style="color:green">You are currently installing the integration package for the first time.</p></center>';
} |
|
| Back to top |
|
|
SofaKing
Beginner


Joined: Apr 04, 2006 Posts: 8
|
Posted: Sat Apr 08, 2006 9:24 pm Post subject: Re: gallery 2 Integration problems |
|
|
inetquestion wrote: › OK, i've managed to fix mine. Hopefully yours will be this simple to.
Use the mysql query browser and select the database which phpnuke stores its configuration into. Run the following query: SELECT * FROM nuke_g2config;
If you are having the same problem I did, then this table will exist however there is nothing in it. From my review of the code for the integration kit if this talbe exists then it will not attempt to fill in the values because it assumes they were populated when the table was created. (for some reason mine were not)...
What I did was drop this table and then goto the phpnuke admin page. From there click on the gallery2 icon and it will:
1. no longer tell you your installation is old
2. autopopulate what it thinks are the correct values
3. actually save your new/unchanged values once you click the button to do so.
4. Fix all the problems I've discovered up till now.
Hope this helps you out! If so how can do you submit bug finds/fixes for this? I'm quite new to this as of 1 day ago...
-Inet
I was having the same exact problem. I dropped the table and everything worked great after that. Thanks for the info!
Brian |
|
| Back to top |
|
|
fn_keith
Beginner


Joined: Apr 09, 2006 Posts: 12
|
Posted: Sun Apr 09, 2006 6:50 pm Post subject: Re: gallery 2 Integration problems |
|
|
SofaKing wrote: › inetquestion wrote: › OK, i've managed to fix mine. Hopefully yours will be this simple to.
Use the mysql query browser and select the database which phpnuke stores its configuration into. Run the following query: SELECT * FROM nuke_g2config;
If you are having the same problem I did, then this table will exist however there is nothing in it. From my review of the code for the integration kit if this talbe exists then it will not attempt to fill in the values because it assumes they were populated when the table was created. (for some reason mine were not)...
What I did was drop this table and then goto the phpnuke admin page. From there click on the gallery2 icon and it will:
1. no longer tell you your installation is old
2. autopopulate what it thinks are the correct values
3. actually save your new/unchanged values once you click the button to do so.
4. Fix all the problems I've discovered up till now.
Hope this helps you out! If so how can do you submit bug finds/fixes for this? I'm quite new to this as of 1 day ago...
-Inet
I was having the same exact problem. I dropped the table and everything worked great after that. Thanks for the info!
Brian I just integrated it with Nuke Platinum 7.6.b.4v2 and had no problems except this same error message. As soon as I dropped the table mentioned above, and reran the installer, everything integrated with no problems. Great job on the port package. Thanks. |
|
| Back to top |
|
|
dari
Site Admin


Joined: Mar 03, 2003 Posts: 6276 Location: Washington Township, NJ, USA
|
Posted: Mon Apr 10, 2006 6:54 am Post subject: Re: gallery 2 Integration problems |
|
|
this happens if, for some reason, the settings aren't saved in the DB. simply delete the nuke_g2config table, and rerun the integration. _________________
 |
|
| Back to top |
|
|
Elora
Beginner


Joined: Apr 15, 2006 Posts: 2
|
Posted: Sat Apr 15, 2006 7:38 pm Post subject: Re: gallery 2 Integration problems |
|
|
I am having a similar problem, but when I hit validate, I get a blank white page and then have to go to admin after closing the browser.
I have tried to delete the table, but when I return to admin, and click the icon it tells me I am installing it for the first time again.
Ideas? |
|
| Back to top |
|
|
transitphotosnet
Beginner


Joined: Apr 15, 2006 Posts: 5
|
Posted: Sun Apr 16, 2006 10:42 am Post subject: Re: gallery 2 Integration problems |
|
|
| where can i might i be able to find this table? |
|
| Back to top |
|
|
SofaKing
Beginner


Joined: Apr 04, 2006 Posts: 8
|
Posted: Sun Apr 16, 2006 8:38 pm Post subject: Re: gallery 2 Integration problems |
|
|
| It's in your Nuke database... |
|
| Back to top |
|
|
dari
Site Admin


Joined: Mar 03, 2003 Posts: 6276 Location: Washington Township, NJ, USA
|
Posted: Mon Apr 17, 2006 7:16 am Post subject: Re: gallery 2 Integration problems |
|
|
Elora-
when you delete the table, the integration data is gone, so the code thinks you're doing it for the first time again  _________________
 |
|
| Back to top |
|
|
Elora
Beginner


Joined: Apr 15, 2006 Posts: 2
|
Posted: Mon Apr 17, 2006 12:53 pm Post subject: Re: gallery 2 Integration problems |
|
|
Doh!! I swear sometimes - I really feel stupid.
Okay, but why when I hit validate and save, am I getting a blank screen - and no information saved? (Indepen. of the table dropping))
P.S. Thanks for answering so nicely, that was really dumb of me!! |
|
| Back to top |
|
|
Squiggler
Beginner


Joined: Apr 13, 2006 Posts: 6 Location: Calaifornia
|
Posted: Mon Apr 17, 2006 1:30 pm Post subject: Re: gallery 2 Integration problems |
|
|
Well it didn't work for me, all it did was make my entire Nuke installation unavailable now. This is a nightmare!
Error when trying to access PHP NUKE admin page =
Warning: head(themes//theme.php): failed to open stream: No such file or directory in /home/pal2palc/public_html/SPA/header.php on line 31
Warning: head(themes//theme.php): failed to open stream: No such file or directory in /home/pal2palc/public_html/SPA/header.php on line 31
Warning: head(): Failed opening 'themes//theme.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/pal2palc/public_html/SPA/header.php on line 31
Fatal error: Call to undefined function: themeheader() in /home/pal2palc/public_html/SPA/header.php on line 47
_______________________________
I started with a beautiful installation and everything working. Then tried to install Gallery2, which worked fine until I tried to integrqate it. Now, I don't even have my original NUKE installation and I don't know enough here to fix it.
I'm not feeling very good today and now I just want to cry. Please someone tell me this is a minor problem as I have two weeks of nearly 18 hour days into this and it all seems to be gone. |
|
| Back to top |
|
|
Squiggler
Beginner


Joined: Apr 13, 2006 Posts: 6 Location: Calaifornia
|
Posted: Mon Apr 17, 2006 2:05 pm Post subject: Re: gallery 2 Integration problems |
|
|
I am on a fixed disability income, but if I'm doing something wrong, like not offering money for a solution, then tell me. I can not seem to get a reply to any of my inquiries either in this thread or a related thread on configuration problems. I can't offer much, but if it is money that is lacking, I'll pay something.
Please! First I need to get access back to my whole PHPNUKE installation, then get Gallery2 integrated. I can't keep trying fixes and then getting in more and more trouble. And I just can't face starting from scratch now. It is just too complitcated.
I know I probably sound whiney here, but this has really upset me to lose everything now. |
|
| Back to top |
|
|
|
|
|
|
|