noob needs help!!

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

rdog157h
Forum Newbie
Posts: 15
Joined: Tue Feb 03, 2004 9:17 pm

noob needs help!!

Post by rdog157h »

check this out http://www.pimpmystation.com. ok i have uploaded php-nuke b4 with no problem. and now i tried to upload it and i get these errors.i am noob so i dont know what they mean. please help
malcolmboston
DevNet Resident
Posts: 1826
Joined: Tue Nov 18, 2003 1:09 pm
Location: Middlesbrough, UK

Post by malcolmboston »

No such file or directory
you have either unpacked the file incorrectly, uploaded it in the wrong place or downloaded a crappy copy

take your pick
rdog157h
Forum Newbie
Posts: 15
Joined: Tue Feb 03, 2004 9:17 pm

noob needs help!!

Post by rdog157h »

If anyone out there could load php-nuke on my site or look at it and see if you can tell me y its not workin i would greatly appreciate it. i have been workin for 3 days on this and still no luck. :evil:
rdog157h
Forum Newbie
Posts: 15
Joined: Tue Feb 03, 2004 9:17 pm

noob needs help!!!

Post by rdog157h »

if you can help me aim- rdog157h
cgroup
Forum Newbie
Posts: 13
Joined: Tue Jun 03, 2003 11:51 pm
Location: PA

Post by cgroup »

There is one file missing from the script, and a typo. The language file is missing, or it is misspelled. Look in the language directory for a file that might be called either "lang-.php" or "lang.php" or "eng.php" (or something similar) and change the name to "lang-.php".

Second, go into "header.php" and change the "themes//themes.php" to "themes/themes.php" on line 31. That should clear up the problems.
rdog157h
Forum Newbie
Posts: 15
Joined: Tue Feb 03, 2004 9:17 pm

noob needs help

Post by rdog157h »

heres the header file i dont see what needs to be changed.i did the lang thing it worked.i really appreciate your help

<?php

/************************************************************************/
/* PHP-NUKE: Advanced Content Management System */
/* ============================================ */
/* */
/* Copyright (c) 2002 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* 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. */
/************************************************************************/

if (eregi("header.php",$_SERVER['PHP_SELF'])) {
Header("Location: index.php");
die();
}

require_once("mainfile.php");

##################################################
# Include some common header for HTML generation #
##################################################

$header = 1;

function head() {
global $slogan, $sitename, $banners, $nukeurl, $Version_Num, $artpage, $topic, $hlpfile, $user, $hr, $theme, $cookie, $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4, $textcolor1, $textcolor2, $forumpage, $adminpage, $userpage, $pagetitle;
$ThemeSel = get_theme();
include("themes/$ThemeSel/theme.php");
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
echo "<html>\n";
echo "<head>\n";
echo "<title>$sitename $pagetitle</title>\n";

include("includes/meta.php");
include("includes/javascript.php");

if (file_exists("themes/$ThemeSel/images/favicon.ico")) {
echo "<link REL=\"shortcut icon\" HREF=\"themes/$ThemeSel/images/favicon.ico\" TYPE=\"image/x-icon\">\n";
}

echo "<LINK REL=\"StyleSheet\" HREF=\"themes/$ThemeSel/style/style.css\" TYPE=\"text/css\">\n\n\n";
include("includes/my_header.php");
echo "\n\n\n</head>\n\n";
themeheader();
}

online();
head();
include("includes/counter.php");
global $home;
if ($home == 1) {
message_box();
blocks(Center);
}

?>
User avatar
John Cartwright
Site Admin
Posts: 11470
Joined: Tue Dec 23, 2003 2:10 am
Location: Toronto
Contact:

Post by John Cartwright »

Heres an idea.. since phpnuke is so terrible to troubleshoot.

Uninstall everything, then the upload it onto the server. See if it works then, then modify it to your needs.
User avatar
Derfel Cadarn
Forum Contributor
Posts: 193
Joined: Thu Jul 17, 2003 12:02 pm
Location: Berlin, Germany

Post by Derfel Cadarn »

great: "look mama, i've bought a car!. can you now tell me how to drive it?"
rdog157h
Forum Newbie
Posts: 15
Joined: Tue Feb 03, 2004 9:17 pm

Post by rdog157h »

i have uninstalled and reinstalled many times to no avail. http://www.pimpmystation.com. i got it down to this one error but i cant find line 47?
User avatar
Derfel Cadarn
Forum Contributor
Posts: 193
Joined: Thu Jul 17, 2003 12:02 pm
Location: Berlin, Germany

Post by Derfel Cadarn »

i got it down to this one error but i cant find line 47
haha, it's the one ONE line between lines 46 and 48!!

:lol: :lol: :lol:
rdog157h
Forum Newbie
Posts: 15
Joined: Tue Feb 03, 2004 9:17 pm

Post by rdog157h »

how do i see the line numbers?i noob
User avatar
Derfel Cadarn
Forum Contributor
Posts: 193
Joined: Thu Jul 17, 2003 12:02 pm
Location: Berlin, Germany

Post by Derfel Cadarn »

how do i see the line numbers?i noob
if it was line 46237, i'd say: OK, good question.
but with line 47? have u tried COUNTING???
u know: one two three four....etc :twisted: :evil: :twisted: :evil:
User avatar
John Cartwright
Site Admin
Posts: 11470
Joined: Tue Dec 23, 2003 2:10 am
Location: Toronto
Contact:

Post by John Cartwright »

use dreamweaver or somethin it shows u all the line number..

or you can open it in notepad and count it yourself :S
rdog157h
Forum Newbie
Posts: 15
Joined: Tue Feb 03, 2004 9:17 pm

Post by rdog157h »

i counted down 47 lines, that wasnt line 47,it was like line 60 i dont know y
User avatar
Derfel Cadarn
Forum Contributor
Posts: 193
Joined: Thu Jul 17, 2003 12:02 pm
Location: Berlin, Germany

Post by Derfel Cadarn »

rdog157h wrote:i counted down 47 lines, that wasnt line 47,it was like line 60 i dont know y
if u think i'm coutninmg the lines 4 u: try again! :twisted: :P :P :P
Post Reply