Error?? Big Problem

Status
Not open for further replies.

talki16

New Member
Messages
11
Reaction score
0
Points
0
I have installed Social Engine 4, on my site hosted on x10hosting, but when I open it, it shows an error, but i have installed it correctly>>

You can see at http://talki.tk
 

talki16

New Member
Messages
11
Reaction score
0
Points
0
I re-installed it again, due to an error, but now I face same problem Again...??

and whenever I install a script, Do i have to post here to ask and make it work??
How to solve this problem please tell me. :frown:
 

Zubair

Community Leader
Community Support
Messages
8,766
Reaction score
305
Points
83
There are some errors in your .htaccess file. You need to correct that,

your Original .htaccess (error are red marked)
Code:
<IfModule mod_rewrite.c>
  Options +FollowSymLinks
  RewriteEngine On

  # Get rid of index.php
  RewriteCond %{REQUEST_URI} /index\.php
  RewriteRule (.*) index.php?rewrite=2 [L,QSA]

  # Rewrite all directory-looking urls
  RewriteCond %{REQUEST_URI} /$
  RewriteRule (.*) index.php?rewrite=1 [L,QSA]

  # If the file doesn[COLOR="Red"]'[/COLOR]t exist, rewrite to index
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !\.[\w]+$
  RewriteRule ^(.*)$ index.php?rewrite=1 [L,QSA]

</IfModule>

<IfModule !mod_rewrite.c>
  <IfModule mod_alias.c>
    #Isn't working quite properly
    #RedirectMatch 302 ^(((?!index.php).)*?)/$ $1/index.php
  </IfModule>
</IfModule>

# sends requests /index.php/path/to/module/ to [COLOR="Red"]"[/COLOR]index.php[COLOR="Red"]"[/COLOR]
# AcceptPathInfo On

# @todo This may not be effective in some cases
FileETag Size

Also Add this line
RewriteBase /
after this line
RewriteEngine On
So your new and working .htaccess file will look like this
Code:
<IfModule mod_rewrite.c>
  Options +FollowSymLinks
  RewriteEngine On
  RewriteBase /
  # Get rid of index.php
  RewriteCond %{REQUEST_URI} /index\.php
  RewriteRule (.*) index.php?rewrite=2 [L,QSA]

  # Rewrite all directory-looking urls
  RewriteCond %{REQUEST_URI} /$
  RewriteRule (.*) index.php?rewrite=1 [L,QSA]

  # If the file does not exist, rewrite to index
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !\.[\w]+$
  RewriteRule ^(.*)$ index.php?rewrite=1 [L,QSA]

</IfModule>

<IfModule !mod_rewrite.c>
  <IfModule mod_alias.c>
    #Isn't working quite properly
    #RedirectMatch 302 ^(((?!index.php).)*?)/$ $1/index.php
  </IfModule>
</IfModule>

# sends requests /index.php/path/to/module/ to index.php
# AcceptPathInfo On

# @todo This may not be effective in some cases
FileETag Size
 

talki16

New Member
Messages
11
Reaction score
0
Points
0
Thanks a lot for the Solution! :cool:

Now It works fine but the problem is when I am in the admin Panel, and Click on Manage Plugins like here:
errord.png


then, it shows this:
error2z.png


Can u please fix this??? :biggrin:
 

Zubair

Community Leader
Community Support
Messages
8,766
Reaction score
305
Points
83
Hello,

No, This is a problem with your script and we can`t fix that. you need to contact your script developers. They can tell you what is wrong.
 
Status
Not open for further replies.
Top