DavidR, on Jun 15 2005, 10:16 AM, said:
David
The information pages unlimited problem...
Posted 15 June 2005, 16:50
DavidR, on Jun 15 2005, 10:16 AM, said:
Posted 15 June 2005, 18:03
DavidR, on Jun 15 2005, 06:03 AM, said:
Posted 15 June 2005, 19:26
ptrinephi, on Jun 15 2005, 01:03 PM, said:
//BEGIN Information pages unlimited
define('TABLE_INFORMATION', 'information');
define('FILENAME_INFORMATION', 'information.php');
//END Information pages unlimited
These define lines should be in different files, the problem is that they were getting defined AFTER the seo code was generating the urls, so it was not converting the url's. To fix this, move the line define('TABLE_INFORMATION', 'information'); to the end of the file includes/database_tables.php before the ?> at the end of the file. define('FILENAME_INFORMATION', 'information.php');to the end of teh file includes/filenames.php before the ?> at the end of the file.Posted 16 June 2005, 00:10
Posted 16 June 2005, 00:16
Posted 16 June 2005, 01:01
Posted 16 June 2005, 03:20
glen666, on Jun 15 2005, 07:10 PM, said:
Posted 16 June 2005, 03:36
jonyo, on Jun 15 2005, 11:20 PM, said:
Posted 16 June 2005, 08:10
jonyo, on Jun 16 2005, 03:20 AM, said:
Posted 16 June 2005, 09:18
Posted 16 June 2005, 11:16
glen666, on Jun 16 2005, 04:18 AM, said:
Posted 16 June 2005, 12:18
Posted 17 June 2005, 06:41
glen666, on Jun 16 2005, 12:18 PM, said:
Posted 17 June 2005, 12:19
hakan haknuz, on Jun 17 2005, 06:41 AM, said:
Posted 17 June 2005, 12:53
Barido, on Jun 16 2005, 03:36 AM, said:
Posted 17 June 2005, 15:47
Posted 17 June 2005, 18:42
Posted 19 June 2005, 09:57
# $Id: .htaccess,v 1.3 2003/06/12 10:53:20 hpdl Exp $
#
# This is used with Apache WebServers
#
# For this to work, you must include the parameter 'Options' to
# the AllowOverride configuration
#
# Example:
#
# <Directory "/usr/local/apache/htdocs">
# AllowOverride Options
# </Directory>
#
# 'All' with also work. (This configuration is in the
# apache/conf/httpd.conf file)
# The following makes adjustments to the SSL protocol for Internet
# Explorer browsers
<IfModule mod_setenvif.c>
<IfDefine SSL>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
</IfDefine>
</IfModule>
# Fix certain PHP values
# (commented out by default to prevent errors occuring on certain
# servers)
#<IfModule mod_php4.c>
# php_value session.use_trans_sid 0
# php_value register_globals 1
#</IfModule>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /catalog/
RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-m-(.*).html$ index.php?manufacturers_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pi-(.*).html$ popup_image.php?pID=$2&%{QUERY_STRING}
RewriteRule ^(.*)-t-(.*).html$ articles.php?tPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-a-(.*).html$ article_info.php?articles_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pr-(.*).html$ product_reviews.php?products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pri-(.*).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-i-(.*).html$ information.php?info_id=$2&%{QUERY_STRING}
Posted 19 June 2005, 17:04
Posted 20 June 2005, 15:11