Results 1 to 11 of 11

PHP Warning: preg_replace - help!

This is a discussion on PHP Warning: preg_replace - help! within the Troubleshooting forums, part of the vBSEO SEO Plugin category; I have been receiving lots of this warnings. Does anyone knows what they mean? [Thu Mar 19 01:12:00 2009] [error] ...

  1. #1
    Junior Member
    Real Name
    Pedro
    Join Date
    Mar 2008
    Posts
    13
    Liked
    0 times

    PHP Warning: preg_replace - help!

    I have been receiving lots of this warnings. Does anyone knows what they mean?


    [Thu Mar 19 01:12:00 2009] [error] [client xxx.xxx.xxx.xxx] PHP Warning: preg_replace() [function.preg-replace]: No ending delimiter '#' found in /var/www/html/includes/functions_vbseo_crr.php on line 101, referer: G6 Team - Fórum
    [Thu Mar 19 01:11:57 2009] [error] [client xxx.xxx.xxx.xxx] PHP Warning: preg_replace() [function.preg-replace]: No ending delimiter '#' found in /var/www/html/includes/functions_vbseo_crr.php on line 101
    [Thu Mar 19 01:11:56 2009] [error] [client xxx.xxx.xxx.xxx] PHP Warning: preg_replace() [function.preg-replace]: No ending delimiter '#' found in /var/www/html/includes/functions_vbseo_crr.php on line 101, referer: [Informação] 31 dicas para deixar o PC mais rápido - G6 Team

  2. #2
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    Can you please post your CRR rules
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  3. #3
    Junior Member
    Real Name
    Pedro
    Join Date
    Mar 2008
    Posts
    13
    Liked
    0 times
    I have only this ones:

    // ibProArcade
    'arcade\.php$' => 'arcade.html'
    'arcade\.php\?&$' => 'arcade.html'
    'arcade\.php\?&act=Arcade$' => 'arcade.html'
    'arcade\.php\?do=play&gameid=(\d+)$' => 'arcade/game/$1.html'
    'arcade\.php\?&act=Arcade&do=play&gameid=(\d+)$' => 'arcade/game/$1.html'
    'arcade\.php\?act=Arcade&do=play&gameid=(\d+)$' => 'arcade/game/$1.html'
    'arcade\.php\?&do=play&gameid=(\d+)$' => 'arcade/game/$1.html'
    'arcade\.php\?do=play&gameid=(\d+)$' => 'arcade/game/$1.html'
    'arcade\.php\?do=stats&gameid=(\d+)$' => 'arcade/game/highscores/$1.html'
    'arcade\.php\?&act=Arcade&do=stats&gameid=(\d+)$' => 'arcade/game/highscores/$1.html'
    'arcade\.php\?&act=Arcade&module=report&user=(\d+) $' => 'arcade/game/user-$1.html'
    'arcade\.php\?&act=Arcade&do=viewtournaments$' => 'arcade/viewtournaments.html'
    'arcade\.php\?&act=Arcade&do=viewtourney&tid=(\d+) $' => 'arcade/tournament/$1.html'
    'arcade\.php\?&do=viewtourney&tid=(\d+)$' => 'arcade/tournament/$1.html'
    'arcade\.php\?&act=Arcade&module=favorites&gameid =(\d+)$' => 'arcade/favgameid-$1.html'
    'arcade\.php\?&act=Arcade&cat=(\d+)$' => 'arcade/category-$1.html'
    'arcade\.php\?&act=Arcade&cat=(\d+)&st=(\d+)$' => 'arcade/category-$1/$2.html'
    'arcade\.php\?&act=Arcade&module=report$' => 'arcade/own_report.html'
    'arcade\.php\?&act=Arcade&module=settings$' => 'arcade/settings.html'
    'arcade\.php\?&act=Arcade&module=modcp$' => 'arcade/modcp.html'
    'arcade\.php\?&do=viewtourneyend$' => 'arcade/viewtourneyend.html'
    'arcade\.php\?&do=viewtournaments$' => 'arcade/viewtournaments.html'
    'arcade\.php\?&act=Arcade&do=createtourney$' => 'arcade/createtourney.htm'
    'arcade\.php\?&act=Arcade&module=league$' => 'arcade/league.html'
    'arcade\.php\?&act=Arcade&module=favorites&gameid= (\d+)$' => 'arcade/add-fav-game-$1.html'
    'arcade\.php\?&act=Arcade&module=favorites$' => 'arcade/favourites.html'
    'index\.php\?&act=Arcade&do=newscore$' => 'arcade/newscore.html'
    'arcade\.php\?&act=Arcade&do=stats&gameid=(\d+)&st =(\d+)$' => 'arcade/game/highscores/$1/$2.html'
    'arcade\.php\?&act=Arcade&gsearch=(\w+)&search_typ e=1$' => 'arcade/games/$1.html'
    'arcade\.php\?&act=Arcade&gsearch=(\d+)-(\d+)&search_type=3$' => 'arcade/games/$1-$2.html'
    'arcade\.php\?&act=Arcade&do=viewtourneyend$' => 'arcade/viewtourneyend.html'

  4. #4
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    You need to add ^ to all your rewrite rules. Example :
    Code:
    '^arcade\.php$' => 'arcade.html'
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  5. #5
    Junior Member
    Real Name
    Pedro
    Join Date
    Mar 2008
    Posts
    13
    Liked
    0 times
    Ok i'll do that. Thanks.

  6. #6
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    You're welcome
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  7. #7
    Junior Member
    Real Name
    Pedro
    Join Date
    Mar 2008
    Posts
    13
    Liked
    0 times
    Oh man it didn't work. Still having those warnings.

    [Fri Mar 20 14:10:00 2009] [error] [client xxx.xxx.xxx] PHP Warning: preg_replace() [function.preg-replace]: No ending delimiter '#' found in /var/www/html/includes/functions_vbseo_crr.php on line 101
    [Fri Mar 20 14:09:54 2009] [error] [client xxx.xxx.xxx] PHP Warning: preg_replace() [function.preg-replace]: No ending delimiter '#' found in /var/www/html/includes/functions_vbseo_crr.php on line 101, referer: G6 Team
    [Fri Mar 20 14:09:50 2009] [error] [client xxx.xxx.xxx] PHP Warning: preg_replace() [function.preg-replace]: No ending delimiter '#' found in /var/www/html/includes/functions_vbseo_crr.php on line 101
    Any new sugestions?

  8. #8
    Junior Member
    Real Name
    Pedro
    Join Date
    Mar 2008
    Posts
    13
    Liked
    0 times
    @Mert Gökçeimam, any help here?

  9. #9
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    Please create a support ticket with admincp , ftp and vbseo cp login info so we can check.
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  10. #10
    Junior Member
    Real Name
    Pedro
    Join Date
    Mar 2008
    Posts
    13
    Liked
    0 times
    Problem solved with vBSEO 3.3.0 Gold.

  11. #11
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    Great
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

Similar Threads

  1. PHP Warning
    By newguy in forum Troubleshooting
    Replies: 6
    Last Post: 04-26-2008, 11:15 AM
  2. Warning in the cP
    By iogames in forum URL Rewrite Settings
    Replies: 3
    Last Post: 01-13-2008, 10:46 AM
  3. Warning: vbseo_sitemap_task
    By Duke in forum Troubleshooting
    Replies: 8
    Last Post: 06-12-2007, 09:34 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •