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
kguske
Site Admin



Joined: Jun 04, 2004
Posts: 6437

PostPosted: Sun Jan 01, 2006 5:59 pm Reply with quote

While working on nukeWYSIWYG, I received a great suggestion from Guardian to disable the editor for crawlers to save bandwidth. I quickly considered an approach of identifying crawlers by using the PHP get_browser function:
Code:
   if (get_cfg_var('browscap')) {

      $browser=get_browser();
   }
   if ($advanced_editor == 0 or $browser->crawler) {
      # use regular textarea
   } else {
      # use WYSIWYG editor
   }

But not all hosts maintain the browscap.ini file or allow its use. And using the get_browser function can be expensive, so I'm told. Assuming crawlers don't accept cookies, wouldn't this approach might achieve the desired results?
Code:
   if ($advanced_editor == 0 or !isset($_COOKIE)) {

      # use regular textarea
   } else {
      # use WYSIWYG editor
   }

_________________
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
hitwalker
Sells PC To Pay For Divorce



Joined:
Posts: 5661

PostPosted: Sun Jan 01, 2006 6:45 pm Reply with quote

nice discussion here..
http://forums.digitalpoint.com/archive/index.php/identifying-crawlers-avoiding-sessions/t-11763.html
 
View user's profile Send private message
kguske







PostPosted: Sun Jan 01, 2006 7:24 pm Reply with quote

Thanks, hitwalker, I saw that. It's a slightly different issue, but that gave me the idea to check for cookies. I'd like to know if anyone sees a problem with that approach.
 
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 ©