[ Video Sharing CMS v4 ] Quick question: Login 404

Started by sophx,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

sophxTopic starter

Hello all - just finished getting IonLoader up and running on my server, but now upon trying to log into my administrator account I am met with a 404.

QuoteThe requested URL /login&return=soph was not found on this server.

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

There was no 'login' folder in the original phpVibe bundle that I uploaded via FTP. Am I missing something, or is there something I need to create myself?

Any help would be greatly appreciated. Thanks.
  •  

sophxTopic starter

Also I do have an .htaccess file with the following code:

Quote<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>

Cheers.
  •  

sophxTopic starter

SOLVED. Everything is working now, had some errors in my .htaccess. This thread can be removed.

Quote<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule ^uploads - [L,NC]
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>
  •  

Marius P.

Hi, glad you've figured it out.
No need to remove it, other may benefit from it.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

Similar topics (7)