Page 374 of 506 FirstFirst ... 274324364372373374375376384424474 ... LastLast
Results 3,731 to 3,740 of 5054
  1. #3731
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by 21zerogo View Post
    Q??? simple seo url issue

    hello, i have a question. I am pretty much set on the install and workings of the simple seo url mod and it is working fine But......

    When I was doing a test purchase. I tried to remove the product from the shopping cart and the page just reloads with out removing the product from the shopping cart.

    Do you have any idea why this would be happening?

    Any help would be great. thanks

    JP

    site: http://21zerogo.com


    I am using version16|Beta 3.7.1 with zen cart 1.3.8a ===================================

    yellow1912

    Answer!!!

    It's simple, just go into includes/classes/ssu/cores/link.php and remove all the instances of urlencode found around line 380 - 390, there should be 2.

    Change urlencode($value) to just ($value)
    ##############################___
    Ajax Checkout - Zencart Addons - Speed Up your Zencart
    Do not PM for help unless I ask you to - post in the forum so everyone can read and benefit!

    =======================================
    Here is the
    Code...

    359 - 390 of includes/classes/ssu/cores/link.php

    359 * Takes the parameters in the query string and turns that to our nice looking link
    360 */
    361 function parseParams(&$languages_code, &$page, $parameters){
    362 $parameters = trim($parameters,' ?&');
    363 $set_cache = false;
    364 $query_string = $params = '';
    365 $main_page = $page;
    366 $languages_id = SSUConfig::registry('configs', 'languages_id');
    367
    368 if(!empty($parameters)){
    369 $parsers = SSUConfig::registry('plugins', 'parsers');
    370 $cache_filename = md5($page.$parameters);
    371
    372 foreach($parsers as $key => $parser){
    373 if(call_user_func_array(array("{$parser}Parser", "identifyPage2"), array(&$page, $parameters)) !== false){
    374 if(($params = SSUCache::read("{$cache_filename}_{$languages_code}", 'pc', true)) !== false)
    375 return $params;
    376 $set_cache = true;
    377 }
    378 elseif(call_user_func_array(array("{$parser}Parser", "identifyParam"), array($parameters)) !== false){
    379 if(($params = SSUCache::read("{$cache_filename}_{$languages_code}", 'pc', true)) !== false)
    380 return $params;
    381 $set_cache = true;
    382 //unset($parsers[$key]);
    383 }
    384 else
    385 unset($parsers[$key]);
    386 }
    387
    388 // take out the empty variables
    389 $params = array();
    390 parse_str($parameters, $parameters);

    I really didnt see where to make the modifications yellow1912 had mentioned in a PM. Anyone know how to fix this?

    Thanks in advance to any help out there.

    JP
    You should just search for urlencode($value)
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  2. #3732
    Join Date
    Jul 2009
    Location
    USA
    Posts
    14
    Plugin Contributions
    0

    Default Re: Can't remove a product with attributes from the shopping cart with Simple SEO add

    I am having the same issue and test results. I have looked and searched for the urlencode($value) in the php code and dont find it anywhere. Maybe I am missing something. ??

  3. #3733
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Can't remove a product with attributes from the shopping cart with Simple SEO add

    All support questions should be posted inside support thread dedicated to this module.

    Regards

    Raine
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  4. #3734
    Join Date
    Jul 2009
    Location
    USA
    Posts
    14
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    PHP Code:
                                return $params;
                            
    $set_cache true;
                            
    //unset($parsers[$key]);
                        
    }
                        else 
                            unset(
    $parsers[$key]);
                    }
                    
                    
    // take out the empty variables
                    
    $params = array();
                    
    parse_str($parameters$parameters); 
    this is line 380 - 390

    I am not a code person, Is there any way you can be more specific.

  5. #3735
    Join Date
    Jul 2009
    Location
    USA
    Posts
    14
    Plugin Contributions
    0

    Default Re: Can't remove a product with attributes from the shopping cart with Simple SEO add


  6. #3736
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    On your editor, use the "search" feature, usually the hot key is Ctrl-F to find urlencode($value)
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  7. #3737
    Join Date
    Jul 2009
    Location
    USA
    Posts
    14
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    line 400 -407
    PHP Code:
                    foreach($parameters as $key => $value){
                        if(
    $value == || !empty($value)){
                            
    // exclude certain query keys from being seo-iezed
                            
    if($this->checkQueryExcludedList($key))
                                
    $query_string .= $key.'='.urlencode($value).'&';
                            else{
                                
    $params[] = $key;
                                
    $params[] = urlencode($value); 
    so I should change the code to just
    PHP Code:
    ($value
    I will try it out right now thanks.

  8. #3738
    Join Date
    Jul 2009
    Location
    USA
    Posts
    14
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    awesome it works. Thanks Raine

  9. #3739
    Join Date
    May 2008
    Posts
    261
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi, Yellow.

    Reaaly great mod.

    I installed few month ago, it works fine.

    but today, when i clear the cache through Admin--extras--simple SEO manager, it says
    "cache/ssu/aliases folder is not writable
    /cache/ssu/pc folder is not writable"

    then, i can not find ssu folder through FTP, it is missing.
    even though i recreate ssu folder, it was then deleted automatically.

    what problely the problem is?
    what is the latest version of SSU now?

    many thanks for your suggestions!!!!

  10. #3740
    Join Date
    May 2008
    Posts
    261
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    hello, Yellow,

    Just now re-installed SSU 3.71, new problem occured.

    1> no simple seo menu appear under Admin--Config

    2, able to visit Extras--Simple SEO manager, the problem is all the dynamic menu does not show auto when mouse hover on.

    3> when click Manage Aliases,, it says 1146 Table 'mypopever.links_aliases' doesn't exist
    in:
    [SELECT * FROM links_aliases]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields
    .

    any further suggestions?
    Last edited by Jerry5763837; 8 Sep 2009 at 06:11 AM. Reason: more problem

 

 

Similar Threads

  1. v151 Simple SEO URLs for ZC 1.5.x [Support Thread]
    By cvhainb in forum All Other Contributions/Addons
    Replies: 46
    Last Post: 8 Jun 2022, 09:42 AM
  2. Simple SEO URL, Ultimate SEO URLs, Ceon URI Mapping SEO
    By pizza392 in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 21 Jan 2015, 10:49 AM
  3. How do I tell what version my Simple SEO URL addon mod, and others, are?
    By kevinmc3 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 6 May 2010, 01:32 AM
  4. Can't create new thread in Simple SEO URL forum
    By gseiber in forum General Questions
    Replies: 1
    Last Post: 3 Apr 2010, 01:56 PM
  5. 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