scotter
Forum Replies Created
-
Sorry, I don’t get notified that new posts come up…
I haven’t had that problem. How are you running PHP and what version? I am running it as ISAPI and not CGI, it is much quicker now, also its PHP512. At what point is it crashing with that error?
I am planning on moving my setup to a dual Xeon setup (its on a piii rack server that by legal definitions can no longer be called a ‘server’). I hope to do it soon, maybe this week. I will document the process (at least some notes…) so I can recreate it if need be.
sIn the PHP.INI (php folder on IIS server) file uncomment the php_mysqli.dll and php_mysql.dll (remove the semi-colon in front of them).
Make a php info file (google it, just a few lines of code in a stand alone page) and go view it on a browser, it will tell you what is running or not. MySQL should be running now (WP will tell it what to connect to later)
Load MySQL Administrator (from the main mysql site) on the machine with PHP and try to connect to the sql server. Whatever name it takes to resolve and connect is the name WP will use ok. 3306 is the default port for a TCP/IP connection… maybe security is on the server with sql, maybe sql is configured to not accept connections or something (not to sure… ours is all local and works so I didnt mess with it much).
Hope that helps. I am running IIS6/PHP ISAPI, MySQL, and WP 2.1/K2 Theme if you need something let me know.
-sForum: Fixing WordPress
In reply to: Comments on normal pagesLeo12,
If you haven’t got it yet:
You can edit the page.php file (most people suggest making a page template and selecting that template for each page you want comments on).
<?php } // End the Loop ?> <?php comments_template(); ?> </div> <!-- #primarycontent .hfeed -->I added the middle line (taken from comments.php if I remember) in between (the other lines where there).
I have comments on my ‘pages’ now. Though I still can’t figure out how to get the ‘published by’ meta info… I can’t find that include…