Free PHP ShoutBox Script V 20 - php Form

Author Topic: Free PHP ShoutBox Script V 20  (Read 20062 times)

Offline shouter

  • Supporter
  • **
  • Posts: 4
  • Karma: +0/-0
    • View Profile
Re: ShoutBox 20
« Reply #30 on: August 07, 2010, 07:10:32 AM »


Maybe you have a problem with session configuration.

Offline Paris

  • Supporter
  • **
  • Posts: 8
  • Karma: +0/-0
    • View Profile
Re: ShoutBox 20
« Reply #31 on: August 07, 2010, 07:43:26 AM »
I think thats not the problem...I am running a datingsite where i want to integrate
this shoutbox...my site make use of sessions and all is fine in all the browsers..

Offline lnwsky

  • Supporter
  • **
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Re: ShoutBox 20
« Reply #32 on: August 21, 2010, 03:25:20 AM »
thx

http://www.lnwsky.com

http://www.chatdj.com

Offline iMage

  • Supporter
  • **
  • Posts: 3
  • Karma: +0/-0
    • View Profile
Re: ShoutBox 20
« Reply #33 on: September 12, 2010, 10:51:35 AM »
I have this script installed and is working great on my site,one question tho,i currently have an active userbase on my Arcade site,can i somehow import the users from that into this script? to avoid members from having to type there name each time on the shoutbox? I am a complete n00b to php coding so if is possible plz dumb the solution down a bit for a n00b lol

thanks

Offline niko

  • VIP
  • ****
  • Posts: 15
  • Karma: +1/-1
    • View Profile
Re: ShoutBox 20
« Reply #34 on: September 12, 2010, 11:51:50 AM »
something like this
top shout.php
Code: [Select]
<?php 
@session_start();
@
$YOUR-USER-SESSION $_SESSION['YOUR-USER-SESSION-USERNAME'];

form shout.php
Code: [Select]
<input type="text" id="sfeed" name="text" value="<?php echo $YOUR-USER-SESSION ?>" title="Username"><br>



Offline iMage

  • Supporter
  • **
  • Posts: 3
  • Karma: +0/-0
    • View Profile
Re: ShoutBox 20
« Reply #35 on: September 12, 2010, 12:32:34 PM »
sorry dude im not sure i understand.. those php files arent included in this,as i said im a complete n00b at php,this is a great shoutbox, do i need to just create these 2 new ones and add them to the 'menage'?

can haz a look at my site to see it,and have a better idea of wht i want with importing users from teh arcade db.. so if logged into the arcade,no need to continue re-entering name each time before shouting

play4freearcade.com

Offline niko

  • VIP
  • ****
  • Posts: 15
  • Karma: +1/-1
    • View Profile
Re: ShoutBox 20
« Reply #36 on: September 12, 2010, 12:47:11 PM »
just edit file,not creat one.(shout.php)

Offline iMage

  • Supporter
  • **
  • Posts: 3
  • Karma: +0/-0
    • View Profile
Re: ShoutBox 20
« Reply #37 on: September 12, 2010, 12:49:07 PM »
thanks alot for the replys niko.. i will have a go at this and report back how it works out for me :D .. thanks again

Offline RIP_Jarhead

  • Supporter
  • **
  • Posts: 5
  • Karma: +0/-0
    • View Profile
Re: ShoutBox 20
« Reply #38 on: October 27, 2010, 04:36:33 AM »
getting this odd error when I use install.php from my site:


Warning: mysql_connect(): Access denied for user 'root'@'192.168.1.1' (using password: YES) in /www/zxq.net/v/i/p/viperwow/htdocs/shoutbox/menage/sett.php on line 6 Could not connect: Access denied for user 'root'@'192.168.1.1' (using password: YES)


any suggestions?

Hi, i am getting the same error, has it been solved yet

Offline leony

  • VIP
  • ****
  • Posts: 19
  • Karma: +0/-0
    • View Profile
Re: ShoutBox 20
« Reply #39 on: October 27, 2010, 04:56:16 AM »
sett.php is not writable. 666 chmod it and try again.

Offline RIP_Jarhead

  • Supporter
  • **
  • Posts: 5
  • Karma: +0/-0
    • View Profile
Re: ShoutBox 20
« Reply #40 on: October 27, 2010, 05:00:29 AM »
sett.php is not writable. 666 chmod it and try again.

HI,

Thanx, i did that according to the instructions at the beginning, and just re-did now, and it still doesn't work.
Any other suggestions.
And im no pro with php or mysql.

Thank you

Offline leony

  • VIP
  • ****
  • Posts: 19
  • Karma: +0/-0
    • View Profile
Re: ShoutBox 20
« Reply #41 on: October 27, 2010, 05:12:59 AM »
Check your mysql settings..username, password, db name, privileges...

Offline RIP_Jarhead

  • Supporter
  • **
  • Posts: 5
  • Karma: +0/-0
    • View Profile
Re: ShoutBox 20
« Reply #42 on: October 27, 2010, 05:22:04 AM »
I checked all that, it seems to work with that part, so thamx.
But now i gotto get my host to be correct.

Thank you

Offline RIP_Jarhead

  • Supporter
  • **
  • Posts: 5
  • Karma: +0/-0
    • View Profile
Re: ShoutBox 20
« Reply #43 on: October 27, 2010, 05:54:10 AM »
Could you maybe tell me where i must add a dbname and dbuser etc.
Is the sett.php supposed to be empty?

Thank you
Regards

Offline leony

  • VIP
  • ****
  • Posts: 19
  • Karma: +0/-0
    • View Profile
Re: ShoutBox 20
« Reply #44 on: October 27, 2010, 08:03:04 AM »
sett.php

Code: [Select]
<?php 
$dbhost 
'localhost';
$dbusername 'DBUSERNAME';
$dbpassword 'DBPASSWORD';
$dbname 'DBNAME';
$link=mysql_connect($dbhost$dbusername$dbpassword);
if(!
$link) :
   die(
'Could not connect: ' mysql_error());
endif;
$db=mysql_select_db($dbname$link);
if(!
$db) :
   die (
'Can\'t connect to database : ' mysql_error());
endif;
?>
:)
« Last Edit: October 27, 2010, 08:04:54 AM by admin »