Does anyone know the rewrite code for phpfox ?
as i need to add it to my htaccess file.
thanks.

Does anyone know the rewrite code for phpfox ?
as i need to add it to my htaccess file.
thanks.
tell us the profile links
is it like profileview.php?user=lol
Thats my rewrite, but I'm made my system with Pixzo (HxF User)Code:AddHandler application/x-httpd-php5 .php Options +FollowSymLinks RewriteEngine on RewriteRule profile/(.*) profile2.php?user=$1 RewriteRule action/(.*) action.php?f=$1 RewriteRule player/(.*) playercore.php?p=$1 RewriteRule blogs/(.*) nivadeblogs.php?a=$1
Last edited by Independent; 25-06-2008 at 10:07 PM.
I like it how you made out as if you made that code ^.^ Even though its just a generator on the internet.
But yes, look at how that works by grabbing the data after the slash and then formatting it in to the correct URL (of which of course is hidden thanks to rewrite module).
Welcome to exploit alley, don't ever use wildcards for any character unless you intend to use any character, usernames shouldn't have stupid characters like ~$@")(£!("$*() in them. They should be alphanumeric with no spaces.tell us the profile links
is it like profileview.php?user=lol
Thats my rewrite, but I'm made my system with Pixzo (HxF User)Code:AddHandler application/x-httpd-php5 .php Options +FollowSymLinks RewriteEngine on RewriteRule profile/(.*) profile2.php?user=$1 RewriteRule action/(.*) action.php?f=$1 RewriteRule player/(.*) playercore.php?p=$1 RewriteRule blogs/(.*) nivadeblogs.php?a=$1
visit my internet web site on the internet
http://dong.engineer/
it is just videos by bill wurtz videos you have been warned
but surely you can handle that in the php?
I mean I always filter them out in htaccess but it has never occured to me personally that it would be a huge exploit hole.
edit // this is how I have mine (originally from Greg)
Code:RewriteEngine on RewriteRule ^([A-Za-z0-9-]+)/?$ profile.php?username=$1 [L]
Last edited by Source; 26-06-2008 at 11:00 AM.
It's not a huge exploit if you handle it in the PHP, but alot of people here wont realize it until it's too late.but surely you can handle that in the php?
I mean I always filter them out in htaccess but it has never occured to me personally that it would be a huge exploit hole.
edit // this is how I have mine (originally from Greg)
Code:RewriteEngine on RewriteRule ^([A-Za-z0-9-]+)/?$ profile.php?username=$1 [L]
visit my internet web site on the internet
http://dong.engineer/
it is just videos by bill wurtz videos you have been warned
Want to hide these adverts? Register an account for free!