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  

Another BLANK PAGE SOLUTION!
Goto page Previous  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
kungfoo

Wizard
Wizard


Joined: Jan 30, 2006
Posts: 75

PostPosted: Sat Mar 04, 2006 10:36 am    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

xperiment wrote: › That didn't work Neutral Nothing works - I'm just about ready to throw in the towel.


Delete you nuke_g2config table, rerun the config. Accept the settings suggested by the admin module and see if that works.
Back to top
Offline View user's profile Send private message
AdBot
   Post subject: Re: Another BLANK PAGE SOLUTION!  

Back to top
xperiment

Beginner
Beginner


Joined: Dec 04, 2003
Posts: 19
Location: Upstate NY

PostPosted: Sat Mar 04, 2006 12:11 pm    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

Resolved

My webhost's php.ini is set up to use 8MB memory for PHP, so when I install G2, the installer recommends I create a .htaccess file containing the text "php_value memory_limit 16M". I did the same in my nuke root directory and BAM, everything works! I don't know what side-effects this may have, if any, but my webhost doesn't want to change the PHP configuration for the server so I guess it'll have to work.

Thanks for trying to help, I knew this would be something odd - glad I just figured it out, I was just noticing how well G2 integrates with Joomla =/
Back to top
Offline View user's profile Send private message Send e-mail Visit poster's website MSN Messenger
kungfoo

Wizard
Wizard


Joined: Jan 30, 2006
Posts: 75

PostPosted: Sat Mar 04, 2006 2:29 pm    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

Interesting... I've had that happen with a couple other php apps, not gallery though. Guess Dari will have to add that to the tip list... Smile
Back to top
Offline View user's profile Send private message
svenno

Beginner
Beginner


Joined: Feb 21, 2006
Posts: 3

PostPosted: Mon Mar 06, 2006 2:55 pm    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

Doesn't work for me! Sad

Did you just add -php_value memory_limit 16M- to the .htaccess file in youre root?

I still get a blank page!
Back to top
Offline View user's profile Send private message
dari

Site Admin
Site Admin


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

PostPosted: Tue Mar 07, 2006 7:32 am    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

in your nuke root and your g2 directory.
Back to top
Offline View user's profile Send private message Visit poster's website
benkipperen

Beginner
Beginner


Joined: Feb 24, 2006
Posts: 3

PostPosted: Tue Mar 07, 2006 5:15 pm    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

Integration succeeded!

I turned logging on in the config.php, and found out:
1. The name of the directory faq was expected in capitals (FAQ), so I changed it;
2. I had the wrong path for stand alone URl. I changed it from '/modules/gallery2' to '/gallery2/'.

Thanks for the support, much appreciated.
Back to top
Offline View user's profile Send private message
xperiment

Beginner
Beginner


Joined: Dec 04, 2003
Posts: 19
Location: Upstate NY

PostPosted: Wed Mar 08, 2006 6:16 pm    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

I had trouble in other areas even after upping the PHP memory via an .htaccess file - the files would upload then display a blank page. The thumbnails would be created and displayed but I'd get blank pages when trying to display the images. As frustrated and infuriated as I was, I contacted my web host and told them if they don't up my PHP memory and fix my imagemagick, I'd be gone. So they moved me to a better server =/

So I had everything working great until this afternoon. At 3:00 EVERYTHING was working normally. I didn't touch a thing and checked at 4:00, and all I see now is broken image links. But that'll be a discussion for another forum thread.

I found some good workarounds while trying to figure this out, including recursive chmod'ding via PHP - that alone made the experience worth it. I guess PHP-Nuke is OK with 8MB, Gallery 2 is OK with 8MB, but run one on top of the other and it doesn't quite cut it.
Back to top
Offline View user's profile Send private message Send e-mail Visit poster's website MSN Messenger
TDoGSneaker

Beginner
Beginner


Joined: Mar 13, 2006
Posts: 7

PostPosted: Mon Mar 20, 2006 2:31 am    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

