Author |
Message |
Palbin
Site Admin

Joined: Mar 30, 2006
Posts: 2583
Location: Pittsburgh, Pennsylvania
|
Posted:
Sun Nov 02, 2008 4:56 pm |
|
If you want .phps to display highlighted code is there a way to do it with the ini or htaccess or does that need to be configured to the providers end? |
|
|
|
 |
evaders99
Former Moderator in Good Standing

Joined: Apr 30, 2004
Posts: 3221
|
Posted:
Sun Nov 02, 2008 7:47 pm |
|
I think your server needs to be configured with some kind of highlighting software. PHP doesn't do this by default |
_________________ - Only registered users can see links on this board! Get registered or login! -
Need help? Only registered users can see links on this board! Get registered or login! |
|
|
 |
Palbin

|
Posted:
Sun Nov 02, 2008 8:29 pm |
|
|
|
 |
evaders99

|
Posted:
Sun Nov 02, 2008 9:50 pm |
|
Well I'm guessing I'm wrong then. Use that function  |
|
|
|
 |
gotcha
Regular


Joined: Mar 14, 2005
Posts: 91
|
Posted:
Sun Nov 02, 2008 10:19 pm |
|
try adding this to your .htaccess
AddType application/x-httpd-php-source .phps |
|
|
|
 |
Palbin

|
Posted:
Sun Nov 02, 2008 10:43 pm |
|
gotcha wrote: | try adding this to your .htaccess
AddType application/x-httpd-php-source .phps |
Was trying that and then found something about this working on suPHP
AddType x-httpd-php-source .phps
But neither one works
It just keeps asking me to download it. |
|
|
|
 |
Palbin

|
Posted:
Sun Nov 02, 2008 11:20 pm |
|
FYI your host may not have the proper extension installed to support this. Like mine
Even though its shows up in their system MINEs.  |
|
|
|
 |
Palbin

|
Posted:
Sun Nov 02, 2008 11:36 pm |
|
|
|
 |
djmaze
Subject Matter Expert

Joined: May 15, 2004
Posts: 727
Location: http://tinyurl.com/5z8dmv
|
Posted:
Mon Nov 03, 2008 10:32 am |
|
Palbin wrote: | http://us.php.net/highlight_file |
You could use that if mod_rewrite is enabled
highlight_php_file.php
Code:<?php
highlight_file($_GET['file']);
|
.htaccess
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.+\.phps)$ highlight_php_file.php?file=$1 [L]
</IfModule>
|
or just only use the following in .htaccess
Code:AddType application/x-httpd-php-source .phps
|
[edit]
Fixed space between $1 and [L]. Thanks for noticing Palbin!
And added the simple way
[/edit] |
_________________ $ mount /dev/spoon /eat/fun auto,overclock 0 1
ERROR: there is no spoon
http://claimedavatar.net/
Last edited by djmaze on Fri Nov 21, 2008 5:40 pm; edited 1 time in total |
|
|
 |
Palbin

|
Posted:
Mon Nov 03, 2008 11:46 am |
|
Didn't think of that. Will have to give it a try. |
|
|
|
 |
kguske
Site Admin

Joined: Jun 04, 2004
Posts: 6437
|
Posted:
Tue Nov 04, 2008 1:34 am |
|
djmaze, nice to see you around! Thanks for the links (both Palbin and djmaze)
That leads to highlight_string, which eliminates the need for geshi, assuming you only need PHP. Thoughts on that? |
_________________ I search, therefore I exist...
Only registered users can see links on this board! Get registered or login! |
|
|
 |
djmaze

|
Posted:
Tue Nov 04, 2008 2:07 pm |
|
I never liked Geshi it's slow and eats resources on high traffic sites.
Everyone who wants highlighting has Javascript enabled anyway so why not use client-side solutions like codepress? |
|
|
|
 |
Palbin

|
Posted:
Wed Nov 19, 2008 9:26 pm |
|
Just for anyone else doing this. There is a slight error in the code above. There was a space missing before the [L]
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.+\.phps)$ highlight_php_file.php?file=$1 [L]
</IfModule>
|
|
|
|
|
 |
djmaze

|
Posted:
Fri Nov 21, 2008 5:38 pm |
|
Oh, totally forgot to mention you can skip all the above if your server supports the following in .htaccess
Code:AddType application/x-httpd-php-source .phps
|
|
|
|
|
 |
|