I am testing WordPress and I have some problems to display Pages. I haven't any problem with posts.
My permalink option :
/%post_id%/%postname%/
I can not display this page :
http://www.master-marketing.eu/cms/a-propos/
I have read many things about permalinks and .htaccess.
I couldn't find my .htaccess using filezilla. It is why I think my problem is about Server Blockage (for more information : http://codex.wordpress.org/Using_Permalinks.
I have tried to modify wp-includes/vars.php file replacing
$is_apache = strstr($_SERVER['SERVER_SOFTWARE'], 'Apache') ? 1 : 0;
by
$is_apache = 1;
Unfortunately I haven't the same code.
I my wp-includes/vars.php file I have :
// Server detection
$is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) || (strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false)) ? true : false;
$is_IIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false) ? true : false;
I have tried to replace :
$is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) ||
by
// $is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) ||
and i wrote :
$is_apache = 1;
under this line.
I have got a message error line 46 with wp-includes/vars.php file
What am I doing wrong? Am I on track to think that it is a server blockage ?