Activity Stream
48,167 MEMBERS
6345 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 2 of 2
  1.     
    #1
    Member

    Default Help with .htaccess (willing to pay for help)

    Hi guys.
    I'm running a forum on Kloxo with VBSEO.
    Since Servedome crapped out on us I had to use a Kloxo backup to reinstall my forum in another host.

    Ever since the installation I've been getting some frustrating "http 500 error" messages on the forum.

    This is what my .htaccess file looks like:

    Code: 
    # Comment the following line (add '#' at the beginning)
    # to disable mod_rewrite functions.
    # Please note: you still need to disable the hack in
    # the vBSEO control panel to stop url rewrites.
    RewriteEngine On
    
    # Some servers require the Rewritebase directive to be
    # enabled (remove '#' at the beginning to activate)
    # Please note: when enabled, you must include the path
    # to your root vB folder (i.e. RewriteBase /forums/)
    #RewriteBase /
    
    #RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
    #RewriteRule (.*) http://www.yourdomain.com/forums/$1 [L,R=301]
    
    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
    
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap)
    RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ vbseo.php [L,QSA]
    
    # Turn on Expires and set default to 0
    ExpiresActive On
    ExpiresDefault A0
    
    # Force no caching for dynamic files
    <FilesMatch "\.(php|cgi|pl|htm|html)$">
    ExpiresActive Off
    Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"
    Header set Pragma "no-cache"
    </FilesMatch>
    
    ###Start Kloxo PHP config Area
    ###Please Don't edit these comments or the content in between. kloxo uses this to recognize the lines it writes to the the file. If the above line is corrupted, it may fail to recognize them, leading to multiple lines.
    <Ifmodule mod_php4.c>
    php_value error_log /home/admin/__processed_stats/hd-dump.org.phplog
    php_value upload_max_filesize 2M
    php_value max_execution_time  30
    php_value max_input_time  60
    php_value memory_limit  32M
    php_value post_max_size  8M
    php_flag register_globals  off
    php_flag display_errors  off
    php_flag file_uploads  on
    php_flag log_errors  off
    php_flag output_buffering  off
    php_flag register_argc_argv  on
    php_flag magic_quotes_gpc   off
    php_flag magic_quotes_runtime  off
    php_flag magic_quotes_sybase  off
    php_flag mysql.allow_persistent  off
    php_flag register_long_arrays  on
    php_flag allow_url_fopen  on
    php_flag cgi.force_redirect  on
    php_flag enable_dl  on
    </Ifmodule>
    <Ifmodule mod_php5.c>
    php_value error_log /home/admin/__processed_stats/hd-dump.org.phplog
    php_value upload_max_filesize 2M
    php_value max_execution_time  30
    php_value max_input_time  60
    php_value memory_limit  32M
    php_value post_max_size  8M
    php_flag register_globals  off
    php_flag display_errors  off
    php_flag file_uploads  on
    php_flag log_errors  off
    php_flag output_buffering  off
    php_flag register_argc_argv  on
    php_flag magic_quotes_gpc   off
    php_flag magic_quotes_runtime  off
    php_flag magic_quotes_sybase  off
    php_flag mysql.allow_persistent  off
    php_flag register_long_arrays  on
    php_flag allow_url_fopen  on
    php_flag cgi.force_redirect  on
    php_flag enable_dl  on
    </Ifmodule>
    
    ###End Kloxo PHP config Area
    Any ideas?
    If anyone who could help me with this I would greatly appreciate it.

    $5 reward to whoever solved this issue

    Cheers.
    woja Reviewed by woja on . Help with .htaccess Hi guys. I'm running a forum on Kloxo with VBSEO. Since Servedome crapped out on us I had to use a Kloxo backup to reinstall my forum in another host. Ever since the installation I've been getting some frustrating "http 500 error" messages on the forum. This is what my .htaccess file looks like: # Comment the following line (add '#' at the beginning) Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Banned
    Website's:
    besfortkryeziu.com cw-network.net
    I dont like that.

    #RewriteCond &#37;{HTTP_HOST} !^www\.yourdomain\.com
    #RewriteRule (.*) http://www.yourdomain.com/forums/$1 [L,R=301]
    The ones with red must necessary be edited.


    # Comment the following line (add '#' at the beginning)
    # to disable mod_rewrite functions.
    # Please note: you still need to disable the hack in
    # the vBSEO control panel to stop url rewrites.
    RewriteEngine On

    # Some servers require the Rewritebase directive to be
    # enabled (remove '#' at the beginning to activate)
    # Please note: when enabled, you must include the path
    # to your root vB folder (i.e. RewriteBase /forums/)
    #RewriteBase /

    #RewriteCond %{HTTP_HOST} !^www\.cw-crew\.info
    #RewriteRule (.*) http://www.cw-crew.info/forum/$1 [L,R=301]

    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap)
    RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ vbseo.php [L,QSA]
    This is .htacess main file.The one you have has more unneeded php codes below.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Vb Seo .htaccess Help
    By sunnyx12x21x in forum vBulletin
    Replies: 9
    Last Post: 17th Jul 2011, 11:25 AM
  2. help with htaccess
    By softleaks in forum Webmaster Discussion
    Replies: 2
    Last Post: 3rd Jun 2011, 06:43 PM
  3. .htaccess Help Please
    By l0calh0st in forum Web Development Area
    Replies: 3
    Last Post: 4th Apr 2011, 03:29 PM
  4. .htaccess help.!
    By vorazeal in forum Webmaster Discussion
    Replies: 1
    Last Post: 25th Dec 2010, 05:59 PM
  5. .htaccess help
    By Nemesis in forum Webmaster Discussion
    Replies: 1
    Last Post: 21st Mar 2010, 07:13 PM

Tags for this Thread

BE SOCIAL