Welcome Guest, Not a member yet? Register   Sign In
reactor 404
#1

[eluser]quasiperfect[/eluser]
i downloaded reactor from bitbucket copied on localhost/reactor , modified
Code:
$config['base_url']    = 'http://localhost/reactor/';
and i get a 404

any idea ?
#2

[eluser]bgougent[/eluser]
Same problem : did you check your $config['uri_protocol'] in the config.php?

Did you use or tried CI 1.7.3 on the same server?
#3

[eluser]quasiperfect[/eluser]
i changed the protocol to PATH_INFO and now it works fine
1.7.3 was working fine
even tip worked not sure what commits created the problem
#4

[eluser]bgougent[/eluser]
:-P Good it's working for you, mine is still not :down:
#5

[eluser]quasiperfect[/eluser]
hmm make sure u'r using php 5.3
if u'r on windows use the new wamp
i have reactor in www/reactor/
with this htacces
Code:
<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteBase /reactor/
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php/$1 [NC,L,QSA]
</IfModule>
<IfModule !mod_rewrite.c>
  ErrorDocument 404 index.php
</IfModule>

maybe this helps
#6

[eluser]bgougent[/eluser]
PHP info server

Seems to be using 5.2.6. Should it be this critical?
#7

[eluser]quasiperfect[/eluser]
from the user guide no i will test and get back to you now i use wampx64 and php 5.2.1 is 32 i will uninstall reinstall and tell u the results
#8

[eluser]bgougent[/eluser]
Thanks,
Trying now on the server where it should finally run on. /phpinfo.php
CI 2.O no luck so far.
Putting a copy of CI 1.7.3 on the server and see if this is working ...

Keep you informed. PHPinfo (One server)

running CI 1.7.3 on server
running CI 2.0 on server
#9

[eluser]quasiperfect[/eluser]
i tested and it works and i see on u'r server ci2 is runing now atleast on the link u posted
#10

[eluser]Phil Sturgeon[/eluser]
Rather embarrassingly there was a bug with the recent CLI compatibility code. Some servers will make CI think it's being run on the command line when it wasn't. Using anything other than AUTO is fine, or grab the newest copy.

That change was made without a huge amount of real-world testing but now that PyroCMS and my client sites are running Reactor all changes will be tested much more before a release.




Theme © iAndrew 2016 - Forum software by © MyBB