Page 117 of 168 FirstFirst ... 1767107115116117118119127167 ... LastLast
Results 1,161 to 1,170 of 1674
  1. #1161
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,842
    Plugin Contributions
    11

    Default Re: Ultimate SEO 2.200 [Support Thread]

    i suggest you find someone more versed in the black arts of apache directives and get them to fix it.... i myself merely dabble and am hardly an expert...

    i further suggest you put all of your websites under version control. that way it is far easier to go back to when things worked. it requires some effort to learn git, but the advantages going forward are great. i use bitbucket as a repository for all my source code. makes changes to working websites far less stressful.

    good luck.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  2. #1162
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Ultimate SEO 2.200 [Support Thread]

    thanks Carl

  3. #1163
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,842
    Plugin Contributions
    11

    Default Re: Ultimate SEO 2.200 [Support Thread]

    has anyone tested this plugin with php7.0?

    does not seem to work as on line 532, getting an error of:

    PHP: Only variables can be passed by reference

    or:

    PHP Fatal error: Uncaught Error: Cannot pass parameter 1 by reference

    hmmm....
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  4. #1164
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,582
    Plugin Contributions
    29

    Default Re: Ultimate SEO 2.200 [Support Thread]

    Quote Originally Posted by carlwhat View Post
    has anyone tested this plugin with php7.0?

    does not seem to work as on line 532, getting an error of:

    PHP: Only variables can be passed by reference

    or:

    PHP Fatal error: Uncaught Error: Cannot pass parameter 1 by reference

    hmmm....
    I have a site using USU. I it set to PHP 5.6 but I just changed it to 7.0 and it still working. Only limited testing but category and product url's are working.

  5. #1165
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,842
    Plugin Contributions
    11

    Default Re: Ultimate SEO 2.200 [Support Thread]

    jim,
    thanks for responding. must have been a little late bleary looking at this problem.

    in any event, what are your settings? if you look at the code:

    Code:
    	if(USU_FORMAT == 'parent' && USU_CATEGORY_DIR == 'off') {
    	   $pName = $this->get_category_name($cID !== null ? $cID : (int)$result->fields['master_id'], 'original') . '-' . $pName;
    	}
    you will not hit this problem unless USU_FORMAT is set to parent and USU_CATEGORY_DIR is set to off.

    i was able to get around this problem by modifying the code to:

    Code:
    	if(USU_FORMAT == 'parent' && USU_CATEGORY_DIR == 'off') {
    	    $tempMID = ($cID !== null ? $cID : $result->fields['master_id']);
    	    $pName = $this->get_category_name($tempMID, 'original') . '-' . $pName;
    	}
    curious if anyone else has experienced this?

    thanks.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  6. #1166
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,582
    Plugin Contributions
    29

    Default Re: Ultimate SEO 2.200 [Support Thread]

    Quote Originally Posted by carlwhat View Post
    jim,
    thanks for responding. must have been a little late bleary looking at this problem.

    in any event, what are your settings? if you look at the code:
    The settings for this site are:
    Click image for larger version. 

Name:	usu.png 
Views:	67 
Size:	41.7 KB 
ID:	17056

  7. #1167
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,842
    Plugin Contributions
    11

    Default Re: Ultimate SEO 2.200 [Support Thread]

    these 2 need to be set like this and then i'm guessing it would fail:

    Format of alternate URLs parent
    Display categories as directories off

    best.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  8. #1168
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,582
    Plugin Contributions
    29

    Default Re: Ultimate SEO 2.200 [Support Thread]

    Quote Originally Posted by carlwhat View Post
    these 2 need to be set like this and then i'm guessing it would fail:

    Format of alternate URLs parent
    Display categories as directories off

    best.
    I tried those and it broke my site, thanks a lot!! Ha, just kidding.

    It did result in a 500 error, so confirms your suspicions.

  9. #1169
    Join Date
    Jan 2013
    Posts
    45
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200 [Support Thread]

    Hi,

    I have a problem, when I turn on the Utimate Seo Urls, after that i have Number of Queries on the web site higher than 1600. In admin are all caching turned on. Where is the problem? Can someone help me? Thank you in advance.Click image for larger version. 

Name:	urls.jpg 
Views:	114 
Size:	35.3 KB 
ID:	17067

  10. #1170
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Ultimate SEO 2.200 [Support Thread]

    Quote Originally Posted by carlwhat View Post
    jim,
    thanks for responding. must have been a little late bleary looking at this problem.

    in any event, what are your settings? if you look at the code:

    Code:
        if(USU_FORMAT == 'parent' && USU_CATEGORY_DIR == 'off') {
           $pName = $this->get_category_name($cID !== null ? $cID : (int)$result->fields['master_id'], 'original') . '-' . $pName;
        }
    you will not hit this problem unless USU_FORMAT is set to parent and USU_CATEGORY_DIR is set to off.

    i was able to get around this problem by modifying the code to:

    Code:
        if(USU_FORMAT == 'parent' && USU_CATEGORY_DIR == 'off') {
            $tempMID = ($cID !== null ? $cID : $result->fields['master_id']);
            $pName = $this->get_category_name($tempMID, 'original') . '-' . $pName;
        }
    curious if anyone else has experienced this?

    thanks.
    @carlwhat, you can probably accomplish the same thing in the original line, by simply adding an extra set of parentheses around:

    ($cID !== null ? $cID : $result->fields['master_id'])

    (ie: before the ", 'original'" part)

    Your approach isn't wrong though.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 

Similar Threads

  1. Ultimate Fade-In Slidehow Support thread
    By outeredge2 in forum All Other Contributions/Addons
    Replies: 158
    Last Post: 4 Feb 2017, 03:10 AM
  2. Ultimate Cross Sell [Support Thread]
    By ultimate_zc in forum All Other Contributions/Addons
    Replies: 239
    Last Post: 17 May 2015, 03:25 AM
  3. Ultimate Content Glider [Support Thread]
    By ultimate_zc in forum All Other Contributions/Addons
    Replies: 11
    Last Post: 4 Sep 2012, 05:16 AM
  4. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 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