Re: Chemo's Ultimate URL's
I am trying to get this working on my hardwoodcanes.com website, and I followed the instructions exactly the way I did on my other site, and "Seo Urls 3.0.0-beta1" is not showing up on my configuration tab in the admin. I've deleted my browser cache, tried to reinstall, double checked my html_output.php file.... I cant figure out what's causing it to just not show up.
Any ideas?
Re: Chemo's Ultimate URL's
I guess I just needed to give it time. It's showing now. However, whenever I enable the mod, the only page that will load is a site index with a 404 error, and if I click any product, I get "No input file specified." It is correctly translating the url though! I guess that's good. The settings are set the same as my other site... only difference is one site is being hosted on camelot (the site that works) and the other site is being hosted by go daddy ( the one that don't work ).
Thank you for any help.
Re: Chemo's Ultimate URL's
Quote:
Originally Posted by
canemasters
I guess I just needed to give it time. It's showing now. However, whenever I enable the mod, the only page that will load is a site index with a 404 error, and if I click any product, I get "No input file specified." It is correctly translating the url though! I guess that's good. The settings are set the same as my other site... only difference is one site is being hosted on camelot (the site that works) and the other site is being hosted by go daddy ( the one that don't work ).
Thank you for any help.
Is the Rewrite Module installed/configured correctly on your account with GoDaddy?
Re: Chemo's Ultimate URL's
Seems to be. It's set up the same as my other site, and that one is working.
Re: Chemo's Ultimate URL's
Is this rewrite module you speak of different than the seourl-3.00beta1 that I installed?
Re: Chemo's Ultimate URL's
Quote:
Originally Posted by
canemasters
Is this rewrite module you speak of different than the seourl-3.00beta1 that I installed?
Apache Rewrite Module is something that your host need to configure in other for rewrite functionality to work as expected.
Since the only difference between the site that works and the one that doesn't is the host, I am just thinking that perhaps it has something to do with configuration issues.
Obviously, Merlin is familiar with Zen Cart inside out and he is a certified Zen Cart host. If it's working on one site and everything is installed the same way, you should check in with your host (where it's not working).
Re: Chemo's Ultimate URL's
Quote:
Originally Posted by
BlessIsaacola
It appears this is the portion of the code creating the problem but I am not sure what to change.
PHP Code:
/**
* zen cart attributes use illegal url characters
*/
if ($this->isAttributeUri($uri) && !preg_match('/https?/', $parsedUri['scheme'])) {
$parsedUriTmp = $parsedUri;
$parsedUri = parse_url($parsedUriTmp['scheme']);
$parsedUri['query'] = preg_replace('/products_id=([0-9]+)/',
'products_id=$1:' . $parsedUriTmp['path'], $parsedUri['query']);
}
$this->doRedirection($parsedUri['query']);
}
Has anyone figured out the attribute problem? Thanks!
Re: Chemo's Ultimate URL's
Hi everyone,
Have been reading through this thread but haven't come across an answer to my question. Sorry if i've missed it but there's a lot to read! :shocking:
I've upgraded to the latest seo urls with the 5 patches (i hope) posted a couple
of pages back and have managed to get it working, including the EZ-pages which previously weren't working!! :clap:
The only problem i have at the moment is the home link gives 404 page not found but if you type in index.html you get the home page.http://www.verdecoffee.com/zencart/
These are the options i'm running:-
JD Productions: News & Article Manager: Archive, JD Productions: News & Article Manager: Article, JD Productions: News & Article Manager: Article: Comments, JD Productions: News & Article Manager: Index, JD Productions: News & Article Manager: RSS Feed, Core: Advanced Search, Core: Advanced Search: Result, Core: Category, Core: EZ Pages, Core: Manufacturer, Core: Product, Core: Product: Image, Core: Product: Reviews, Core: Product: Reviews: Info, Core: Product: Reviews: Write, Core: Default, Core: Default Skips
on zencart Zen Cart 1.3.7 with seo urls 3.0.0 beta1
.htaccess file is:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /zencart/
# EZ Pages from Ultimate Seo Urls version 2.1 to 3.X
RewriteRule ^page.html$ index\.php?main_page=page&%{QUERY_STRING} [L,R=301]
# Seo Urls version 3.x
# Don't rewrite real files or directories
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index\.php/$1 [L,QSA]
And not forgetting a big well done and thank you to everyone :clap:, this is the only time i've not been able to find a solution in these forums and i've almost got my site ready to set live.
Re: Chemo's Ultimate URL's
Okay, I am ready to uninstall this again as it doesn't support apostrophe in product name when performing a search. I tried disabling seo for advanced_search and advanced_search_result but it doesn't work.
Any ideas?
Thanks!
Re: Chemo's Ultimate URL's
in "seo.char_plugins.php" line 170 shouldnt i be like that?
PHP Code:
function isMbStringSupported() {
if (function_exists('mb_convert_encoding')) {
//old version: if (in_array($this->mbEncodings, strtoupper(CHARSET))) {
if (in_array(strtoupper(CHARSET), $this->mbEncodings)) {
return true;
}
}
return false;
}
I am very new to PHP so sorry if im outa line here.
i had "Warning: in_array(): Wrong datatype for second argument... on line 170 ..."
----
Thanks for the plugin :smile: