• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] login error 404

Started by slmovix,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

slmovixTopic starter

Hi guys,

I installed v3.6 on hostupon shared server,
I cannot get through to login area, when i try i get this

Not Found

The requested URL /login/ was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 Server at www.lanka-videos.com Port 80

I asked them to turn off the mod_security from the server side and still no luck
  •  

slmovixTopic starter

Please guys somebody help..
my .htaccess file looks like this

<ifmodule mod_rewrite.c="">
RewriteEngine on
RewriteBase /
RewriteRule ^embed/([^/]*)/$ /embed.php?id=$1 [L]
RewriteRule ^feed(.*)$ feed.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/?$ index.php?rp=$1 [L]
</ifmodule>
<ifmodule mod_headers.c="">
    Header set Access-Control-Allow-Origin: *
</ifmodule>

  •  

shtefcs

I had same problem. I think that fix have something to do with this

  <Directory /var/www/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
        </Directory>



Cant remember where is it, in some config file or php.ini. But, you can google or ask your support.
  •  

slmovixTopic starter

Than you shtefcs

guys need more help here !!
  •  

PHPVibe A.

Do the other links work?
You are asking us to diagnose something on blind.

slmovixTopic starter

Alexander,

Other Links dont work either  :(

  •  

PHPVibe A.

Is mod_rewrite enabled? Does it have AllowOverride set to all?

slmovixTopic starter

Alexander,

Problem solved thank you guys!

The problem was

Options -Indexes
<ifmodule mod_rewrite.c="">
RewriteEngine on
RewriteBase /
RewriteRule ^embed/([^/]*)/$ /embed.php?id=$1 [L]
RewriteRule ^feed(.*)$ feed.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/?$ index.php?rp=$1 [L]
</ifmodule>
<ifmodule mod_headers.c="">
    Header set Access-Control-Allow-Origin: *
</ifmodule>

This part
<ifmodule mod_rewrite.c="">

this should be like this
<ifmodule mod_rewrite.c>

again thank you guys!!
  •  

PHPVibe A.

But, it's like this in the pack...

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule ^embed/([^/]*)/$ /embed.php?id=$1 [L]
RewriteRule ^feed(.*)$ feed.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/?$ index.php?rp=$1 [L]
</IfModule>
<ifModule mod_headers.c>
    Header set Access-Control-Allow-Origin: *
</ifModule>

slmovixTopic starter

In the documentation it not like that.
anyways got it to work and im happy now:)
Thank you
  •  

PHPVibe A.

Oh, I will check docs, thanks for letting me know.

Similar topics (7)