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  

[SOLVED] Blank page, nothing writing to G2 db
Goto page Previous  1, 2, 3, 4, 5, 6, 7  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
dari

Site Admin
Site Admin


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

PostPosted: Wed Nov 16, 2005 7:34 am    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

I've not done a multisite embedded install, though i think it works the same as a normal multisite install.

try these values:
Code: › 'embedphpfile' => '/home/myuser/public_html/savebrookus/modules/gallery2/',
'embedUri' => '/savebrookus/modules.php?name=gallery2',
'relativeG2Path' => '/savebrookus/modules/gallery2/',
'loginRedirect' => '/savebrookus/modules.php?name=Your_Account',
'activeUserId' => '0',
'embedPath' => '/savebrookus/',
'cookiepath' => '/',
Back to top
Offline View user's profile Send private message Visit poster's website
AdBot
   Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db  

Back to top
DangerGirl

Beginner
Beginner


Joined: Nov 12, 2005
Posts: 2

PostPosted: Wed Nov 16, 2005 6:54 pm    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

Thanks for helping out. When I go to the module in the admin panel, the settings information stays as it was previously, it won't update even if I add in the setting info myself in the panel. If I do input the info, then it overwrites the new cfg file I uploaded with the old information.

Btw, if I just upload the new cfg file and leave the old settings on the panel alone, and go to Export Users to Gallery2, I will still get a white 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: Thu Nov 17, 2005 7:50 am    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

try the newest integration package, updated yesterday.
Back to top
Offline View user's profile Send private message Visit poster's website
anoopjohn

Beginner
Beginner


Joined: Mar 28, 2005
Posts: 10
Location: Hackensack, NJ

PostPosted: Sat Nov 19, 2005 10:59 pm    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

I have been trying to set up gallery 2 on my phpnuke site for almost straight 24 hours now. I usually dont give up but looks like I am totally lost.
It is the admin blank page issue.
I downloaded the gallery 2 from the nukedgallery site and then the latest gallery2 integration package from http://galleryupdates.jpmullan.com/inte ... hpnuke.zip

I installed phpnuke and gallery 2 on my local pc which is a windows server and set up gallery 2 and integrated and everything is working fine.

When i tried to duplicate the effort on my public site things not working as expected. The standalone gallery is working fine.

However when i try to set the Gallery2 Integration Settings I get a blank page.

I then went and edited the gallery.cfg file.

I still the blank page (popup) when i try to export the users. The funny thing is that the gallery module(hidden) seems to be working and i can use the module. Also the users were successfully exported even though i get an empty popup.

This is the contents of the gallery.cfg

<?php
$g2embedparams = array (
'embedphpfile' => '/usr/local/psa/home/vhosts/cetafi.net/httpdocs/modules/gallery2/',
'embedUri' => 'modules.php?name=gallery2',
'relativeG2Path' => 'modules/gallery2/',
'loginRedirect' => 'modules.php?name=Your_Account',
'activeUserId' => '0',
'embedPath' => '/',
'cookiepath' => '/',
);
$g2mainparams = array (
'showSidebar' => NULL,
);
$g2configurationdone = 'true';
?>

i have kept the gallery as hidden but the module is active and you can access it at
http://www.cetafi.net/modules.php?name=gallery2

Thanks
Anoop
Back to top
Offline View user's profile Send private message Visit poster's website
anoopjohn

Beginner
Beginner


Joined: Mar 28, 2005
Posts: 10
Location: Hackensack, NJ

PostPosted: Sun Nov 20, 2005 2:22 am    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

i think i found an issue - SaveG2Config(modules/gallery2/admin/index.html) is calling init but init function has been taken out from modules/gallery2/admin/index.html
I put the deleted init function (+the other functions - didnt check if they are needed or not) back in the index.html and it is working.
Earlier it was updating the config but init was failing.

Also the user export popup - the ob_end_flush was causing the function. I played around with it for some time and now it is working.
here is the complete code for the page. perhaps you might find this useful

Code: ›
<?php
/*
 * $RCSfile: export.php,v $
 *
 * Gallery - a web based photo album viewer and editor
 * Copyright (C) 2000-2005 Bharat Mediratta
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */
/**
 * Gallery 2 integration for phpnuke.
 * @version $Revision: 1.1 $ $Date: 2005/11/16 18:05:32 $
 * @author Dariush Molavi <dari@nukedgallery.net>
 */

define("MOD_NAME","gallery2");

