Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

PM problems...

Asked Modified Viewed 2,227 times
C
Charlie
C
  • Newbie, joined since
  • Contributed 1 post on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
asked
Newbie

Hi,

I'm using PHPFusion 6.01.2, and whenever I try to send Private Messages, the other user doesn't recieve it. Why is this happening? =/
0 replies

16 posts

W
wvcaudill2
W
  • Junior Member, joined since
  • Contributed 32 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

I got it to work. My message ID's were into the hundreds and thousands, and instead of putting "int(10)" i made it a huge number, and now it works. Thanks for your help everyone, and keep up with the good work on php-fusion!
0 replies
W
wvcaudill2
W
  • Junior Member, joined since
  • Contributed 32 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

No
0 replies
F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

i know that, but has it fixed your problem?
0 replies
W
wvcaudill2
W
  • Junior Member, joined since
  • Contributed 32 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

Okay, I put that on the same page. It says something about the message limit being increased.
0 replies
F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

Paste this into custum pages and click preview

<?php
$sql=("alter table {$db_prefix}messages change message_id message_id int(10) unsigned not null auto_increment");
echo "message limit increased";
?>
0 replies
W
wvcaudill2
W
  • Junior Member, joined since
  • Contributed 32 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

Edited by Falk on 06-07-2006 23:11,
0 replies
F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

In custom pages, paste this, preview:
<?php
opentable("Table Structure");
$result = mysql_query("SHOW COLUMNS FROM {$db_prefix}messages");
if (mysql_num_rows($result) > 0) {
echo "<table cellspacing='1' cellpadding='0' class='tbl-border'>\n<td colspan='2' class='tbl2'><b>Submissions Table Scheme</b></td>\n";
while ($row = mysql_fetch_array($result)) {
echo "<tr><td class='tbl1'>".$row[0]."</td><td class='tbl2'>".$row[1]."</td></tr>\n";
}
$result = dbarray(dbquery("SHOW TABLE STATUS LIKE '".$db_prefix."messages'"));
echo "<tr>\n<td colspan='2' class='tbl2'><b>Next Autoindex:</b> ".$result['Auto_increment']."</td>\n</tr>\n";
echo "</table>\n";
}
closetable();
?>
Edited by Falk on 06-07-2006 20:42,
0 replies
W
wvcaudill2
W
  • Junior Member, joined since
  • Contributed 32 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

Muscapaul, I dont remember ever doing anything to the PM system. It just stopped working. However, if the table that stores the PM's is empty, it will store just one to be sent. I thought it was the table that was messed up, but I cant see anything wrong with it.
0 replies
W
wvcaudill2
W
  • Junior Member, joined since
  • Contributed 32 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

Im sorry, but what is "cvs"? I was looking at upgrading to the v6.01.3, but the site is heavily modified, and I didnt want to redo everything. "Please provide a dump of your messages db table." What does that mean?

Im sorry if these are stupid questions, but im not whiz at php and mysql.
0 replies
F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

1. You're using the old messages.php, get the new secure one from the cvs.
2. Please provide a dump of your messages db table.
0 replies
M
muscapaul
M
Paul

Time flies like an arrow, fruit flies like banana (Groucho Marx)

Sites: Diptera.info (site owner); Online-Keys.net (site owner); Sciomyzidae.info (site co-owner); muscapaul.com (defunct; site owner)
  • Veteran Member, joined since
  • Contributed 1,075 posts on the community forums.
  • Started 8 threads in the forums
answered
Veteran Member

It seems likely that the database structure for PM's is not correct and PMs can thus not be stored (= not sent). Did either of you ever have any mod of the PM system in a previous PHPFusion installation?
0 replies
S
Sveinungs
S
  • Veteran Member, joined since
  • Contributed 935 posts on the community forums.
  • Started 3 threads in the forums
answered
Veteran Member

You PM'd HIM!!!! :D
0 replies
W
wvcaudill2
W
  • Junior Member, joined since
  • Contributed 32 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

Okay, just PMed him/her.
0 replies
Q
Quartzkyte
Q
www.php-fusion.co.uk/../../images/smiley/cool.gif

Mike
---------------------------------------
Quartzkyte, admin @ French N.S.S.
  • Senior Member, joined since
  • Contributed 404 posts on the community forums.
  • Started 40 threads in the forums
answered
Senior Member

Try to send a private message (not a joke) to Digitanium with the address of this post, I'm sure if he can find your answer he will.
Meanwhile you should upgrade to 6.01.3...
0 replies
W
wvcaudill2
W
  • Junior Member, joined since
  • Contributed 32 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

Ok, for some reason, it messed up with displaying the code. But anyway, there it is.
0 replies
W
wvcaudill2
W
  • Junior Member, joined since
  • Contributed 32 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

Im also having this problem, please help!
0 replies

Category Forum

Bugs and Errors - 6

Labels

None yet

Statistics

  • Views 0 views
  • Posts 16 posts
  • Votes 0 votes
  • Topic users 6 members

0 participants

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet