Page 373 of 506 FirstFirst ... 273323363371372373374375383423473 ... LastLast
Results 3,721 to 3,730 of 5054
  1. #3721
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by philip937 View Post
    I fixed it. Turns out it was showing the image paths for some reason due to my page calling those images when they didn't actually exist on the server! Hope this helps anyone else who might experience the same issue in the future.

    Cheers
    ##############################___
    http://www.fanciedress.co.uk - Online Fancy Dress
    Maybe you want to go a little bit more in details of what you did so others may know how you fix it.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  2. #3722
    Join Date
    Sep 2009
    Posts
    6
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by mixxin View Post
    Installed the latest SSU version on 1.3.8a and it worked perfectly.

    Just moved to a new server today and I am getting the following issue. Product urls display nicely, manufacturers on the other hand look like this below:

    website.com/index/securityToken/76bcb7d3772ff6eb9a973371ffabd2ce/manufacturers_id/16

    Any idea why?
    Anybody, please.

  3. #3723
    Join Date
    Sep 2009
    Posts
    6
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Ok, it looks like I was getting the manufacturer_id in the URL because I didn't enable the parser. I have now, my manufacturer link looks like this:

    website.com/manufacturer/securityToken/fd8c132c9cde1a15ed73e66777515200

    How can I get rid of the token? Also, this only happens when you select a manufacturer in the (i.e. form submit).

  4. #3724
    Join Date
    Sep 2009
    Posts
    6
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Ok, problem solved! I screwed up and put the Security Patch code:

    $form .= '<input type="hidden" name="securityToken" value="' . $_SESSION['securityToken'] . '" />';

    in the catalog/includes/functions/html_output.php file instead of the admin/!

    Sometimes I skim through some critical details!

  5. #3725
    Join Date
    Aug 2009
    Location
    Bedford, England
    Posts
    966
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by countrycharm View Post
    Maybe you want to go a little bit more in details of what you did so others may know how you fix it.
    hey countrycharm,

    very simple, for now I just created the images that were missing and put them where they were being called from, this is only a temporary measure as I previously did not want these images showing hence why I probably deleted them in the first place. The images I create are simple just 1px x 1px transparent images. I will now need to go in a find where on my site is calling these images and remove the code rather than removing the images.

    Phil
    ##############################___
    http://www.fanciedress.co.uk - Online Fancy Dress

  6. #3726
    Join Date
    Jul 2009
    Location
    USA
    Posts
    14
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    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

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

    Default Re: Simple SEO URL [support thread]

    another question,

    why do most of the php files have no

    ?> tag at the end of the code????

  8. #3728
    Join Date
    Aug 2009
    Posts
    31
    Plugin Contributions
    0

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

    here's the fix in case anyone else has this issue:

    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)

  9. #3729
    Join Date
    Feb 2005
    Location
    Lansing, Michigan USA
    Posts
    20,021
    Plugin Contributions
    3

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

    Or. better yet, don't waste your time with SEO mods.

  10. #3730
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by 21zerogo View Post
    another question,

    why do most of the php files have no

    ?> tag at the end of the code????
    Because this will prevent many problems down the road ^_^
    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

 

 

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