global $admin_file;

if(!isset($admin_file)) {
    $admin_file = "admin";
}

if (!eregi("".$admin_file.".php", $_SERVER['PHP_SELF'])) { die ("Access Denied"); }

echo str_pad('',4096)."\n";
flush();
ob_flush();

$failures = array();

$phpnuke2G2Lang = array (
    'danish'    => 'da',
    'dutch'     => 'nl',
    'german'    => 'de',
    'greek'     => 'el',
    'english'   => 'en',
    'american'  => 'en',
    'spanish'   => 'es',
    'finnish'   => 'fi',
    'french'    => 'fr',
    'irish'     => 'ga', // not available
    'italian'   => 'it',
    'japanese'  => 'ja', // not available
    'norwegian' => 'no',
    'polish'    => 'pl',
    'portuguese'=> 'pt',
    'swedish'   => 'sv',
    'chinese'   => 'zh');

/*********************************************************/
/* Standalone Message Function                           */
/*********************************************************/

function g2_message($mess) {
    global $admin, $bgcolor2, $module_name, $admin_file;
    include ("header.php");
    OpenTable();
    echo    "<br><center><a href=\"".$admin_file.".php?op=gallery2\">".
                "<img alt='Gallery::your photos on your website' src='modules/$module_name/images/g2.png' border=0></a><H3>Gallery2 Module Administration</H3>".
                "<br/><a href=\"".$admin_file.".php?op=gallery2\">Return Home</center>";
    CloseTable();
    echo "<br/>";

    OpenTable();
    echo "<center><font class=\"option\">";
    echo $mess;
    echo "</font></center>";
    CloseTable();

    include ("footer.php");
}

/*********************************************************/
/* True if init() was called, else false                 */
/*********************************************************/

function isInitiated($newvalue = null) {
    static $initiated;
    if (!isset ($initiated)) {
        $initiated = false;
    }
    if (isset ($newvalue) && (is_bool($newvalue) || is_int($newvalue))) {
        $initiated = $newvalue;
    }
    return $initiated;
}

/*********************************************************/
/* Init G2 API                                           */
/*********************************************************/
function init() {
    global $gallery;

    if (isInitiated()) {
        return true;
    }

    $g2currentlang = $phpnuke2G2Lang[$currentlang];

    include("modules/".MOD_NAME."/gallery2.cfg");
    require_once ($g2embedparams['embedphpfile']."/embed.php");

    $g2currentlang = $phpnuke2G2Lang[$currentlang];

    $ret = GalleryEmbed :: init(array (
                                    'embedPath' => $g2embedparams['embedPath'],
                                    'embedUri' => $g2embedparams['embedUri'],
                                    'relativeG2Path' => $g2embedparams['relativeG2Path'],
                                    'loginRedirect' => $g2embedparams['loginRedirect'],
                                    'activeUserId' => '',
                                    'activeLanguage' => $g2currentlang,
                                    'fullInit' => $fullInit));

    $gallery->guaranteeTimeLimit(300);

    if (!$ret->isSuccess()) {
        message_die(CRITICAL_ERROR,'G2 did not return a success status upon an init request. Here is the error message from G2: <br /> [#(1)]'.$ret->getAsHtml());
        return false;
    }
    isInitiated(true);
    return true;
}

