marty

Members
  • Posts

    11
  • Joined

  • Last visited

marty's Achievements

Member

Member (2/4)

11

Reputation

  1. last couple of days my site on wdc006 sees frequent "SQLSTATE[08004] [1040] Too many connections" errors - without any increased user access. (can't attach a file showing this, the forum software constantly gives error when uploading an attachment.) yesterday, without changing anything, there were suddenly tens of thousands of error messages generated from php notices, rendering the site inaccessible. had to turn error reporting off completely, to make it work again. why that? did you change the php version? and theres still the problem of frequent "low build time - extremely long delivery time" pages. wdc006 feels a little out of touch lately...
  2. ok. thanx. will submit a ticket. currently collecting some performance data with http://www.webpagetest.org requesting from phoenix. the problem is not a continental network delay. and it's persistent. meaning for maybe 10% of php/mysql pages you have to wait 10 secs for a response from the server, the php build times for these delayed pages are totally normal in the 0.1 - 0. 8 seconds range
  3. i'm having a very strange page delivery delay problem. much too often i have to wait around 10 secs to get a response from the server. - the delay is always very tight around 10 secs - never 8 secs, never 12 secs (see pix) - the delay happens sometimes every 10th page, sometimes every 2nd page, no consistency - without the super delay, delivery is without problems, around 1 - 2 secs - even delayed pages have always normal php build times between 0.3 - 0.9 secs - strange: while waiting the 10 seconds for a response, a parallel ping is returned 10 times without loss and very tight at 140ms - after 10 sec the page will always be delivered - no waiting forever, no loss, no reset - the delay is independent of the page size. the first attached pix shows a "10 second" logout which only sends a redirect but no data - i didn't get static pages delayed, only php pages (zend framework), but again php build times are always normal. - happens with different browsers. first pic: opera. second: chrome - i'm on wdc006 - requesting in europe. - other internet access without any delay or problems see pix below for two delay examples whats going on? anybody else has delayed pages?
  4. thanx for info. speed seems pretty normal right now. not using wordpress. but the restrictions on remote mysql are really annoying. (i know it's not your fault). just finished a php module that allows me to at least insert rows via http requests with encrypted POST data. (can post it here in case somebody has same problem)
  5. can confirm this. i'm on wdc6 was always very satisfied with the speed and response times. but maybe 2 or 3 weeks ago suddenly page delivery got really bad. sometimes you had to wait 10 secs or longer. since the build time of the php pages didn't slow down, i didn't submit a ticket. you never know where the problem is when pages have to cross the atlantic. since i know you as being very reliable i decided to just wait. after some days page delivery improved, but it's still not as speedy as it was one or two months ago. on the server status page there is a DOS attack noted for wdc6. a DOS attack would be consistent with my impression of the slowdown. response times varied quite a bit, but were generally much too high. right now i can live with the somewhat slower response times, but i guess there are still some problemes with either wdc6 or your larger wdc network.
  6. tony, yes i use your framework. on localhost i have ZF1.7.2 & xampp1.7 and no include problems. i'm not an expert, but i think the failing snippet is not related or dependent on ZF. the set_include_path just doesn't do what it's supossed to do?
  7. does this help? http://blog.calevans.com/2008/02/14/set_include_path-failing/
  8. the missing includes sre the problem when i do this echo " ".get_include_path()." "; $include_path = BASE ."app/helpers/view" . PATH_SEPARATOR ; echo $include_path; set_include_path( $include_path . get_include_path()); echo " ".get_include_path()." "; i get this .:/usr/php4/lib/php:/usr/local/php4/lib/php:/usr/lib/php:/usr/local/lib/php:/home/xxx/php ../calendar/app/helpers/view: .:/usr/php4/lib/php:/usr/local/php4/lib/php:/usr/lib/php:/usr/local/lib/php:/home/xxx/php Warning: include_once(SmartyView.php) [ function.include-once]: failed to open stream: No such file or directory in /usr/lib/php/Zend/Loader.php on line 83 Warning: include_once() [function.include]: Failed opening 'SmartyView.php' for inclusion (include_path='.:/usr/php4/lib/php:/usr/local/php4/lib/php:/usr/lib/php:/usr/local/lib/php:/home/xxx/php') in /usr/lib/php/Zend/Loader.php on line 83 Fatal error: Class 'SmartyView' not found in /home/xxx/calendar/app/global/settings.php on line 221
  9. some weeks ago it worked. now, when i access a zend framework site on a shared hosting server, it can't include a class-file. turns out, this doesn't work anymore: $include_path = BASE ."app/helpers/view" . PATH_SEPARATOR ; set_include_path( $include_path . get_include_path()); the include path stays the same - before and after set_include_path. has set_include_path been deactivated? i need to set more includes than just this one. what can i do? thanx - marty