Results 1 to 10 of 5054

Hybrid View

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

    Default Re: Simple SEO URL [support thread]

    I have the same problem as crazycucumber. Now I have Simple SEO installed its all working perfectly apart from when I look at whos online, every real person visiting my site is showing as being on:

    /includes/templates/my_template/images/pixel_trans.gif

    or

    /includes/templates/my_template/images/sidebox.gif

    Only Robots and aolproxy are showing he actual pages that they are on??

    Please help, i hope there is a fix for this :o)

    Phil

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

    Default Re: Simple SEO URL [support thread]

    Also I saw a similar post back in this thread and you said to put popup_image in the exclude list, i've done this and its still the same.

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

    Default Re: Simple SEO URL [support thread]

    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

  4. #4
    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

  5. #5
    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. #6
    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. #7
    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. #8
    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

 

 

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

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