/*********************************************************/
/* Export PHPNuke Users to Gallery 2                     */
/*********************************************************/
function userExport() {
    global $db, $gallery, $failures, $prefix;
    include("modules/".MOD_NAME."/gallery2.cfg");
    require_once ($g2embedparams['embedphpfile']."/embed.php");
    require_once ($g2embedparams['embedphpfile']."/".'modules/core/classes/ExternalIdMap.class');

    // init G2 transaction, load G2 API, if not already done so
    if (!init()) {
        return false;
    }

    // Load all existing phpnuke <-> G2 mappings
    list ($ret, $mapsByExternalId) = GalleryEmbed::getExternalIdMap('externalId');
    if ($ret->isError()) {
        return false;
    }

    // Map the ExternalMapId "admin" to the last phpnuke admin account found
    list ($ret, $adminGroupId) = GalleryCoreApi::getPluginParameter('module', 'core', 'id.adminGroup');
    if ($ret->isError()) {
        flush();
        g2_message('Unable to fetch the admin group. Here is the error message from G2: <br />'.$ret->getAsHtml());
        return false;
    }

    // Grab all the existing G2 admins
    list ($ret, $adminList) = GalleryCoreApi::fetchUsersForGroup($adminGroupId);
    if ($ret->isError()) {
        flush();
        g2_message('Unable to fetch a member in the admin group. Here is the error message from G2: <br />'.$ret->getAsHtml());
        return false;
    }

    end($adminList);
    $adminId = key($adminList);

    if (!isset ($mapsByExternalId["admin"])) {
        $ret = ExternalIdMap::addMapEntry(array('externalId'=>"admin", 'entityType'=>'GalleryUser', 'entityId'=>$adminId));
        if ($ret->isError()) {
            flush();
            return false;
        }
    }

    // TODO: Update of the admin account if it already exists

    $sql = "SELECT count(*) AS ucount, MAX(user_id) AS max_user_id FROM " . $prefix . "_users";
    $user_count = $db->sql_fetchrow($db->sql_query($sql));
    $ucount = intval($user_count['ucount']) - 1 ;
    $max_id = $user_count['max_user_id'];
    $users_imported = 0;

    for($cur_id = 2; $cur_id <= $max_id; $cur_id++) {
        $sql = "SELECT user_id, username, user_password, user_email, user_lang, user_regdate FROM ". $prefix . "_users WHERE user_id = $cur_id LIMIT 1";
        $result = $db->sql_query($sql);
        if($db->sql_numrows($result) != 0) {
            $row = $db->sql_fetchrow($result);
            $user_id = $row['user_id'];
            $args = array('fullname'=> $row['username'], 'username'=> $row['username'], 'hashedpassword'=> $row['user_password'], 'hashmethod'=> 'md5' , 'email'=> $row['user_email'] , 'creationtimestamp'=> strtotime($row['user_regdate']));

            $users_imported++;
            $percentInDecimal = ($users_imported / $ucount);

            if($users_imported % 100 == 0) {
                print "<script type=\"text/javascript\">
                updateProgressBar(\"".$users_imported." users imported\", $percentInDecimal);
                </script>
                ";
                echo str_pad('',4096)."\n";
                flush();
                ob_flush();
            }

            // if the user exists, just update the user data
            if (isset ($mapsByExternalId[$user_id])) {
                $ret = GalleryEmbed::updateUser($user_id, $args);
                if (!$ret->isSuccess()) {
                    $failures[] = $user_id;
                }
            }
            else { //  else we create the user
                $ret = GalleryEmbed::createUser($user_id, $args);
                if($ret->isError() && ($ret->getErrorCode() & ERROR_COLLISION)) {
                    list($ret,$user) = GalleryCoreApi::fetchUserByUsername($row['username']);
                    $g2userId = $user->getId();
                    $ret = GalleryEmbed::addExternalIdMapEntry($row['user_id'],$g2userId,"GalleryUser");
                    if($ret->isError()) {
                        g2_message($ret->getAsHtml());
                    }
                }
            }
        }
    }

    $percentInDecimal = ($users_imported / $ucount) *100;
    print "<script> updateProgressBar(\"$users_imported / $ucount users exported\", $percentInDecimal);</script>";
    echo str_pad('',4096)."\n";
    flush();
    ob_flush();

     if(count($failures) != 0) {
        echo "<br />The import of the following PHPNuke user_id's failed:<br />";
        foreach($failures as $bad_id) {
            echo $bad_id."<br />";
        }
        echo "The most common reasons for failed imports are:"
        ."<ul><li>Duplicate PHPNuke usernames</li><li>A PHPNuke username of \"guest\"</li><li>A PHPNuke username consisting of only numbers</li></ul>"
        ."Check the failed user_ids and re-run the export";
    }

    extract($var);
    $content = "<?php\n".'$g2embedparams = '.var_export($g2embedparams, TRUE).";\n".'$g2mainparams = '.var_export($g2mainparams, TRUE).";\n";
    $content .='$g2configurationdone = \'true\';';
    $content .= " \n?>";
    $handle = fopen("modules/".MOD_NAME."/gallery2.cfg", "w");
    fwrite($handle, $content);
    fclose($handle);

    echo "<form><input type=\"button\" value=\"Close Window\" onclick=\"window.close()\"></form>";
}

?>

<html><head>
<script type="text/javascript">
function updateProgressBar(description, percentComplete) {
    document.getElementById('progressDescription').innerHTML = description;
    var progressMade = Math.round(percentComplete * 100);
    var progressToGo = document.getElementById('progressToGo');

    if (progressMade >= 100) {
      progressToGo.style.display = 'none';
    } else {
      progressToGo.style.width = (100 - progressMade) + "%";
    }
    document.getElementById('progressDone').style.width = progressMade + "%";
  }
</script>

<style type="text/css">
<!--

 /* General page style. The scroll bar colours only visible in IE5.5+ */
body {
    background-color: #E5E5E5;
    scrollbar-face-color: #DEE3E7;
    scrollbar-highlight-color: #FFFFFF;
    scrollbar-shadow-color: #DEE3E7;
    scrollbar-3dlight-color: #D1D7DC;
    scrollbar-arrow-color:  #006699;
    scrollbar-track-color: #EFEFEF;
    scrollbar-darkshadow-color: #98AAB1;
}

/* General font families for common tags */
font,p { font-family: Verdana, Arial, Helvetica, sans-serif }
p, td       { font-size : 11; color : #000000; }
a:link,a:active,a:visited { color : #006699; }
a:hover     { text-decoration: underline; color : #DD6900; }
.gbBlock {
    padding: 0.7em;
    border-width: 0 0 1px 0;
    border-style: inherit;
    border-color: inherit;
    /* IE can't inherit these */
    border-style: expression(parentElement.currentStyle.borderStyle);
    border-color: expression(parentElement.currentStyle.borderColor);
}
h1,h2 { font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; font-size : 22px; font-weight : bold; text-decoration : none; line-height : 120%; color : #000000;}
#ProgressBar #progressDone {
    background-color: #fd6704;
    border: thin solid #ddd;
}

#ProgressBar #progressToGo {
    background-color: #eee;
    border: thin solid #ddd;
}
#gallery h2, #gallery h3, #gallery h4 {
    font-family: "Trebuchet MS", Arial, Verdana, Helvetica, sans-serif;
}
.giTitle, #gallery h2, #gallery h3, #gallery h4 {
    font-size: 1.3em;
    font-weight: bold;
}
#gallery .gbBlock h3 {
    margin-bottom: 0.5em;
}
-->
</style>
</head><body>
<h1>Exporting Users</h1><br />
<div id="ProgressBar" class="gbBlock">
  <p id="progressDescription">
    &nbsp;
  </p>

  <table width="90%" cellspacing="0" cellpadding="0" align="center">
    <tr>
      <td id="progressDone" width="1%">&nbsp;</td>
      <td id="progressToGo">&nbsp;</td>
    </tr>
  </table>
</div>
<?php
    echo str_pad('',4096)."\n";
    flush();
    ob_flush();
    echo "<p>";
    userExport();
    echo "</p>";

?>
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: 6287
Location: Washington Township, NJ, USA

PostPosted: Mon Nov 21, 2005 8:25 am    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

the problem w/ the popup is that Firefox requires the ob_end_flush call, while IE does not. I should add in a user_agent check...

i'll check into the missing init function call, too....thanks for the report Smile
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: 6287
Location: Washington Township, NJ, USA

PostPosted: Mon Nov 21, 2005 8:39 am    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

fixed the missing init() call. working on a user_agent check.
Back to top
Offline View user's profile Send private message Visit poster's website
nickyu

Beginner
Beginner


Joined: Dec 02, 2005
Posts: 2

PostPosted: Tue Dec 06, 2005 8:33 pm    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

Hi...

Been searching through the forums for sometime now, I think I have tried every single 'fix'. I seem to still be getting at blank page when I navigate to the gallery page.

Just plain blank. I have installed gallery2 a few times, I have also copied all the files for the integration package a few times, checked the SQL database, I have played around with the gallery.cfg

My last known cfg...
Quote: ›
<?php
$g2embedparams = array (
'embedphpfile' => '/home/imachine/public_html/phpn/modules/gallery2/',
'embedUri' => 'modules.php?name=gallery2',
'relativeG2Path' => '/phpn/modules/gallery2/',
'loginRedirect' => 'modules.php?name=Your_Account',
'activeUserId' => '0',
'embedPath' => '/phpn/',
'cookiepath' => '/',
);
$g2mainparams = array (
'showSidebar' => NULL,
);
$g2configurationdone = 'true';
?>


Shocked cant seem to get it. Thanks for any guidance you can give.
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: Wed Dec 07, 2005 7:33 am    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

'embedUri' => '/phpn/modules.php?name=gallery2',
Back to top
Offline View user's profile Send private message Visit poster's website
nickyu

