• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

How to configuration my php to meet with this requirement.

Saovry

New Pleskian
I just born with VPS now I am trying to learn with it to much and it is really supper hard for me to understand about it. I don't know how to set my vps to full support my software's requirement.
Someone can help me here.

Please please my three files attachment
photo.php
https://www.facebook.com/photo.php?fbid=916813868397174&set=pcb.916813931730501&type=3&theater

photo.php
https://www.facebook.com/photo.php?fbid=916813861730508&set=pcb.916813931730501&type=3&theater

photo.php
https://www.facebook.com/photo.php?fbid=916813878397173&set=pcb.916813931730501&type=3&theater
 
You can change all these settings in Plesk. On the domain page there's a button 'PHP settings'.
Those are some insanely high limits though :)
 
Just to be sure, change all lower case 'm' to upper case 'M'.
I don't think that's the issue but you never know.
Also, put a info.php file in your httpdocs with this code:
<? phpinfo(); ?>

Open the URL in your browser and check the values there.
If those values are OK, the script is not OK.
If the values are not OK, check what config file is loaded, behind 'Loaded Configuration File'
 
- 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="(&gt;|%3C)([^s]*s)+cript.*(&lt;|%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';
}

 
You should open the URL to info.php in your browser and check running PHP config, like domain.com/info.php
 
Back
Top