New Zenner
- Join Date:
- Feb 2006
- Posts:
- 9
- Plugin Contributions:
- 0
Chemo's Ultimate URL's
The rewrite is working wonderfully, but then when a new user tries to create an account, it is not working:
htaccess settings include
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index\.php?seo_url=$1&%{QUERY_STRING} [L]
I have the SEO_fixes_for_3.0.0.b1, and seo_urls_3.0.0-beta1.
The html_output file includes the additions are required:
function zen_href_link($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true, $static = false, $use_dir_ws_catalog = true) {
// not all core scripts (such as the Paypal IPN handler) implement the core auto loader system (WTF!?)
if (!isset($GLOBALS['SeoUrl'])) {
require_once(DIR_FS_CATALOG . DIR_WS_CLASSES . 'seo/seo.url.php');
$GLOBALS['SeoUrl'] =& new SeoUrl($GLOBALS['db']);
$GLOBALS['SeoUrl']->setupLanguage($_SESSION['languages_id']);
}
return $GLOBALS['SeoUrl']->buildHrefLink($page, $parameters, $connection, $add_session_id, $static, $use_dir_ws_catalog);
}
/*
* The HTML href link wrapper function
*/
function zen_href_link_stock($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true, $static = false, $use_dir_ws_catalog = true) {
All the admin options are turned on, and I have it based from root.
Where have I gone wrong, what is the issue. Yes, I could put up a bug request, but will first hear from the community about it.
Any ideas