GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   phpGiggle help... please... I'm beggin' ya... (https://gfy.com/showthread.php?t=462310)

DWB 05-01-2005 02:26 AM

phpGiggle help... please... I'm beggin' ya...
 
Anyone use phpGiggle?

I have it installed, and I can get to the log-in page but when I enter the user/pass it will not let me in. I have changed the user/pass from the defaults to my own, code is intact... everything looks right... but I'm locked out.

Anyone have any ideas as to why this is going on? :helpme

Thanks in advance,
DWB

Darkhorse 05-01-2005 05:00 AM

Have you tried adding the user/pass directly in the config file??

Hansm 05-01-2005 05:45 AM

Just look in your config file

PHP Code:

<?
/*
 Copyright (C) 2004 Tony Bierman
 
 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.
*/

/*
    phpgiggle-config.inc.php contains global variables
    see README.html for complete documentation
*/

/*
    URL to phpGiggle
    no trailing slash
    e.g. "http://www.mydomain.org/phpGiggle"
    
*/
$phpiggle_siteurl = "http://www.mydomain.org/phpGiggle";
define ('phpgiggle_url', $phpiggle_siteurl.'/');

/*
    location of keywords file
*/
define ('phpgiggle_wordsfile',phpGiggle_ABSPATH.'words/phpgiggle.words.txt');

/*
    uncomment this line to open phpGiggle links in a new window.
    remember to include: <script type="text/javascript" src="http://www.mydomain.org/phpGiggle/external.js"></script>
    between the <head></head> tags of any page using phpGiggle
    note: external.js is necessary to open links in new window while remaining XHTML 1.0 compliant
*/
//$href_target="external";
define ('phpgiggle_target','rel="'.$href_target.'"');

/*
  Security stuff
*/
global $username,$password;

/*
    admin password
    set $upass[1] to your own password
*/
$uname[1] = "admin"; 
$upass[1] = "giggle";
$known_as[1] = "phpGiggle administrator";
//additional users can be added
//$uname[2] = "demo"; 
//$upass[2] = "demo";
//$known_as[2] = "demo";

/*
  Clicks counter stuff
*/
$phpgiggle_clicks_file = "clicks_data.txt"; // Name of clicks file, must be located in words/ subfolder
define ('phpgiggle_clicksfile',phpGiggle_ABSPATH.'words/'.$phpgiggle_clicks_file);

/* 
  Advertising feature stuff
  modify includes/phpgiggle-message.inc.php to 
  show your own ads/message after a link is clicked
*/

$phpgiggle_show_ads = 1; // Set to 0 to not show ads
define ('show_ads',$phpgiggle_show_ads);

// ***** No user definable settings below this line  *****
/*
    Version
*/
require_once(phpGiggle_ABSPATH.'includes/phpgiggle-version.inc.php');
?>


DWB 05-01-2005 01:46 PM

Yup, I looked at the config file, everything looks right. The path to phpGiggle is right, the user/pass is right... but not letting me in for some reason.

DWB 05-01-2005 05:19 PM

< bump for more help >

DWB 05-01-2005 05:46 PM

Here is my config file... (i took out my url for this post) Do you see anything woring with it?


<?
/*
Copyright (C) 2004 Tony Bierman

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.
*/

/*
phpgiggle-config.inc.php contains global variables
see README.html for complete documentation
*/

/*
URL to phpGiggle
no trailing slash
e.g. "http://www.domain.com/blog/phpGiggle"

*/
$phpiggle_siteurl = "http://www.domain.com/blog/phpGiggle";
define ('phpgiggle_url', $phpiggle_siteurl.'/');

/*
location of keywords file
*/
define ('phpgiggle_wordsfile',phpGiggle_ABSPATH.'words/phpgiggle.words.txt');

/*
uncomment this line to open phpGiggle links in a new window.
remember to include: <script type="text/javascript" src="http://www.domain.com/blog/phpGiggle/external.js"></script>
between the <head></head> tags of any page using phpGiggle
note: external.js is necessary to open links in new window while remaining XHTML 1.0 compliant
*/
//$href_target="external";
define ('phpgiggle_target','rel="'.$href_target.'"');

/*
Security stuff
*/
global $username,$password;

/*
admin password
set $upass[1] to your own password
*/
$uname[1] = "admin";
$upass[1] = "pass";
$known_as[1] = "administrator";
//additional users can be added
//$uname[2] = "demo";
//$upass[2] = "demo";
//$known_as[2] = "demo";

/*
Clicks counter stuff
*/
$phpgiggle_clicks_file = "clicks_data.txt"; // Name of clicks file, must be located in words/ subfolder
define ('phpgiggle_clicksfile',phpGiggle_ABSPATH.'words/'.$phpgiggle_clicks_file);

/*
Advertising feature stuff
modify includes/phpgiggle-message.inc.php to
show your own ads/message after a link is clicked
*/

$phpgiggle_show_ads = 1; // Set to 0 to not show ads
define ('show_ads',$phpgiggle_show_ads);

// ***** No user definable settings below this line *****
/*
Version
*/
require_once(phpGiggle_ABSPATH.'includes/phpgiggle-version.inc.php');
?>


All times are GMT -7. The time now is 12:32 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123