Beginner
Beginner


Joined: Dec 02, 2005
Posts: 2

PostPosted: Wed Dec 07, 2005 6:17 pm    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

unfortunately that didnt work. I will try a complete re-install yet again Smile

Is everyone else running version 7.7? I installed it off Cpanel on my server, could that be a problem?

Nick
Back to top
Offline View user's profile Send private message
kevjaun

Beginner
Beginner


Joined: May 29, 2005
Posts: 2

PostPosted: Wed Dec 07, 2005 7:46 pm    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

i'm in a similar situation as nickyu, 7.7, setting this up on a remote server. i've battled with it for a few days now, re-installing both gallery and the integration several times. the gallery was working fine, done the integration and i'm now getting the blank page problem. here is my current gallery2.cfg

<?php
$g2embedparams = array (
'embedphpfile' => '/home/XXX/public_html/site/modules/gallery2/',
'embedUri' => 'modules.php?name=gallery2',
'relativeG2Path' => '/site/modules/gallery2/',
'loginRedirect' => 'modules.php?name=Your_Account',
'activeUserId' => '0',
'embedPath' => '/site/',
'cookiepath' => '/',
);
$g2mainparams = array (
'showSidebar' => NULL,
);
$g2configurationdone = 'true';
?>

in the original gallery2.cfg file the $g2configurationdone = 'true'; is set to NULL, so i set it to true, like in the many examples in this thread. this made the gallery nuke block seem to work a little (bear with me here). it has a search box, advanced search link and a view slideshow link .
having this part made this blocks links point to the right place
'embedPath' => '/site/',
even though i'm still getting the blank page problem

but when you do what you suggested:
'embedUri' => 'site/modules.php?name=Gallery2',
it made the blocks links point to site/site/modules.php?...etc

not sure if any of that is useful. anyhows, i still can't get the darn thing to work so i hope you can help.

thank you.
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: Thu Dec 08, 2005 7:27 am    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

nickyu wrote: › unfortunately that didnt work. I will try a complete re-install yet again Smile

Is everyone else running version 7.7? I installed it off Cpanel on my server, could that be a problem?

Nick


you installed gallery 2 or phpnuke from Cpanel? are you using nuke platinum or any of the sentinel/protector modules for phpnuke? also, make sure that you disable/uninstall the embedded rewrite module from within the gallery 2 admin.
Back to top
Offline View user's profile Send private message Visit poster's website
seanherron

Beginner
Beginner


Joined: Aug 31, 2004
Posts: 4

PostPosted: Fri Dec 16, 2005 3:57 am    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

Hi All,

I've been trying to install Gallery with PHP-Nuke for a few days now, and its just not working. I am using Nuke v. 7.7 and Gallery 2.02 with the latest update from here. I, too, am having the blank page problem, though no problems with the Administration pages. I am using English as the default language. Here is the information from the nuke_g2config table:
Code: › <!-- Table nuke_g2config -->
    <nuke_g2config>
        <embedphpfile>/home/wrband/public_html/site/modules/gallery2</embedphpfile>
        <embedUri>modules.php?name=gallery2</embedUri>
        <relativeG2Path>/site/modules/gallery2/</relativeG2Path>
        <loginRedirect>modules.php?name=Your_Account</loginRedirect>
        <activeUserId>0</activeUserId>
        <embedPath>/site/</embedPath>
        <cookiepath>/</cookiepath>
        <showSidebar>0</showSidebar>
        <g2configurationDone>1</g2configurationDone>
        <embedVersion>0.4.2</embedVersion>
    </nuke_g2config>


I've tried all the advice given in this thread, and nothing works. Any ideas?

Thanks,
Sean
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: Fri Dec 16, 2005 8:33 am    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

try http://www.nukedgallery.net/postp13456.html#13456
Back to top
Offline View user's profile Send private message Visit poster's website
Darsch7

Wizard
Wizard


Joined: Nov 13, 2005
Posts: 79

PostPosted: Fri Dec 16, 2005 11:32 am    Post subject: Re: [SOLVED] Blank page, nothing writing to G2 db Reply with quote

Same, Still Bank Page.
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, 6, 7  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 ServiceNeckermannOnline internetSEORestaurant Locator • Get great HP coupons from CouponSnapshot • Search for great dell coupons at CouponSnapshot.com.au • Graduation DressesAndroid TabletSEO IndiaBuy Phen375fuel filter

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