Support Forums | Demo Gallery [1.x] [2.x] | Downloads | News | Site Map ]
Nuked Gallery
  Create a FREE account or Login   As a guest, you don't have access to our FULL navigation system.
 Forum FAQForum FAQ   StatisticsStatistics   SearchSearch   UsergroupsUsergroups   FavoritesFavorites  

gallery 2 Integration problems
Goto page 1, 2, 3, 4, 5  Next
 
Post new topic   Reply to topic    NukedGallery.net Forum Index » PHP-Nuke Integration » Gallery 2 Integration View previous topicPrinter friendly versionView next topic
Author Message
webmice

Beginner
Beginner


Joined: Apr 02, 2006
Posts: 1

PostPosted: Wed Apr 05, 2006 12:20 pm    Post subject: gallery 2 Integration problems Reply with quote

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
Offline View user's profile Send private message
AdBot
   Post subject: gallery 2 Integration problems  

Back to top
inetquestion

Beginner
Beginner


Joined: Apr 04, 2006
Posts: 5

PostPosted: Thu Apr 06, 2006 8:20 am    Post subject: Re: gallery 2 Integration problems Reply with quote

I'm getting the exact same thing on my end...working to resolve now. will post back whatever I find.

-Inet
Back to top
Offline View user's profile Send private message
DeYesila

Beginner
Beginner


Joined: Mar 31, 2006
Posts: 3

PostPosted: Thu Apr 06, 2006 8:22 am    Post subject: Re: gallery 2 Integration problems Reply with quote

I've got exactly the same error message. Neutral
Back to top
Offline View user's profile Send private message
inetquestion

Beginner
Beginner


Joined: Apr 04, 2006
Posts: 5

PostPosted: Thu Apr 06, 2006 12:50 pm    Post subject: Re: gallery 2 Integration problems Reply with quote

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. Smile

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
Offline View user's profile Send private message
inetquestion

Beginner
Beginner


Joined: Apr 04, 2006
Posts: 5

PostPosted: Thu Apr 06, 2006 12:58 pm    Post subject: Re: gallery 2 Integration problems Reply with quote

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
Offline View user's profile Send private message
SofaKing

Beginner
Beginner


Joined: Apr 04, 2006
Posts: 8

PostPosted: Sat Apr 08, 2006 9:24 pm    Post subject: Re: gallery 2 Integration problems Reply with quote

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. Smile

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
Offline View user's profile Send private message
fn_keith

Beginner
Beginner


Joined: Apr 09, 2006
Posts: 12

PostPosted: Sun Apr 09, 2006 6:50 pm    Post subject: Re: gallery 2 Integration problems Reply with quote

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. Smile

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
Offline View user's profile Send private message Visit poster's website
dari

Site Admin
Site Admin


Joined: Mar 03, 2003
Posts: 6276
Location: Washington Township, NJ, USA

PostPosted: Mon Apr 10, 2006 6:54 am    Post subject: Re: gallery 2 Integration problems Reply with quote

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
Offline View user's profile Send private message Visit poster's website
Elora

Beginner
Beginner


Joined: Apr 15, 2006
Posts: 2

PostPosted: Sat Apr 15, 2006 7:38 pm    Post subject: Re: gallery 2 Integration problems Reply with quote

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
Offline View user's profile Send private message
transitphotosnet

Beginner
Beginner


Joined: Apr 15, 2006
Posts: 5

PostPosted: Sun Apr 16, 2006 10:42 am    Post subject: Re: gallery 2 Integration problems Reply with quote

where can i might i be able to find this table?
Back to top
Offline View user's profile Send private message Visit poster's website
SofaKing

Beginner
Beginner


Joined: Apr 04, 2006
Posts: 8

PostPosted: Sun Apr 16, 2006 8:38 pm    Post subject: Re: gallery 2 Integration problems Reply with quote

It's in your Nuke database...
Back to top
Offline View user's profile Send private message
dari

Site Admin
Site Admin


Joined: Mar 03, 2003
Posts: 6276
Location: Washington Township, NJ, USA

PostPosted: Mon Apr 17, 2006 7:16 am    Post subject: Re: gallery 2 Integration problems Reply with quote

Elora-
when you delete the table, the integration data is gone, so the code thinks you're doing it for the first time again Smile
_________________
Back to top
Offline View user's profile Send private message Visit poster's website
Elora

Beginner
Beginner


Joined: Apr 15, 2006
Posts: 2

PostPosted: Mon Apr 17, 2006 12:53 pm    Post subject: Re: gallery 2 Integration problems Reply with quote

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
Offline View user's profile Send private message
Squiggler

Beginner
Beginner


Joined: Apr 13, 2006
Posts: 6
Location: Calaifornia

PostPosted: Mon Apr 17, 2006 1:30 pm    Post subject: Re: gallery 2 Integration problems Reply with quote

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
Offline View user's profile Send private message
Squiggler

Beginner
Beginner


Joined: Apr 13, 2006
Posts: 6
Location: Calaifornia

PostPosted: Mon Apr 17, 2006 2:05 pm    Post subject: Re: gallery 2 Integration problems Reply with quote

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
Offline View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    NukedGallery.net Forum Index » PHP-Nuke Integration » Gallery 2 Integration View previous topicPrinter friendly versionView next topic
Goto page 1, 2, 3, 4, 5  Next

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT - 5 Hours

Powered by phpBB © phpBB Group



Sponsors: Web HostingDedicated ServersDomain NamesDomain Name RegistrationDedicated Web HostingSearch Engine OptimisationSEOWeb Design New YorkSEO Web DesignWeb hosting AustraliaSEO

6th year online! 2003-2008
Legal • Use of this site consitutes agreement to the Acceptable Use Policy
Hosted by Implosion WorksSourceForge.net Logo • Theme by TonicMedia