You are missing our premiere tool bar navigation system! Register and use it for FREE!

NukeCops  
•  Home •  Downloads •  Gallery •  Your Account •  Forums • 
Readme First
- Readme First! -

Read and follow the rules, otherwise your posts will be closed
Modules
· Home
· FAQ
· Buy a Theme
· Advertising
· AvantGo
· Bookmarks
· Columbia
· Community
· Donations
· Downloads
· Feedback
· Forums
· PHP-Nuke HOWTO
· Private Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Theme Gallery
· Top
· Topics
· Your Account
Who's Online
There are currently, 63 guest(s) and 0 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - Shout Box v2.4 ** SOLVED ** [ ]
 Forum FAQ  •  Search  •   •  Memberlist  •  Usergroups   •  Register  •  Profile •    •  Log in to check your private messages  •  Log in

 
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
Author Message
HSM
Lieutenant
Lieutenant


Joined: Mar 10, 2005
Posts: 166


PostPosted: Sat Oct 06, 2007 11:39 am Reply with quoteBack to top

PHP-Nuke v7.5 (patched)

- manaully installed this block
- manually created sql tables
- manually inserted data into tables
- block works fine on the page

- can NOT use admin panel link; returns with 'Access Denied' error
- manual settings via sql db are only way to setup block currently
- enabled display errors - no further errors were presented


Anyone have any suggestions as to why this thing seems so buggy? Is there a more recent version somewhere?

Note: creators website is useless

Thx
HSM

_________________
...everything that has a beginning, has a horrible hell like ending...

Last edited by HSM on Tue Nov 20, 2007 2:05 pm; edited 1 time in total
Find all posts by HSMView user's profileSend private messageSend e-mailVisit poster's website
HSM
Lieutenant
Lieutenant


Joined: Mar 10, 2005
Posts: 166


PostPosted: Tue Nov 20, 2007 2:05 pm Reply with quoteBack to top

I figured it out myself and here is what I did:

I removed this code:

