i think u need a

?>

at the end of that smile

Smartys wrote:

Yes, therefore there is no way to say with any amount of certainty that your thought is right wink

sure there is... based on the evidence so far, it leads to a pretty good case:

strobes wrote:

I am not able to make punbb work and think it might be my db_host

$db_host = 'whsql-v06.prod.mesa1.secureserver.net';     Is this correct

strobes wrote:

I did searches on the net about internal ip  and accessing 10.0.9.x net and was still not sure how how to connect to my external  ip or where to find this information for that matter.

strobes wrote:

where I get the  error 
Error: Unable to connect to MySQL server. MySQL reported: Can't connect to MySQL server on 'whsql-v06.prod.mesa1.secureserver.net' (10061).

Smartys wrote:

Who says his server isn't inside that LAN?

that sir, he has NOT established with us yet. smile

54

(11 replies, posted in Programming)

um on my irc network and channel, i've been loggin it for over 4+ years now, stats are all here if yer bored enuff to check 'em out.

55

(27 replies, posted in PunBB 1.2 troubleshooting)

i concur.. tyvm for this! smile

56

(11 replies, posted in Programming)

asking these sorts of questions are best asked within irc channels! that's why they exist!

i would assume you'd need root access to change the /etc/my.cnf file

here's an example of my mysql memory settings that runs my punbb with -0- problems:

set-variable    = max_heap_table_size=32M
set-variable    = key_buffer=64M
set-variable    = max_allowed_packet=1M
set-variable    = thread_stack=64K
set-variable    = sort_buffer=4M
set-variable    = thread_cache=16
set-variable    = thread_concurrency=8
set-variable    = join_buffer_size=8M
set-variable    = record_buffer=2M
set-variable    = max_connections=500
set-variable    = key_buffer=128M
set-variable    = table_cache=512
# # Try number of CPU's*2 for thread_concurrency
set-variable    = thread_concurrency=8
set-variable    = myisam_sort_buffer_size=32M

in all honest, his issue is that where ever he is hosting his punbb at, it's trying to connect to an external db, but even more worse, it's trying to access an INTERNAL ip on the 10.x.x.x which WILL NOT WORK unless yer INSIDE that LAN. how many times do i have to repeat myself?

is NO one else here seeing this???

im confused, i posted a long post to this thread here. was it deleted? if so, why?

strobes wrote:

here is where I am @currently, the line 58 error is gone now and it says

An error was encountered
Error: Unable to connect to MySQL server. MySQL reported: Can't connect to MySQL server on 'whsql-v06.prod.mesa1.secureserver.net' (10061).

the url http://www.shakersottawa.com/forum/upload/index.php

Or Maybe the Base Url is Wrong !           http://www.shakersottawa.com/forum/upload

so did you like ignore my post then?

only thing i'm noticing is that's an internal ip:

Non-authoritative answer:
Name:   whsql-v06.prod.mesa1.secureserver.net
Address: 10.0.9.14

so, where ever you are hosting punbb, it needs to be able to access that 10.0.9.x net.

outside that internal net, it will never work.

only thing i'm noticing is that's an internal ip:

Non-authoritative answer:
Name:   whsql-v06.prod.mesa1.secureserver.net
Address: 10.0.9.14

so, where ever you are hosting punbb, it needs to be able to access that 10.0.9.x net.

outside that internal net, it will never work.

thesaint wrote:

put this .htaccess in the root from your server. Keep in mind that you don't see it in a FTP program when you upload it. You must use your admin panel to control this file. Also read something about it, so you know what you are doing.

thank you ever so much! yeah i know a little about what goes on with the rewrite rules and .htaccess, but this is definately a jump start! smile

thesaint wrote:

Put the url in your browser, because we block hotlinking.. smile

how do you block pics like that from other sites hotlinking to it? is it in the httpd.conf for apache somewhere? any url u can refer me to? thx

64

(20 replies, posted in PunBB 1.2 troubleshooting)

AlenNS wrote:

Nothing. I've changed the codes in includes/pms inserting php after ? on start of the code and nothing.

On administration there is plugin pm and options to change but when i enter on forum there is just e-mail to send to other users and there is no pm...

What should I do?

give one of us *nix guru's root/sudo access to your server and let us do the deed. tongue

65

(20 replies, posted in PunBB 1.2 troubleshooting)

um we need more info dude. like did u run the install_mod.php first?

everyone else who has installed the PM system - works fine.

give us details. logs. something!

Smartys wrote:

