Author |
Message |
kguske
Site Admin

Joined: Jun 04, 2004
Posts: 6437
|
Posted:
Fri Feb 15, 2008 4:46 pm |
|
VinDSL, nice to see you! When are you gonna release those custom scripts?  |
_________________ I search, therefore I exist...
Only registered users can see links on this board! Get registered or login! |
|
|
 |
VinDSL
Life Cycles Becoming CPU Cycles

Joined: Jul 11, 2004
Posts: 614
Location: Arizona (USA) Admin: NukeCops.com Admin: Disipal Designs Admin: Lenon.com
|
Posted:
Sun Feb 17, 2008 10:38 am |
|
kguske wrote: | VinDSL, nice to see you! When are you gonna release those custom scripts? |
Hi, kguske! Nice to be back!
LoL!
I had to create a new password - it's been so long...
On the scripts: I know it sounds fishy but I've been so busy for the last 1½ years, in my real life, that I haven't had a chance to do any projects on the side.
The move to PHP5 was necessitated by the PHP4 end of life announcement last July!
Lots of hosts are going to drop PHP4 support soon. If anything, that's what we should be worried about, no?  |
_________________ .:: "The further in you go, the bigger it gets!" ::.
.:: Only registered users can see links on this board! Get registered or login! | Only registered users can see links on this board! Get registered or login! ::. |
|
 |
 |
Raven
Site Admin/Owner

Joined: Aug 27, 2002
Posts: 17088
|
Posted:
Sun Feb 17, 2008 12:27 pm |
|
VIN!!! You old Teamster! I thought maybe you had gone the way of Jimmy H. it's been so long
Did you get that message I sent you about the bounces when attempting to reach your site? |
|
|
|
 |
Guardian2003
Site Admin

Joined: Aug 28, 2003
Posts: 6799
Location: Ha Noi, Viet Nam
|
Posted:
Sun Feb 17, 2008 2:06 pm |
|
Hey Vin - nice to see you about. I bet you forgot about that slice of pizza you were going to send so, you can keep it now, it might be abit too crispy. |
|
|
|
 |
Susann
Moderator

Joined: Dec 19, 2004
Posts: 3191
Location: Germany:Moderator German NukeSentinel Support
|
Posted:
Sun Feb 17, 2008 6:02 pm |
|
Hi Vin. I thought I could top your online time with version 6.5 some day but I switched over to RavenNuke with my good old nuke 6.5. You could do the same its quite easy. |
|
|
|
 |
VinDSL

|
Posted:
Mon Feb 18, 2008 9:27 pm |
|
Hello all~
Raven wrote: | Did you get that message I sent you about the bounces when attempting to reach your site? |
I did.
It's probably some inadvertent, overly aggressive regex in my .htaccess file!
If you could furnish me with a URI, I'll track it down...  |
|
|
|
 |
Raven

|
Posted:
Mon Feb 18, 2008 11:59 pm |
|
Thanks!
Goto http://www.ravennuke.com/HowToInstall/ and Select Credits/Contributions. Then select Enhanced Recommend Us and FeedBack modules: VinDSL and Raven
Do you plan on being active again or are you just loitering ? |
|
|
|
 |
Raven

|
Posted:
Tue Feb 19, 2008 2:17 pm |
|
|
|
 |
VinDSL

|
Posted:
Tue Feb 19, 2008 3:58 pm |
|
Score!
It turned out as suspected...
Code:#
# Block referers based on keywords found ANYWHERE in URLs.
#
RewriteCond %{HTTP_REFERER} ^(http://)?(www\.)?.*(-|.)credit(-|.).*$ [NC,OR]
|
This code was (intentionally) blocking anything with *credit* in the URI, and your referer included 'credits.php', soooo...
I added a condition (at the top) to allow 'credits.php' referers, but still block other iterations of 'credit'.
Code:#
# Prevent blocking of RavenNuke Credits/Contributions link.
#
RewriteCond %{HTTP_REFERER} !^.*/credits\.php.*$ [NC]
|
That should take care of 'the problem' regardless of the domain that initiates the link.
On 'loitering'...
Hopefully, I'll be able to slow down one of these days, and smell the flowers... sigh!
Right now, all I have is little snippets of time - to patch code, maintain sites, participate in a few forums, crank out an occasional video, et cetera.
Speaking of which...
I made a FF AVM last night, if you're interested in this sort of nonsense:
Only registered users can see links on this board! Get registered or login! (4 Min - Feature)
LoL! I know... I know...
I need to get a life, but...
It beats watching TV, yes?
I've got too much on my plate to 'loiter', but I'm still able to 'linger'...  |
|
|
|
 |
kguske

|
Posted:
Tue Feb 19, 2008 10:27 pm |
|
We'll take whatever snippets we can get! |
|
|
|
 |
montego
Site Admin

Joined: Aug 29, 2004
Posts: 9457
Location: Arizona
|
Posted:
Sat Feb 23, 2008 8:34 am |
|
Vin! Definitely good to see you back again! Hope all is well. |
_________________ Only registered users can see links on this board! Get registered or login!
Only registered users can see links on this board! Get registered or login! |
|
|
 |
redhairz
Worker


Joined: Nov 17, 2006
Posts: 222
|
Posted:
Tue Feb 26, 2008 2:30 am |
|
VinDSL wrote: | Score!
It turned out as suspected...
Code:#
# Block referers based on keywords found ANYWHERE in URLs.
#
RewriteCond %{HTTP_REFERER} ^(http://)?(www\.)?.*(-|.)credit(-|.).*$ [NC,OR]
|
This code was (intentionally) blocking anything with *credit* in the URI, and your referer included 'credits.php', soooo...
I added a condition (at the top) to allow 'credits.php' referers, but still block other iterations of 'credit'.
Code:#
# Prevent blocking of RavenNuke Credits/Contributions link.
#
RewriteCond %{HTTP_REFERER} !^.*/credits\.php.*$ [NC]
|
That should take care of 'the problem' regardless of the domain that initiates the link.
On 'loitering'...
Hopefully, I'll be able to slow down one of these days, and smell the flowers... sigh!
Right now, all I have is little snippets of time - to patch code, maintain sites, participate in a few forums, crank out an occasional video, et cetera.
Speaking of which...
I made a FF AVM last night, if you're interested in this sort of nonsense:
Only registered users can see links on this board! Get registered or login! (4 Min - Feature)
LoL! I know... I know...
I need to get a life, but...
It beats watching TV, yes?
I've got too much on my plate to 'loiter', but I'm still able to 'linger'... |
VinDSL can you recommend the video editing software? i wanted to convert youtube to wvm window player format i try many from online convertion they are all suck haha |
_________________ Jesus is Alive, He is our joy, be it good times or bad time. |
|
|
 |
Guardian2003

|
Posted:
Tue Feb 26, 2008 5:02 am |
|
Vin loved the Engel remix, love to see what you could do with Links 234  |
|
|
|
 |
VinDSL

|
Posted:
Tue Feb 26, 2008 11:50 am |
|
|
|
 |
montego

|
Posted:
Wed Feb 27, 2008 6:25 am |
|
Thank you sir! I had to get the converted...  |
|
|
|
 |
redhairz

|
Posted:
Tue Mar 18, 2008 4:49 am |
|
i try many converter from youtube flash into wav i hope the site will do wonders haa thanks you anyway |
|
|
|
 |
|