Re: New Server
Other things you may want to look at if you are bored...
Make sure php is installed as a module w/ IIS (probably is)
Use phpMyAdmin to view statistics about the mySQL server use. Make changes to the mysql cnf file to optimize speed based on whats in red (phpMyAdmin is nice because it highlights potential problem areas in red, though not everything in red is necessarlily bad or fixable)
Try accessing mySQL with named pipes instead of TCP (I assume you run them on the same computer. this is sometimes trickier then you would think with windows versions of php and mysql, obviously mysql will need to have named pipes enabled in the cnf file. According to the php manual here, http://us.php.net/function.mysql-connect , anytime you use localhost it should try to use named pipes by default. I have however found this to not be the case, and to force it to connect to a named pipe, you should use '.' as the connection string [vBulletin may have this all automated for you already?])
Anyways, just some tips from a former php programmer...
Other things you may want to look at if you are bored...
Make sure php is installed as a module w/ IIS (probably is)
Use phpMyAdmin to view statistics about the mySQL server use. Make changes to the mysql cnf file to optimize speed based on whats in red (phpMyAdmin is nice because it highlights potential problem areas in red, though not everything in red is necessarlily bad or fixable)
Try accessing mySQL with named pipes instead of TCP (I assume you run them on the same computer. this is sometimes trickier then you would think with windows versions of php and mysql, obviously mysql will need to have named pipes enabled in the cnf file. According to the php manual here, http://us.php.net/function.mysql-connect , anytime you use localhost it should try to use named pipes by default. I have however found this to not be the case, and to force it to connect to a named pipe, you should use '.' as the connection string [vBulletin may have this all automated for you already?])
Anyways, just some tips from a former php programmer...
Comment