Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im using the redirect manager in a Joomla 2.5 and it works great. Only issue is that at some point I want to stop the redirect manager from catching the 404 urls and adding them to the backend.

How is this done? Is there a configuration option in the backend or do I need to hak the redirect plugin code? And if so how do I do it?

share|improve this question

1 Answer

Ive worked out the code way to do it, but Id prefer a backend config way.

Code fix - inside plugins/system/redirect/redirect.php comment out the following lines:

// If not, add the new url to the database.
                 $query = $db->getQuery(true);
                 $query->insert($db->quoteName('#__redirect_links'), false);
                 $columns = array( $db->quoteName('old_url'),
                                $db->quoteName('new_url'),
                                $db->quoteName('referer'),
                                $db->quoteName('comment'),
                                $db->quoteName('hits'),
                                $db->quoteName('published'),
                                $db->quoteName('created_date')
                            );
                $query->columns($columns);
                $query->values($db->Quote($current). ', '. $db->Quote('').
                            ' ,'.$db->Quote($referer).', '.$db->Quote('').',1,0, '.
                              $db->Quote(JFactory::getDate()->toSql())
                            );

                $db->setQuery($query);
                $db->query();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.