Hello Oliver,
thats it. Printing works fine.
Knut
[SOLVED] Print layout not working in 1.2.3 DEV
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
I can't believe what a simple fix there was to this issue!
Because of security restrictions on my server, I had comment out to the following lines from .htaccess
Then, I put then in a local php.ini file that looks like this:
Because of these simple changes, I just kept using the .htaccess file from older versions with the lines commented out after upgrading or installing 1.2.3. Anyways, Oliver, you pointed out the problem with the change from a comma to a period in .htaccess. After uploading the .htaccess file for 1.2.3 with magic quotes and register globals commented out, my print layouts working correctly on 1.2.3 with rewrite. Thanks for the help!
Because of security restrictions on my server, I had comment out to the following lines from .htaccess
Code: Select all
php_flag magic_quotes_gpc Off
php_flag register_globals Off
Code: Select all
magic_quotes_gpc = Off
register_globals = Off