Please use following method: Set disablesslv3 parameter: mysql -uadmin -pcat /etc/psa/.psa.shadow -Dpsa -e "insert into misc values('disablesslv3', 'true')" Regenerate configs: /usr/local/psa/admin/bin/httpdmng --reconfigure-all Check results: cat /var/www/vhosts/system/*/conf/last_nginx.conf | grep ssl_protocols ...
Okay so I found the solution. First I had to login as the main user (for me it was ubuntu) using the pem key provided with Amazon. Then I had modify this file: sudo nano /etc/ssh/sshd_config and changed PasswordAuthentication no to PasswordAuthentication yes Then I had to restart the ssh...
Just for experiment, I've tried to upgrade PHP and MySQL to this version. I've only get issue with ODBC connector: ODBC error #01000: [unixODBC][Driver Manager]Can't open lib '/usr/lib64/libmyodbc5.so' : file not found ODBC error #08S01: [unixODBC][MySQL][ODBC 5.3(w) Driver]Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) At installing Plesk...
Remeshx, The mysql load you see in "top" is total load of all mysql threads on all cores. If you have 24 core system, you can approximate the single core load by dividing 200%/24 which gives ~8% load, which is not bad at all. If you want to have detailed...
php,windows,payment-gateway,vps,plesk
I Found The Solution I Was Using The Response Domain URL has www.abc.com/response.php Where in the original URL was abc.com/response.php when i removed www. i am getting the response. ...
It looks like you have upload and access files in one place but checking log in another place. Are you sure you have no issues with domain name resolving? Also it can be issue with virtual host - when you access file it overtaken by some other virtual host. It...
As the message says, you need to assign the variable wait_timeout a value in the mysqld section of your configuration file. For instance wait_timeout=60 But if its passed as a parameter when connecting then simply write --wait_timeout=60 https://dev.mysql.com/doc/refman/5.0/en/server-system-variables.html#sysvar_wait_timeout...
I created all the subscriptions on the new server and then using the migration manager, when I migrated the sites email settings they were sorted into the relevent subscriptions.
Here the request example: <packet> <webspace> <set> <filter> <id>34</id> </filter> <values> <hosting> <vrt_hst> <property> <name>certificate_name</name> <value>some_existed_certificate_name</value> </property> </vrt_hst> </hosting> </values> </set> </webspace> </packet> Main rule is that if in CLI it's an "subscription" setting, than we go to "Managing Subscriptions (Webspaces)" -> "Setting Subscription...
It's not quite clear what do you mean under "executing http address" But you can try this setting ...
After much trial and error, I appear to have solved the problem. The issue was in using jQuery/Ajax. When I changed the way the downloadscript.php file is accessed to a direct $_GET request from the link on the page, it worked a treat. Anyway, thanks for your help everyone! Chris...
How about to start from full path like <param-value>/var/www/vhosts/subscription.name/httpdocs/img/</param-value> ...
Solved: select d.`name`, l.* from SubscriptionProperties sp left join Subscriptions s on s.id = sp.subscription_id left join domains d on d.id = s.object_id left join Limits l on l.id = sp.value where sp.`name` = 'limitsId' and l.limit_name = 'expiration' order by value; ...
Apparently in the database section there is a column named Database server which gives the address of the database, which in my case simply was not localhost, 127.0.0.1 or anything like that! I changed the address and off it worked!...
Check this answer to define shell at creating domain: plesk api shell access Try this query to set shell for existed domain/subscription: <packet> <webspace> <set> <filter> <name>example.com</name> </filter> <values> <hosting> <vrt_hst> <property> <name>shell</name> <value>/bin/bash</value> </property> </vrt_hst> </hosting> </values> </set> </webspace> </packet> ...
facebook,facebook-graph-api,dns,plesk,server
I did already have the specified Meta Tags with the necessary open graph properties. Turns out that the DNS was not pulling in properly. Not sure if the server was configured properly or not. What I ended up doing is taking the DNS management away from the server and putting...
imap,plesk,cname,mail-server,virtual-server
Here how to Receive emails on Plesk server: Assume that your "Domain (GoDaddy)" = domain.tld In "Domain (GoDaddy)": create new DNS record for MX create new A record to point MX on plesk server IP Where 1.2.3.4 - it's IP of your plesk server In Plesk create new subscription or...
%2B would get decoded into a + but a + would get decoded as a space. Are you decoding it twice accidentally at all?
To create by hosting plan: <packet> <webspace> <add> <gen_setup> <name>ezb2550.info</name> <ip_address>10.64.2.30</ip_address> </gen_setup> <plan-name>Default Domain</plan-name> </add> </webspace> </packet> To create with custom virtual hosting settings(pay attention for "vrt_hst" it's a hosting type): <packet> <webspace> <add> <gen_setup> <name>ezb2550.info</name> <ip_address>10.64.2.30</ip_address>...
Actually nothing need to do in Plesk, just set(send) emails with "From:" field of non-existent email address of your domain, like: [email protected] or [email protected] or something other. When somebody will sent mail to [email protected] it will be rejected automatically, because of default Plesk settings: ...
php,apache,parent,plesk,open-basedir
Does your domain's PHP handler works as FastCGI? You can just change domain's PHP settings "open_basedir" to /var/www/vhosts{/}{:}{WEBSPACEROOT}{/}{:}{TMP}{/} After this in file: /var/www/vhosts/system/domain.tld/etc/php.ini you'll get: open_basedir = "/var/www/vhosts/:/var/www/vhosts/domain.tld/:/tmp/" ...
I got it working by using. The hint using the universe repository failed. sudo apt-get update && sudo apt-get install python-software-properties sudo apt-get update sudo apt-get install php5-mcrypt ...
smtp,port,plesk,centos7,smtp-auth
Server doesn't provide auth, it may be because of "smtpd_tls_auth_only = yes" in /etc/postfix/main.cf. "smtpd_tls_auth_only = yes" forbid authentication on non-secure connection like port 25. You can just change it to "no", or try using secure port 465 in Android Mail Client. It's quite easy to check your SMTP server...
via API-RPC: # cat x.xml <?xml version="1.0" encoding="UTF-8" ?> <packet version="1.6.3.0"> <webspace> <set> <filter/> <values> <limits> <limit> <name>expiration</name> <value>-1</value> </limit> </limits> </values> </set> </webspace> </packet> # curl -kv -XPOST -H "HTTP_AUTH_LOGIN: admin" -H "HTTP_AUTH_PASSWD: password" -H "Content-Type: application/xml" -d @x.xml https://localhost:8443/enterprise/control/agent.php via CLI: # for...
ssl,https,subdomain,plesk,wildcard-subdomain
How about create same directive for nginx? cat /var/www/vhosts/system/domain.tld/conf/vhost_nginx.conf server_name *.domain.tld; Actually all this can be done from Plesk GUI: ...
Plesk's PHP binary /opt/plesk/php/5.6/bin/php uses it's own /opt/plesk/php/5.6/etc/php.ini, not default. If something uses default php.ini it means that you use default php binary(/usr/bin/php). Default php binary call: ~# php --ini Loaded Configuration File: /etc/php.ini Plesk PHP binary call: ~# /opt/plesk/php/5.6/bin/php --ini Loaded Configuration File: /opt/plesk/php/5.6/etc/php.ini In your server command/script you...
asp.net-mvc,visual-studio-2013,asp.net-mvc-5,web-hosting,plesk
Place The below code <compilation debug="true" targetFramework="4.0"> instead of <compilation targetFramework="4.0" defaultLanguage="c#"/> hope it's works This Link actually helps you to identify any sort of issues if it is not displayed in the server and thus I [OP] was able to fix my problem by identifying the issue. Below is...
Here is how you do it in Cakephp 2.x Once you have setup your webspace you don't need to change or spoil the php configuration (as long as php is set as default for this webspace) and when you create a web_space in Plesk, Plesk server normally does every thing...
asp.net,iis-7,plesk,application-pool,unauthorizedaccessexcepti
Try to set "Additonal write/modify permissions" at "Hosting settings" of your domain: ...
First create subscription "User role" with "Create and Manage Databases" permission at Subscriptions > Your subscription > Users > Roles Than create subscription user with this role and access to desired subscriptions: Now user you have created can login into Plesk using username and password and find webadmin at "Databases"...
I think you are using external DNS server and due to that you are getting this issue. I will suggest you please check your main domain DNS zone and update the correct "A" record for your sun-domain and once you update it correctly you will not get any issues with...
I have finally solved a rewrite problem. What it's important, Plesk generates default parameters in Nginx configuration file, any changes inside that file is temporary. To remove index.php in CodeIgniter projects, just add this code for each project in the Plesk>Domains/example.com/Web Server Settings: location /category/subcategory { try_files $uri $uri/ /category/subcategory/index.php;...