Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
login instead of install
#3
(2014-02-20, 23:56:35)shawn_a Wrote: you do not have php running on your server it seems

There is php 5.2.17 installed and it works flawlessly with several scripts on my site.
It came up with the login screen only after I modified my .htaccess. Before I did that, I got a parse error in line 28 of common.php.

Here's what it looks like now:

Code:
AddDefaultCharset UTF-8
Options -Indexes

# blocks direct access to the XML files - they hold all the data!
<Files ~ "\.xml$">
    Order allow,deny
    Deny from all
    Satisfy All
</Files>
<Files sitemap.xml>
        Order allow,deny
    Allow from all
    Satisfy All
</Files>

RewriteEngine on

# Usually it RewriteBase is just '/', but
# replace it with your subdirectory path
RewriteBase /getsimple/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]

AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php

I thought that would do the trick, but apparently, it didn't.
Hm.

Any ideas what could be wrong?
Reply


Messages In This Thread
login instead of install - by der Warst - 2014-02-20, 23:10:48
RE: login instead of install - by shawn_a - 2014-02-20, 23:56:35
RE: login instead of install - by der Warst - 2014-02-21, 01:18:22
RE: login instead of install - by shawn_a - 2014-02-21, 02:28:31
RE: login instead of install - by der Warst - 2014-02-21, 15:33:44



Users browsing this thread: 1 Guest(s)