| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 3 years, 11 months |
| seen | Mar 11 '10 at 16:00 | |
| stats | profile views | 13 |
|
Dec 10 |
answered | methods of prevent a user (or group) to be able to login |
|
Dec 10 |
answered | if a user has read access to a file, can a group deny that right? |
|
Nov 19 |
answered | Server unable to communicate OUT, fine serving traffic |
|
Nov 16 |
comment |
Can YAWS run in multi-machine mode? Look at the name and sname tokens if i recall. |
|
Nov 14 |
answered | Can YAWS run in multi-machine mode? |
|
Nov 13 |
comment |
Using variables within Apache virtualhost containers sorry...i must've misunderstood the question. |
|
Nov 13 |
answered | Directory Structure Recommendation For VPS Host |
|
Nov 13 |
answered | Using variables within Apache virtualhost containers |
|
Nov 13 |
awarded | Commentator |
|
Nov 13 |
comment |
Find which pages cause load? one more comment (apologies for the disconnectedness). it might not simply be a php issue. If you're seeing heavy read / write it might be a query / mysql issue (maybe a large query which is requiring a lot of data not in memory). What you can do is with the above (how long it's taking and when the requests are coming in)...is to correlate that with iowait times (or sar or what not) to see what pages might be correlated with the high iowait. |
|
Nov 13 |
comment |
Find which pages cause load? are you allowed to change anything in the php? If so, adding some simple logging would let you perform all of the above ( using pear.php.net/package/log ). Otherwise you can get the hits per second / minute / hour by doing some simple parsing on the access_log (using perl or python or what not). |
|
Nov 12 |
comment |
Problem with Tomcat sticky sessions behind Cisco load balancers? Are you storing the cookie in the http cookie header or the URL? In the header there can be issues if the header is HUGE (it might not work by default if the header is > 5 packets in size). It won't work if the header is greater than 20 packets in size. Great bits here: cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/… |
|
Nov 12 |
comment |
How long does reindexing take on SQL Server? Why not take a current back up of the database, restore it to a lab machine of somewhat similar specs, and try it? |
|
Nov 12 |
comment |
Using Nginx as a web proxy? Are you required to use nginx? You could use squid or apache probably to do this. |
|
Nov 12 |
answered | Perfmon % Processor Time vs. task manager's CPU usage |
|
Nov 12 |
comment |
SQL Server 0x0004005 “Unspecified error” And you can run a normal query fine as the same user? Do any of the app pages not use the DB? Do they work? Essentially we're trying to determine is the issue on the app / web server? The connection itself? Any external connection to the DB? etc. |
|
Nov 11 |
answered | SQL Server 0x0004005 “Unspecified error” |
|
Nov 11 |
comment |
Proper Way to Grant Permissions in PostgreSQL try as postgres (instead of your superuser) in case your superuser isn't what you think it is :) |
|
Nov 11 |
awarded | Supporter |
|
Nov 11 |
comment |
How to enable Jetty to support cometd/reverse ajax while let it listen to port 80? Ahh.. thx janet. It's been a while since I'd used it..thought it might still be valid. |