Code: › if ($fd = fopen("header.php", "r")) {
        while (!feof($fd)) {
            $line = fgets($fd, 1024);
            $line = str_replace('<?php', '', $line);
            $line = str_replace(' ?>', '', $line);
         $line = preg_replace('/(@?)include\("includes\/javascript.php"\)\;/','',$line);
         if(defined('NUKE_EVO')) {
                $evo_version = explode('.',NUKE_EVO);
                if(intval($evo_version[0]) >= 1) {
                    $line = str_replace("require_once(dirname(__FILE__).'/mainfile.php');","require_once('mainfile.php');",$line);
                }
            }
            $header .= $line;
            if (strstr($line, "<head")) {
                foreach($css as $stylesheet) {
                    $links = $stylesheet;
                    $links = str_replace('"', '\"', $links);
                    $header .= 'echo "' . $links. '\n";' . "\n";
                }
                foreach($javascript as $script) {
                    $scriptline = $script;
                    $scriptline = str_replace('"','\"',$scriptline);
                    $header .= 'echo "' . $scriptline. '\n";'."\n";
                }
            }
        }


That is between from 235 to 260 on Gallary2 folder's index.php

I have not changed anything yet because I dont find what I am looking for after reading some help in here.

I get blank screen after click "Verify Gallery 2 installation ..." button

So, what can I do to make it work ... this is latest download tonight ... and FTPed to modules ... Gallery2 is deactivated because of "proven to be a tricky task" ...

Thanks and pls do ask away (yes it is PHP Nuke 7.Cool
Back to top
Offline View user's profile Send private message
TDoGSneaker

Beginner
Beginner


Joined: Mar 13, 2006
Posts: 7

PostPosted: Mon Mar 20, 2006 2:57 am    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

Also I just downloaded like an hour ago ... and still figuring it out ... and noticed this ... "Your integration package is not up to date.
Latest version available is 0.5.10. Your installed version is" ... installed version is (blank) ... I hope I dont have to throw the towel for a little longer .... Thanks for the support.
Back to top
Offline View user's profile Send private message
dari

Site Admin
Site Admin


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

PostPosted: Mon Mar 20, 2006 7:12 am    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

drop your nuke_g2config table, then redo the integration.
Back to top
Offline View user's profile Send private message Visit poster's website
TDoGSneaker

Beginner
Beginner


Joined: Mar 13, 2006
Posts: 7

PostPosted: Mon Mar 20, 2006 9:32 pm    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

no dice after 3 times ... will you instant msg me before I give up and move on to next gallery ?
Back to top
Offline View user's profile Send private message
TDoGSneaker

Beginner
Beginner


Joined: Mar 13, 2006
Posts: 7

PostPosted: Mon Mar 20, 2006 9:47 pm    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

i am guessing around and export users taking a long time correct ? It is only like 12 users.
Back to top
Offline View user's profile Send private message
TDoGSneaker

Beginner
Beginner


Joined: Mar 13, 2006
Posts: 7

PostPosted: Mon Mar 20, 2006 11:45 pm    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

I looked for solutions and read about it and did it ... failed ... ARGH
Back to top
Offline View user's profile Send private message
TDoGSneaker

Beginner
Beginner


Joined: Mar 13, 2006
Posts: 7

PostPosted: Wed Mar 22, 2006 2:05 pm    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

ok, is that all you can do to help me out ?

I will try again on a fresh php nuke and gallery 2.

I believe I have followed instructions and did the help instructions from you all.

Is there anything else that I need to know "tricky or hints" to make it work this time ?

If you can make this works ... give me step 1 step 2 step 3 exactly what you just did with Gallery 2, please ?
Back to top
Offline View user's profile Send private message
akboss

Beginner
Beginner


Joined: Mar 25, 2006
Posts: 3

PostPosted: Sat Mar 25, 2006 3:24 am    Post subject: Re: Another BLANK PAGE SOLUTION! Reply with quote

TDoGSneaker wrote: › Also I just downloaded like an hour ago ... and still figuring it out ... and noticed this ... "Your integration package is not up to date.
Latest version available is 0.5.10. Your installed version is" ... installed version is (blank) ... I hope I dont have to throw the towel for a little longer .... Thanks for the support.


Same problem as TDo.. Same blank pages after clicking to submit the settings. Pretty much scanned the site from top to bottom. I've done 100's of instalations and modules, but this one takes the most confusing. Would you like to poke around on my host to see if everything is correct and test? shoot me an email.

or explain in some detail some troubleshootin steps here.

Thanks
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 Previous  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: Dedicated ServersDomain NamesWeb HostingDomain Name RegistrationDedicated Web HostingWeb Design New YorkCompare VoIPseo packagesSEO CompanyNew York Yellow PagesFind LocationsVOIP Phone ServiceNeckermannBluetooth HeadsetOnline internetSEOchina factoryDressesRestaurant Locatorandroid tablet

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