Code:
$result = sql_query("select radminfaq, radminsuper from ".$prefix."_authors where aid='$aid'", $dbi);
list($radminfaq, $radminsuper) = sql_fetch_row($result, $dbi);
if (($radminfaq==1) OR ($radminsuper==1)) {


And replaced it with this code:

Code:
global $prefix, $dbi;
$aid = substr("$aid", 0,25);
$row = $db->sql_fetchrow($db->sql_query("SELECT radminsuper FROM " . $prefix . "_authors WHERE aid='$aid'"));
if ($row['radminsuper'] == 1) {


Now the admin feature works for the script.

_________________
...everything that has a beginning, has a horrible hell like ending...
Find all posts by HSMView user's profileSend private messageSend e-mailVisit poster's website
danswano
Nuke Soldier
Nuke Soldier


Joined: Jun 16, 2006
Posts: 12


PostPosted: Fri Nov 23, 2007 11:34 am Reply with quoteBack to top

can you post a working shoutbox files link for phpnuke 8 please ?
Find all posts by danswanoView user's profileSend private message
HSM
Lieutenant
Lieutenant


Joined: Mar 10, 2005
Posts: 166


PostPosted: Fri Nov 23, 2007 1:01 pm Reply with quoteBack to top

Yeah sure, here is the original un-edited code:

SHOUTBLOCK 2.4

_________________
...everything that has a beginning, has a horrible hell like ending...
Find all posts by HSMView user's profileSend private messageSend e-mailVisit poster's website
danswano
Nuke Soldier
Nuke Soldier


Joined: Jun 16, 2006
Posts: 12


PostPosted: Sat Nov 24, 2007 12:08 am Reply with quoteBack to top

AFTER UPLOADING the files and setting up the shoutbox and adding shoutbox block i'm getting syntax error in the beggeinning of the block
i have no idea how to fix or how to creat a new db for it
any idea HSM
Find all posts by danswanoView user's profileSend private message
HSM
Lieutenant
Lieutenant


Joined: Mar 10, 2005
Posts: 166


PostPosted: Sat Nov 24, 2007 5:32 pm Reply with quoteBack to top

Show me the exact error plz??

Did you do this below in the quote?? As per the README file included in the zip.

Quote:
Quick and Dirty Install:

Step One: Place files on server
Step Two: Log into phpnuke as an administrator
Step Three: under administration/Qshoutblock select "install database"

OR

visit your site at: http://www.yourpathto.php/nuke/quiecom-shoutblock.php

_________________
...everything that has a beginning, has a horrible hell like ending...
Find all posts by HSMView user's profileSend private messageSend e-mailVisit poster's website
danswano
Nuke Soldier
Nuke Soldier


Joined: Jun 16, 2006
Posts: 12


PostPosted: Sun Nov 25, 2007 6:06 am Reply with quoteBack to top

when i enter qshout admin i can't find install database
i found "reinstall database"
i press it but nothing is happenning

when i enter qshout mudule i get

" Error in query: select * from nuke_quiecom_shoutblock order by id desc. Table '****_****.nuke_quiecom_shoutblock' doesn't exist"


after i create the table what is the valus i have to enter to make a manual databse ?
Find all posts by danswanoView user's profileSend private message
HSM
Lieutenant
Lieutenant


Joined: Mar 10, 2005
Posts: 166


PostPosted: Sun Nov 25, 2007 10:30 am Reply with quoteBack to top

I was going to post the code for you here... but this site keeps telling me I don't have permissions to access the /modules.php file... which I was not doing; I was posting code & giving it code comments.

So, here.. copy & paste the code from one of my sites:

.DK SITE
.CA SITE

_________________
...everything that has a beginning, has a horrible hell like ending...
Find all posts by HSMView user's profileSend private messageSend e-mailVisit poster's website
danswano
Nuke Soldier
Nuke Soldier


Joined: Jun 16, 2006
Posts: 12


PostPosted: Sun Nov 25, 2007 2:14 pm Reply with quoteBack to top

when i'm importing the sql file throw phpmyadmin i'm getting this error:

Image
Find all posts by danswanoView user's profileSend private message
HSM
Lieutenant
Lieutenant


Joined: Mar 10, 2005
Posts: 166


PostPosted: Sun Nov 25, 2007 6:41 pm Reply with quoteBack to top

Okay I'm not sure what to say here, it works perfect for me (and I just tried it again on our test site - no errors).

Try changing this line:

[ (id int(9) DEFAULT '0' NOT NULL auto_increment, ]

to this:

[ `id` int(9) NOT NULL auto_increment, ]

Note: leave out the square brackets, its the only way I could post the friggin code in the message.

_________________
...everything that has a beginning, has a horrible hell like ending...
Find all posts by HSMView user's profileSend private messageSend e-mailVisit poster's website
danswano
Nuke Soldier
Nuke Soldier


Joined: Jun 16, 2006
Posts: 12


PostPosted: Mon Nov 26, 2007 4:29 am Reply with quoteBack to top

do you have any replacment idea in how to import the sql without phpmyadmin?
Find all posts by danswanoView user's profileSend private message
HSM
Lieutenant
Lieutenant


Joined: Mar 10, 2005
Posts: 166


PostPosted: Mon Nov 26, 2007 6:09 am Reply with quoteBack to top

Nope, sorry... was kinda hoping that one of the other guru guys would get into this chat and give a helping hand. I have always used phpmyadmin or you could just give me admin access to your db and I'll see if I can do it for you.

_________________
...everything that has a beginning, has a horrible hell like ending...
Find all posts by HSMView user's profileSend private messageSend e-mailVisit poster's website
scorpio4646
Nuke Cadet
Nuke Cadet


Joined: Jul 26, 2007
Posts: 9


PostPosted: Fri Jan 18, 2008 4:34 am Reply with quoteBack to top

Hi there, I installed the shout box block. followed all instructions here and it works , sort of, Rolling Eyes . I have 2 problems

1. the emoticons don't show in the shoutbox block but when i type them in they show in msg

2. when i send msg I lose centre block and the shoutblock block and get small message where shoutblock should be and it just says

uid:

when I click on <Home> the page comes back with the new message, but if I click on refresh page it doesn't come back
Find all posts by scorpio4646View user's profileSend private message
scorpio4646
Nuke Cadet
Nuke Cadet


Joined: Jul 26, 2007
Posts: 9


PostPosted: Fri Jan 18, 2008 5:54 am Reply with quoteBack to top

Hi HSM I checked out your website (looks awesome) to see how Shoutbox works and noticed you have changed to SPchat. Have also now installed the SPchat that you use. Had a problem getting on to the forums there for more help, they seem to have a database problem. Is it possible to create the spchat in a sidebox (block) that would be ideal for me.
Find all posts by scorpio4646View user's profileSend private message
jtaweb
Nuke Cadet
Nuke Cadet


Joined: Jul 31, 2008
Posts: 2


PostPosted: Thu Jul 31, 2008 8:04 am Reply with quoteBack to top

Ok, i have tried to use the "install" button like 100 times and nothing, does not do anything, I hvae finaly got past the "access denied" in the admin panel so i tried using the "reinstall" button, but same thing. I have read your manually installing the table but i am not that talented Razz So if someone could simplify this for me that would be great,

or

if someone could just make it into a sql class. so i can just run a query on it

tgcnet.com
phpnuke 8.0

Thank you for your time,
Jta-web
Find all posts by jtawebView user's profileSend private message
Display posts from previous:      
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
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



Powered by phpBB © 2001, 2005 phpBB Group

Ported by Nuke Cops © 2003 www.nukecops.com
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::
Powered by · TOGETHER TEAM srl ITALY http://www.togetherteam.it · DONDELEO E-COMMERCE http://www.DonDeLeo.com
Web site engine's code is Copyright © 2002 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 0.589 Seconds - 489 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::