What connects the imported database with the actual web address, or, what allows the imported database to be seen on the internet?

The database isn't seen on the internet. The PHP files need to interact with the database. To do that, they need to connect to the database server. To do THAT, they need connection information (the db host, username, password, etc). For PunBB, that information is stored in config.php

i'll expand on that a little more... most (90%+) databases are stored on a server which doesnt ALLOW access from the OUTSIDE world to directly, most (again 90%+) servers only allow access to LOCALHOST:3306

67

(16 replies, posted in PunBB 1.2 troubleshooting)

quaker wrote:

that runs from a usb drive.

haha cool. i cant imagine the uptime on something like that would be 24/7/365

ok. an explanation would be nice to tell us what changes you made from the previous release.... ty

69

(16 replies, posted in PunBB 1.2 troubleshooting)

intermaniac wrote:
Dr.Jeckyl wrote:

you have to create one with the supplied code from the installation process. make sure it's a .php file and NOT a .txt file. reupload the install.php file if you have to.

there is no code supplied by the installation process, neither a .txt or .php file. where should it shown or saved?

I am seriously not seeing the problem here. The installation process is quite self-explanatory, but allow me to review what's already in the install.php file:

        /// Display config.php and give further instructions

        $config = '<?php'."\n\n".'$db_type = \''.$db_type."';\n".'$db_host = \''.$db_host
                  ."';\n".'$db_name = \''.$db_name."';\n".'$db_username = \''.$db_username
                  ."';\n".'$db_password = \''.$db_password."';\n".'$db_prefix = \''.$db_prefix
                  ."';\n".'$p_connect = false;'."\n\n".'$cookie_name = '."'punbb_cookie';\n"
                  .'$cookie_domain = '."'';\n".'$cookie_path = '."'/';\n".'$cookie_secure = 0;'
                  ."\n".'$cookie_seed = \''.substr(md5(time()), -8)."';\n\ndefine('PUN', 1);";

Then it tells you:

To finalize the installation all you need to do is to copy and paste the text in the text box below into a file called config.php and then upload this file to the root directory of your PunBB installation. Make sure there are no linebreaks or spaces before <?php. You can later edit config.php if you reconfigure your setup (e.g. change the database password or ).

Copy contents to config.php

<textarea cols="80" rows="20"><?php echo htmlspecialchars($config) ?></textarea>

which will display the contents of the above $config string which will be what you need to copy/paste into a text file, which will be called config.txt then you can rename that to config.php

Once you have created config.php with the contents above, PunBB is installed!

Lati@s wrote:

I want my forum to be shown at Google, but how do I do that?

This is not the place for support on how to get your site listed on Google, but since I'm nice enough, here's a link explaining the entire process:

http://www.riches.com.au/articles/getti … google.htm

71

(16 replies, posted in PunBB 1.2 troubleshooting)

thats a shame. punbb is quite the easiest forum software on the market. you just need to follow instructions, read, and make sure you have the proper security on the shell of your linux box where you're installing it. doing it elsewhere, you'll run into loads of issues (ie: installing it under windows using mysql, apache or god forbid IIS, and php). there's so many factors that can piss people off. but a little experience with linux goes a long way.

72

(49 replies, posted in PunBB 1.2 discussion)

for firefox it displays great, but for MSIE 6.0.2800.1106 (win 2k), it shows like crap, look:

http://www.thinkgleek.com/images/pun13-admin_users.jpg
^ click on pic to see actual size ^

73

(6 replies, posted in PunBB 1.2 discussion)

i really hope that the transition from 1.2.x to 1.3.x is going to be a smooth one. many of us out here run highly modified punbb's that converting over to the 1.3 (if painful) will not be a welcome unless it is, in fact, an easy smooth transition.

guardian34 wrote:

Version 1.3 will allow multiple moderator groups?

good. cuz in my forums. i have a NFSW section. and some of my moderators didnt want to have access to that section when i upgraded them to mod status, so i had to code in my own stuff so that they wouldn't see those sections. i'm glad this is a part of the 1.3 release! smile

75

(95 replies, posted in News)

BuRningFire wrote:
qie wrote:

Oh,Richard,i can not accept that,that changed so a lot,
because i modified so a lot,so i need re modified and check the file to upload.
sad

just read the hdiff and make all the changes yourself..

thats all i ever do! works perfectly every time! smile

Ludo wrote:

Once again, I haven't received any notification for this update.... I thought I should have because I subscribed to the newsletter.

probably went in your spam folders. 99% of the time thats the case in todays world.