- I changed the lower m to upper case M
- I don't see httpdocs\info.php
http://prntscr.com/94561d but i created info.php and inserted that into it and uploaded into that directory.
The result still the same.
sorry I don't understand about this "If the values are not OK, check what config file is loaded, behind 'Loaded Configuration File'"
here is my Web.config.txt code
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<location path=".">
<system.webServer>
<directoryBrowse enabled="false" />
<rewrite>
<rules>
<rule name="Joomla! Rule 1" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAny">
<add input="{QUERY_STRING}" pattern="base64_encode[^(]*\([^)]*\)" ignoreCase="false" />
<add input="{QUERY_STRING}" pattern="(>|%3C)([^s]*s)+cript.*(<|%3E)" />
<add input="{QUERY_STRING}" pattern="GLOBALS(=|\[|\%[0-9A-Z]{0,2})" ignoreCase="false" />
<add input="{QUERY_STRING}" pattern="_REQUEST(=|\[|\%[0-9A-Z]{0,2})" ignoreCase="false" />
</conditions>
<action type="CustomResponse" url="index.php" statusCode="403" statusReason="Forbidden" statusDescription="Forbidden" />
</rule>
<rule name="Joomla! Rule 2">
<match url="(.*)" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{URL}" pattern="^/index.php" ignoreCase="true" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</location>
</configuration>
here is my configuration.php code
<?php
class JConfig {
public $offline = '0';
public $offline_message = 'This site is down for maintenance.<br /> Please check back again soon.';
public $display_offline_message = '1';
public $offline_image = '';
public $sitename = 'EduFace';
public $editor = 'tinymce';
public $captcha = '0';
public $list_limit = '20';
public $access = '1';
public $dbtype = 'mysqli';
public $host = 'localhost:3306';
public $user = 'saovry1';
public $password = 'Srey_Ra1S$R123)';
public $db = 'joomla_a';
public $dbprefix = 'jos_';
public $secret = 'fIDBzQ9whIS4ZHuj';
public $gzip = '1';
public $error_reporting = 'none';
public $helpurl = 'https://help.joomla.org/proxy/index.php?option=com_help&keyref=Help{major}{minor}:{keyref}';
public $ftp_host = '127.0.0.1';
public $ftp_port = '21';
public $ftp_user = '';
public $ftp_pass = '';
public $ftp_root = '';
public $ftp_enable = '0';
public $tmp_path = '/var/www/vhosts/vps58010.vps.ovh.ca/eduface.online/tmp';
public $log_path = '/var/www/vhosts/vps58010.vps.ovh.ca/eduface.online/logs';
public $live_site = '';
public $force_ssl = '0';
public $offset = 'UTC';
public $offset_user = 'UTC';
public $lifetime = '15';
public $session_handler = 'database';
public $mailer = 'smtp';
public $mailfrom = '[email protected]';
public $fromname = 'My CMS';
public $sendmail = '/usr/sbin/sendmail';
public $smtpauth = '0';
public $smtpuser = '';
public $smtppass = '';
public $smtphost = 'EduFace.online';
public $smtpsecure = 'none';
public $smtpport = '25';
public $caching = '0';
public $cachetime = '15';
public $cache_handler = 'file';
public $debug = '0';
public $debug_lang = '0';
public $MetaDesc = 'Come and join our community. Create an account or log into EduFace. Connect with friends, family and other people you know. Share photos and videos, send messages and get updates. Expand your network and get to know people graduation in the world!';
public $MetaKeys = 'share Video, share photos, share event, share status, share stream, upload video, friends, share, like, search, facebook, comment, show, chat, finding, friendly, social networking, date, family, relationship, emotion, icon, joomla, site, share link, care friends, live, happy, sad, cry, post status, deleted, block friends, youtube, facebook, twitter.';
public $MetaTitle = '1';
public $MetaAuthor = '1';
public $MetaVersion = '0';
public $robots = '';
public $sef = '1';
public $sef_rewrite = '0';
public $sef_suffix = '0';
public $unicodeslugs = '1';
public $feed_limit = '10';
public $feed_email = 'author';
public $memcache_persist = '1';
public $memcache_compress = '0';
public $memcache_server_host = 'localhost';
public $memcache_server_port = '11211';
public $memcached_persist = '1';
public $memcached_compress = '0';
public $memcached_server_host = 'localhost';
public $memcached_server_port = '11211';
public $redis_persist = '1';
public $redis_server_host = 'localhost';
public $redis_server_port = '6379';
public $redis_server_auth = '';
public $redis_server_db = '0';
public $proxy_enable = '0';
public $proxy_host = '';
public $proxy_port = '';
public $proxy_user = '';
public $proxy_pass = '';
public $mailonline = '1';
public $massmailoff = '0';
public $MetaRights = '';
public $sitename_pagetitles = '0';
public $session_memcache_server_host = 'localhost';
public $session_memcache_server_port = '11211';
public $session_memcached_server_host = 'localhost';
public $session_memcached_server_port = '11211';
public $frontediting = '1';
public $cookie_domain = '';
public $cookie_path = '';
public $asset_id = '1';
}