Results 1 to 10 of 25

Hybrid View

  1. #1
    Join Date
    Jan 2013
    Posts
    811
    Plugin Contributions
    0

    Default Site speed diagnosis needed

    My devopment sites main page seems to run slow and periodically not show at all. All other pages seem fast. So Please have a look and see if its true or my slow computer.
    1stchoiceflooringservice.com
    Other site on same server seems fine, jnsflooringandsupplies.com
    Any feedback is welcome

  2. #2
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,145
    Plugin Contributions
    11

    Default Re: Site speed diagnosis needed

    Nothing I have as a test tool can break through the problems with your site to even get a read. Do you employ a URL rewriter? Do you use 301 redirects? Posting tips?

    Something has your site chasing its tail.

  3. #3
    Join Date
    Oct 2007
    Location
    Stevenage, GB
    Posts
    70
    Plugin Contributions
    0

    Default Re: Site speed diagnosis needed

    very slow 1stchoiceflooringservice.com website, do you host both websites on the same server? as the other one much faster.
    - Freelance Software Developer

  4. #4
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,017
    Plugin Contributions
    61

    Default Re: Site speed diagnosis needed

    Have you turned on Display Parse Time under Configuration >> Logging. Since it's intermittent this seems a likely way to see if the server/hosting is getting bogged down in SQL... The fact that you think one is responding faster is an illusion I think.

    ~Melanie
    PRO-Webs, Inc. :: Recent Zen Cart Projects :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are NOT answered. You are welcome to contact us via our website for professional engagements.

  5. #5
    Join Date
    Jan 2013
    Posts
    811
    Plugin Contributions
    0

    Default Re: Site speed diagnosis needed

    Parse Time: 12.313 - Number of Queries: 397 - Query Time: 0.26594570491028

  6. #6
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,017
    Plugin Contributions
    61

    Default Re: Site speed diagnosis needed

    That's really slow.... here is mine for example

    Parse Time: 0.173 - Number of Queries: 321 - Query Time: 0.053836924468994

    You need better web hosting
    PRO-Webs, Inc. :: Recent Zen Cart Projects :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are NOT answered. You are welcome to contact us via our website for professional engagements.

  7. #7
    Join Date
    Jan 2013
    Posts
    811
    Plugin Contributions
    0

    Default Re: Site speed diagnosis needed

    i was getting ready to transfer over as the new JNS Flooring site

  8. #8
    Join Date
    Jan 2013
    Posts
    811
    Plugin Contributions
    0

    Default Re: Site speed diagnosis needed

    personal computer at office turned into the perfect server running ubuntu

  9. #9
    Join Date
    Jan 2013
    Posts
    811
    Plugin Contributions
    0

    Default Re: Site speed diagnosis needed

    when site doesnt show i get thiserror in logs
    [15-Oct-2019 22:10:13 UTC] PHP Fatal error: Maximum execution time of 30 seconds exceeded in /var/www/clients/client1/web16/web/includes/functions/extra_functions/pzen_marcus_template_functions.php on line 397

    [15-Oct-2019 22:10:13 UTC] Request URI: /index.php?main_page=index, IP address: 35.137.65.183
    --> PHP Fatal error: Maximum execution time of 30 seconds exceeded in /var/www/clients/client1/web16/web/includes/functions/extra_functions/pzen_marcus_template_functions.php on line 397.
    and here is line 397
    line 392 - 396
    Code:
    // Check for additional matching images
    		$file_extension = $products_image_extension;
    		$products_image_match_array = array();
    		if ($dir = @dir($products_image_directory)) {
    			while ($file = $dir->read()) {
    from line 397 -443
    Code:
    				if (!is_dir($products_image_directory . $file)) {
    					
    	//-bof-image_handler-lat9  *** 1 of 4 ***
    	//                if (substr($file, strrpos($file, '.')) == $file_extension) {
    	//                    if(preg_match('/\Q' . $products_image_base . '\E/i', $file) == 1) {
    	//                        if ($file != $products_image) {
    					// -----
    					// Some additional-image-display plugins (like Fual Slimbox) have some additional checks to see
    					// if the file is "valid"; this notifier "accomodates" that processing, providing these parameters:
    					//
    					// $p1 ... (r/o) ... An array containing the variables identifying the current image.
    					// $p2 ... (r/w) ... A boolean indicator, set to true by any observer to note that the image is "acceptable".
    					//
    					$current_image_match = false;
    					$zco_notifier->notify(
    						'NOTIFY_MODULES_ADDITIONAL_IMAGES_FILE_MATCH',
    						array(
    							'file' => $file,
    							'file_extension' => $file_extension,
    							'products_image' => $products_image,
    							'products_image_base' => $products_image_base
    						),
    						$current_image_match
    					);
    					if ($current_image_match || substr($file, strrpos($file, '.')) == $file_extension) {
    						if ($current_image_match || preg_match('/\Q' . $products_image_base . '\E/i', $file) == 1) {
    							if ($current_image_match || $file != $products_image) {
    	//-eof-image_handler-lat9  *** 1 of 4 ***
    								if ($products_image_base . str_replace($products_image_base, '', $file) == $file) {
    									//  echo 'I AM A MATCH ' . $file . '<br>';
    									$images_array[] = $file;
    								} else {
    									//  echo 'I AM NOT A MATCH ' . $file . '<br>';
    								}
    							}
    						}
    					}
    				}
    			}
    			if (count($images_array) > 0) {
    				sort($images_array);
    			}
    			$dir->close();
    		}
    	}
    
    	$zco_notifier->notify('NOTIFY_MODULES_ADDITIONAL_PRODUCT_IMAGES_LIST', NULL, $images_array);
    Last edited by jimmie; 15 Oct 2019 at 11:19 PM.

 

 

Similar Threads

  1. v139h Speed up the Back end Orders speed and DB Size questions
    By explorer1979 in forum General Questions
    Replies: 0
    Last Post: 28 Aug 2012, 02:40 AM
  2. How to Speed Up My Site?
    By blackhalo in forum Basic Configuration
    Replies: 17
    Last Post: 24 Sep 2010, 07:20 PM
  3. How to speed my site?
    By Mikado in forum General Questions
    Replies: 6
    Last Post: 16 Dec 2007, 12:26 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR