also show me your htaccess file
Options +FollowSymLinks
RewriteEngine On
AddEncoding gzip .gz
AddEncoding gzip .gzip
<FilesMatch "\.(js.gz|js.gzip)$">
ForceType text/javascript
</FilesMatch>
<FilesMatch "\.(css.gz|css.gzip)$">
ForceType text/css
</FilesMatch>
RewriteCond %{REQUEST_URI} !^/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/
RewriteCond %{REQUEST_URI} !/ow_cron/run\.php
RewriteCond %{REQUEST_URI} !/e500\.php
RewriteCond %{REQUEST_URI} !/captcha\.php
#RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC]
RewriteCond %{REQUEST_FILENAME} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
????????? I do not understand this
first here is the default htaccess file from the 1.8.3 download...
replace yours with this one... make sure you delete the old file, because we want to be sure its clean...
i want to see your config.php file but when you post it, here in the forum do not show your database info or your define('OW_PASSWORD_SALT', info.
noone needs to see that, but i want to see the rest of it please
make it like this
if ( defined('OW_CRON') )
{
define('OW_DEBUG_MODE', false);
define('OW_DEV_MODE', false);
define('OW_PROFILER_ENABLE', false);
}else{
/** * Make changes in this block if you want to enable DEV mode and DEBUG mode */
define('OW_DEBUG_MODE', true);
define('OW_DEV_MODE', false);
define('OW_PROFILER_ENABLE', false);
}
you never have to change the cron part...
define('OW_USE_CLOUDFILES', false);
if ( defined('OW_CRON') )
{
define('OW_DEBUG_MODE', !false);
define('OW_DEV_MODE', false);
define('OW_PROFILER_ENABLE', false);
}
else
{
/**
* Make changes in this block if you want to enable DEV mode and DEBUG mode
*/
define('OW_DEBUG_MODE', !true);
define('OW_DEV_MODE', false);
define('OW_PROFILER_ENABLE', false);
if ( defined('OW_CRON') )
{
define('OW_DEBUG_MODE', false);
define('OW_DEV_MODE', false);
define('OW_PROFILER_ENABLE', false);
}else{
/** * Make changes in this block if you want to enable DEV mode and DEBUG mode */
define('OW_DEBUG_MODE', true);
define('OW_DEV_MODE', false);
define('OW_PROFILER_ENABLE', false);
}