I don't think so, because when I go to /oxwall from the browser, it redirects to oxwall/install/requirements and says Exactly the same problem here...oxwall/install/requirements was not found on this server.
I don't know why it's going there. If I type in the browser:
oxwall/ow_install/install.php
which is the correct directory, it gives me the error:
Fatal error: Class 'UTIL_Url' not found in /home/worldafr/public_html/oxwall/ow_install/install.php on line 26
Hi,
I have the same problem. I downloaded the source (1.6.0 version) from the page and then put it in my local hosting. When I go to the root url (http://127.0.0.1/oxwall-1.6.0) the browser redirects me to path "http://127.0.0.1/oxwall-1.6.0/install" and gives me this error:
Not Found
The requested URL /oxwall-1.6.0/install was not found on this server.
Then, if I try to go to the url "http://127.0.0.1/oxwall-1.6.0/ow_install/install.php" gives me this error:
Fatal error: Class 'UTIL_Url' not found in D:\Dropbox\htdocs\oxwall-1.6.0\ow_install\install.php on line 26
Please help mee !!! I have no idea what I have wrong, and this is driving me cracy.
I have Windows 7, apache 2.4.7 and PHP 5.5.10 installed has a module.
Thanks !!!
The folder is D:\Dropbox\htdocs\oxwall-1.6.0. Obviously I have changed the httpd.conf like this:
DocumentRoot "d:/Dropbox/htdocs"
<Directory "d:/Dropbox/htdocs">
Definitely I have a wrong configuration in my local server, because I did try locally with xampp (latest version) and it worked.
What I did and did not work (and I need it work) was:
1. download Apache from http://www.apachelounge.com/
2. download and install Visual C++ (VC11 vcredist_x64/86.exe) from apachelounge.com
3. Download PHP from http://windows.php.net/download/
4. Unzip Apache and PHP: C: /Apache24 and C: /php-5.5.12
5. Edit httpd.conf file adding (or replacing) these lines:
#ServerName www.example.com:80
ServerName localhost
<IfModule dir_module>
DirectoryIndex index.html index.htm index.php
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
</IfModule>
LoadModule php5_module "C:/php-5.5.12/php5apache2_4.dll"
PHPIniDir "C:/php-5.5.12"
6. Open cmd console and install apache:
cd c:/php-5.5.12
cd bin
httpd –k install
7. Edit php.ini file and restart Apache.
extension_dir = " C:/php-5.5.12/extp
hp_gd2.dll
php_mysql.dll
extension=php_pdo_mysql.dll
extension=php_mbstring.dll
max_execution_time = 900
I also add my php configuration. I have no idea what I have bad. :( My-PHP-Configuration
PLEASE HEALP !!! :(
TKS !!!!
Ok, I corrected it. I found that "mod_rewrite" is an Apache module and has nothing to do with PHP. So, I have activated the module uncommenting the following line in httpd.conf:
LoadModule rewrite_module modules/mod_rewrite.so
Nevertheless, did not work neither. I attached my new php config.