Results 1 to 5 of 5

Thread: PHP Nuke anyone?

  1. #1

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    PHP Nuke anyone?

    Anyone here familiar with PHP Nuke?

    I have Windows 98, PHP on PWS and mySQL database. I've followed the instructions, but PHP Nuke just won't get started. Let me copy and paste the page full of errors I get:


    Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in C:\My Documents\My Webs\phpnuke\html\includes\sql_layer.php on line 301

    Notice: Constant _YOUHAVE already defined in C:\My Documents\My Webs\phpnuke\html\language\lang-english.php on line 158

    Notice: Use of undefined constant admin - assumed 'admin' in C:\My Documents\My Webs\phpnuke\html\admin.php on line 16

    Notice: Use of undefined constant admin - assumed 'admin' in C:\My Documents\My Webs\phpnuke\html\mainfile.php on line 88

    Notice: Constant _YES already defined in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 24

    Notice: Constant _NO already defined in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 25

    Notice: Constant _DATE already defined in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 80

    Notice: Constant _IMAGEURL already defined in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 126

    Notice: Constant _CLICKURL already defined in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 127

    Notice: Constant _HOUR already defined in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 170

    Notice: Constant _ADD already defined in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 232

    Notice: Constant _UMONTH already defined in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 236

    Notice: Constant _YEAR already defined in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 237

    Notice: Constant _TEAM already defined in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 487

    Notice: Undefined variable: sitename in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 540

    Notice: Undefined variable: nukeurl in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 540

    Notice: Undefined variable: sitename in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 540

    Notice: Undefined variable: sitename in C:\My Documents\My Webs\phpnuke\html\admin\language\lang-english.php on line 543

    Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\My Documents\My Webs\phpnuke\html\includes\sql_layer.php on line 253

    Notice: Undefined variable: name in C:\My Documents\My Webs\phpnuke\html\admin.php on line 37

    Notice: Undefined index: 1 in C:\My Documents\My Webs\phpnuke\html\mainfile.php on line 401

    Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in C:\My Documents\My Webs\phpnuke\html\includes\sql_layer.php on line 301

    Notice: Undefined offset: 2 in C:\My Documents\My Webs\phpnuke\html\mainfile.php on line 403

    Notice: Undefined offset: 1 in C:\My Documents\My Webs\phpnuke\html\mainfile.php on line 296

    Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\My Documents\My Webs\phpnuke\html\includes\sql_layer.php on line 357

    Notice: Undefined index: 2 in C:\My Documents\My Webs\phpnuke\html\mainfile.php on line 123

    Warning: head(themes//theme.php) [function.head]: failed to create stream: No such file or directory in C:\My Documents\My Webs\phpnuke\html\header.php on line 31

    Warning: head() [function.head]: Failed opening 'themes//theme.php' for inclusion (include_path='.;c:\php4\pear') in C:\My Documents\My Webs\phpnuke\html\header.php on line 31

    Notice: Undefined variable: PHP_SELF in C:\My Documents\My Webs\phpnuke\html\includes\meta.php on line 15

    Notice: Undefined variable: PHP_SELF in C:\My Documents\My Webs\phpnuke\html\includes\javascript.php on line 15

    Fatal error: Call to undefined function: themeheader() in C:\My Documents\My Webs\phpnuke\html\header.php on line 47
    And here's my config.php file:

    PHP Code:
    $dbhost "localhost";
    $dbuname "mendhak";
    $dbpass "mendhak";
    $system 1;
    $dbname "nuke";
    $prefix "nuke";
    $user_prefix "nuke";
    $dbtype "MySQL"

  2. #2
    Frenzied Member
    Join Date
    Nov 1999
    Posts
    1,337
    wow

    for one you can turn off all those notices in the ini file.

    uncomment this line in your ini file

    error_reporting = E_ALL & ~E_NOTICE

    and it seems that they have an error on there mysql query. unless you didn't ensert all the contents for it, never really played with phpnuke, make my own

  3. #3
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687
    That sounds about right.... I've heard that there always seems to be a lot of problems w/ PHPNuke.... personally, I've used (and liked) Xoops ( http://www.xoops.org/modules/news/ )

    I've had success w/ it on my WinNT box at home (test) and on a Linux server on the web (production).
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  4. #4
    Conquistador
    Join Date
    Dec 1999
    Location
    Australia
    Posts
    4,527
    How recent is the copy of php-nuke?

    I had that problem a while ago, had a version that seemed to be fix a little while after that too..

    perhaps it's been fixed / will be fixed

  5. #5

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    It's the latest version, downloaded it on the same day as my first post.

    Is PWS a problem, btw?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width