Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
Palbin
Site Admin



Joined: Mar 30, 2006
Posts: 2583
Location: Pittsburgh, Pennsylvania

PostPosted: Sun Nov 02, 2008 4:56 pm Reply with quote

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?
 
View user's profile Send private message
evaders99
Former Moderator in Good Standing



Joined: Apr 30, 2004
Posts: 3221

PostPosted: Sun Nov 02, 2008 7:47 pm Reply with quote

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! 
View user's profile Send private message Visit poster's website
Palbin







PostPosted: Sun Nov 02, 2008 8:29 pm Reply with quote

http://us.php.net/highlight_file
 
evaders99







PostPosted: Sun Nov 02, 2008 9:50 pm Reply with quote

Well I'm guessing I'm wrong then. Use that function Smile
 
gotcha
Regular
Regular



Joined: Mar 14, 2005
Posts: 91

PostPosted: Sun Nov 02, 2008 10:19 pm Reply with quote

try adding this to your .htaccess

AddType application/x-httpd-php-source .phps
 
View user's profile Send private message Visit poster's website
Palbin







PostPosted: Sun Nov 02, 2008 10:43 pm Reply with quote

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 Confused

It just keeps asking me to download it.
 
Palbin







PostPosted: Sun Nov 02, 2008 11:20 pm Reply with quote

FYI your host may not have the proper extension installed to support this. Like mine Crying or Very sad

Even though its shows up in their system MINEs. Evil or Very Mad
 
Palbin







PostPosted: Sun Nov 02, 2008 11:36 pm Reply with quote

For anyone interested this is what it should look like. (I'm using the function) Also you can set the colors in your php.ini.

http://www.phpnuke-guild.org/phpsshow.php
 
djmaze
Subject Matter Expert



Joined: May 15, 2004
Posts: 727
Location: http://tinyurl.com/5z8dmv

PostPosted: Mon Nov 03, 2008 10:32 am Reply with quote

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 
View user's profile Send private message Visit poster's website
Palbin







PostPosted: Mon Nov 03, 2008 11:46 am Reply with quote

Didn't think of that. Will have to give it a try.
 
kguske
Site Admin



Joined: Jun 04, 2004
Posts: 6437

PostPosted: Tue Nov 04, 2008 1:34 am Reply with quote

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!
 
View user's profile Send private message
djmaze







PostPosted: Tue Nov 04, 2008 2:07 pm Reply with quote

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







PostPosted: Wed Nov 19, 2008 9:26 pm Reply with quote

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







PostPosted: Fri Nov 21, 2008 5:38 pm Reply with quote

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
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©