Cannot Delete messages!!

Is message board greying out your hair (at least what's left of it)? Let us help you here
Locked
hamertime
Posts: 7
Joined: Mon Feb 27, 2006 1:43 am

Cannot Delete messages!!

Post by hamertime »

Script URL: www.milliondollarhealthman.com
Version of script:
Version of PHP:
Hosting company:
Have you searched THIS FORUM for your problem:
(if not please do before posting)
If so, what terms did you try:

Write your message below:

Hi

My message board can be found at www.milliondollarhealthman.com under the contact us link.

I am trying to get my message board up and running but when I click on the delete button it says "Error:404 File Not Found".

If anyone knows why please let me know. :?

Many Thanks
Lee
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

You have the wrong URL set in $settings['mboard_url'] in settings.php file. Since your MBoard is installed in the main public html folder that should be set to:

$settings['mboard_url']="http://www.milliondollarhealthman.com";

The old posts won't work so I suggest you upload the original (empty) threads.txt file to the server to start over.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
hamertime
Posts: 7
Joined: Mon Feb 27, 2006 1:43 am

Post by hamertime »

Thanks for getting back to me.

I just did exactly as you suggested but it comes back with the same error message for some reason.

Thanks
Lee
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Please paste your settings file here. You can replace your admin password and e-mail address with ********
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
hamertime
Posts: 7
Joined: Mon Feb 27, 2006 1:43 am

Post by hamertime »

Here it is:

<?php
// >>> SETUP YOUR MESSAGE BOARD <<< //
// Detailed information found in the readme file

// What type of server is your website on?
// 1 = UNIX (Linux), 2 = Windows, 3 = Machintos
$settings['system']=1;

// Password for admin area
$settings['apass']="*****";

// Website title
$settings['website_title']="Ticket Swap Shop";

// Website URL
$settings['mboard_url']="http://www.milliondollarhealthman.com";

// Message board title
$settings['mboard_title']="";

// URL to folder where message board is installed
// DO NOT a trailing "/" !
$settings['mboard_url']="http://www.milliondollarhealthman.com/mboard";

// Allow smileys? 1 = YES, 0 = NO
$settings['smileys']=0;

// Send you an e-mail when a new entry is added? 1 = YES, 0 = NO
$settings['notify']=1;

// Your e-mail. Only required if $settings['notify'] is set to 1.
$settings['admin_email']="you@yourdomain.com";

// Display IP number of members posting? 1 = YES, 0 = NO
$settings['display_IP']=1;

// Maximum number of posts displayed on the first page
$settings['maxposts']=50;

// Keep or delete old posts? 1 = KEEP, 0 = DELETE
$settings['keepoldmsg']=0;

// File exstention for message files
$settings['extension']="html";

/* Filter bad words? 1 = YES, 0 = NO */
$settings['filter']=1;

/* Filter language. Please refer to readme for info on how to add more bad words
to the list! */
$settings['filter_lang']="en";

// >>> DO NOT EDIT BELOW <<< //
$settings['verzija']="1.21";
?>

Thanks Again
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Well, you didn't do what I told you to... Change THIS

Code: Select all

$settings['mboard_url']="http://www.milliondollarhealthman.com/mboard"; 
into THIS:

Code: Select all

$settings['mboard_url']="http://www.milliondollarhealthman.com"; 
Regards
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
hamertime
Posts: 7
Joined: Mon Feb 27, 2006 1:43 am

Post by hamertime »

Thanks Klemen, your exactly right I have changed it now thanks a lot for the help.

Lee
Locked