Page 7 of 33 FirstFirst ... 5678917 ... LastLast
Results 61 to 70 of 5054

Hybrid View

  1. #1
    Join Date
    Sep 2007
    Posts
    128
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hello all,
    I have installed the Simple Seo mod and when I click on a product page I get the "Page Not Found" error, only the index page is working. http://www.j w b o o k s.o r g/watchtower-magazines-leatherette-reprints-c-151

    I am getting nice product URL iin the address bar just no return page from the server.

    I believe it may be because the htaccess file is not written correctly but the doc's are a little difficult to understand if you do not know programming.

    Can anyone help?

    A.

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by 4thwave View Post
    Hello all,
    I have installed the Simple Seo mod and when I click on a product page I get the "Page Not Found" error, only the index page is working. http://www.j w b o o k s.o r g/watchtower-magazines-leatherette-reprints-c-151

    I am getting nice product URL iin the address bar just no return page from the server.

    I believe it may be because the htaccess file is not written correctly but the doc's are a little difficult to understand if you do not know programming.

    Can anyone help?

    A.
    More than likely you have the htaccess set incorrectly. For you site, try to use RewriteBase /
    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

  3. #3
    Join Date
    Sep 2007
    Posts
    128
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    More than likely you have the htaccess set incorrectly. For you site, try to use RewriteBase /
    Thank you for the help!!!

    Should the file look like this?

    RewriteEngine on
    RewriteBase /
    RewriteRule ^productid([^.]+).*$ yourscript.php?id=$1 [T=application/x-httpd-php]


    Also, does it still take GoDaddy awhile to implement the .htaccess?

    A

  4. #4
    Join Date
    Sep 2007
    Posts
    128
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    here is what I get with the "/" entered:

    http://www.j w b o o k s.o r g/russell-rutherford-studies-in-the-scriptures-c-56?zenid=63v3sgcehss6oldlo8q65plpi4

    Doen't seem right?:

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by 4thwave View Post
    here is what I get with the "/" entered:

    http://www.j w b o o k s.o r g/russell-rutherford-studies-in-the-scriptures-c-56?zenid=63v3sgcehss6oldlo8q65plpi4

    Doen't seem right?:
    If you mean the zenid, yes it should be there.

    Are you hosting on GoDaddy? Change to htaccess on godaddy may take hours to work.
    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

  6. #6
    Join Date
    Jun 2006
    Location
    UK
    Posts
    65
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I'm trying to install version ssu_beta_3.5.7(php5), which is the current latest version (I believe) on http://store.splatcooking.net

    I've followed the instructions on the wiki and modified the .htaccess file using the suggested content from ssu_check.php. When I turn on ssu the modified urls are being served up, but clicking on a link results in a 'Page Not Found' error. What are the troubleshooting steps I should take?
    Last edited by pglock; 18 Jan 2009 at 03:52 PM. Reason: spelling errors

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by pglock View Post
    I'm trying to install version ssu_beta_3.5.7(php5), which is the current latest version (I believe) on http://store.splatcooking.net

    I've followed the instructions on the wiki and modified the .htaccess file using the suggested content from ssu_check.php. When I turn on ssu the modified urls are being served up, but clicking on a link results in a 'Page Not Found' error. What are the troubleshooting steps I should take?
    1. Post the htaccess content here
    2. Make sure your server does have mod_rewrite
    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

  8. #8
    Join Date
    Jun 2006
    Location
    UK
    Posts
    65
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    My .htaccess file is:
    Code:
    #### BOF SSU 
    Options +FollowSymLinks -MultiViews 
    RewriteEngine On 
    RewriteBase /store/ 
    
    # Deny access from .htaccess 
    RewriteRule ^\.htaccess$ - [F] 
    
    RewriteCond %{SCRIPT_FILENAME} !-f 
    RewriteCond %{SCRIPT_FILENAME} !-d 
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA] 
    
    # STRIP THE REWRITEBASE RULE FROM NON-SSL CONNECTIONS. 
    RewriteCond %{SERVER_PORT} 80 
    RewriteCond %{REQUEST_URI} ^/store/ 
    RewriteRule ^(.*) /index.php?/$1 [E=VAR1:$1,QSA,L] 
    #### EOF SSU
    This is what ssu_check.php suggested. My apache module config is:
    Code:
    # httpd -l
    Compiled in modules:
      core.c
      mod_authn_file.c
      mod_authn_default.c
      mod_authz_host.c
      mod_authz_groupfile.c
      mod_authz_user.c
      mod_authnz_ldap.c
      mod_authz_default.c
      mod_auth_basic.c
      mod_auth_digest.c
      mod_include.c
      mod_filter.c
      util_ldap.c
      mod_log_config.c
      mod_logio.c
      mod_env.c
      mod_expires.c
      mod_headers.c
      mod_unique_id.c
      mod_setenvif.c
      mod_proxy.c
      mod_proxy_connect.c
      mod_proxy_ftp.c
      mod_proxy_http.c
      mod_proxy_ajp.c
      mod_proxy_balancer.c
      mod_ssl.c
      prefork.c
      http_core.c
      mod_mime.c
      mod_dav.c
      mod_status.c
      mod_autoindex.c
      mod_asis.c
      mod_info.c
      mod_suexec.c
      mod_cgi.c
      mod_dav_fs.c
      mod_dav_lock.c
      mod_negotiation.c
      mod_dir.c
      mod_actions.c
      mod_userdir.c
      mod_alias.c
      mod_rewrite.c
      mod_so.c
    looks to me as though mod_rewrite is enabled. Any help?

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

    Default Re: Simple SEO URL [support thread]

    @pglock: I dont think you need /store/
    yours should be RewriteBase /
    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

  10. #10
    Join Date
    Jun 2006
    Location
    UK
    Posts
    65
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Thanks for the quick response (don't you sleep?). I've tried modifying the .htaccess file to 'ReWriteBase /' , but that gave me a 500 error so I replaced it with the one from the install package and changed that to 'ReWriteBase /' .

    When I turn ssu on, each rewritten url is still in the form 'store.splatcooking.net/store/xxx'.

    This domain is a subdomain of www.splatcooking.net, the files are located in .../public_html/store i.e. it is possible to browse to the same files at www.splatcooking.net/store. Could this be why the 'store' gets added to the rewritten url? In which case, could some regular expression guru advise on how to format the rewrite rules please.

 

 
Page 7 of 33 FirstFirst ... 5678917 ... LastLast

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