When i trying to test email in smtp i'm getting this error Disabled fields are overridden in site-specific configuration file. Can anyone please help
Try this once How to Use Google SMTP Server
https://www.hostinger.in/tutorials/how-to-use-free-google-smtp-server
Related
I'm trying to use the WordPress Importer plugin to migrate my site to Google's App Engine, PHP 7.2 run time. This fails with the error:
Remote server did not respond'
How can I troubleshoot this further?
The WordPress Importer plugin is able to download media (images) through http(s) and add those to the local media files. This fails. When enabling the debug-mode on the Importer plugin, the error message becomes Remote server did not respond.
When I'm looking into the logs of my server, I don't see any tries to access the files at all, so somehow the instance running on AppEngine is not able to fetch the URL's.
One example URL is https://goingontheroad.nl/data/uploads//2009/09/oude_keuken_2.JPG - which works fine for me.
You need to enable curl:
https://cloud.google.com/appengine/docs/standard/php/issue-requests
In most cases, you can use CURLite to avoid charges.
For this:
Put php.ini in root dir (same as app.yaml), if not already
In php.ini add:
google_app_engine.enable_curl_lite = 1
deploy app.
If this now working, try replace on
extension = "curl.so"
But this need billing enabled
I am developing a content filtering app for zimbra. I have a problem with the config postfix MTA.
In main.cf
content-filter:smpt-amavis[127.0.0.1]:1024 by content-filter:myfilter
and add master.cf myfilter service to pipe email to script php.
But when I restart zimbra, everything returns to default,
content-filter:smtp-amavis
How my config change when I restart zimbra. Could anyone help me, please. Thanks so much.
did you check the master.cf.in ???
https://wiki.zimbra.com/wiki/Adding_additional_SMTP_listener_ports
You must edit the master.cf.in because this is the file readed by zimbra to update the config file (master.cf). If you try to edit directly the master.cf, when restart de service the changes will be erased (because he read the master.cf.in to update changes)
i am using symfony2, i want to test my server for mail functionality so i had create one simple phpMailer application and put into /web directory of my symfony2 project. Now, when i access that file with http://example.com/web/mail/index.php but it give me error,
No route found for "GET /web/mail/index.php"
i want to use this file as what we can do in cakephp. so anyone can help me write route for this ?
Thanks
As it was said in comments it's not the way you should implement it. But for a quick check you can use http://example.com/mail/index.php without /web directory in URL, 'cause web directory is usually configured as a root server's configuration.
I'm using Drupal and IMCE to upload files to a private file system. The problem is, I get an "Access forbidden" error whenever I try to access a file in it. And this is using user 1, administrator. Could anyone suggest how to properly set content access restrictions? I'm already using the "Content Access" module, but I guess I don't know how to use it properly. Thanks!
Try accessing it using the private/system url for the file instead of the direct sites/default/files/filename path
http://api.drupal.org/api/drupal/includes%21file.inc/function/file_create_url/6
please be gentle as my server knowledge is next to none!
I've been asked to make some CSS changes to a wordpress site - fine, I'm good at that! I have all the ftp info and the wordpress passwords, but as I edit files and try and re-upload them using Dream Weaver I get an error that I don't have permission to write to the particular file. So, the first thing I thought to do is right click the file and edit permissions, but as I try and do this I get the same problem of:
An FTP error occurred - cannot put the_file.js. Access denied.
The file may not exist, or there could be a permission problem.
Make sure you have proper authorization on the server and the server is properly configured.
File activity incomplete. 1 file(s) or folder(s) were not completed.
Files with errors: 1
So, my question is - by knowing the ftp details is there any way I can change the permissions, or is it something to do with server configuration that I have no control over? Many thanks
This means that the FTP username you were provided does not have permission to modify files. YOu won't be able to reset the permissions either. You should contact the server admin and have them grant your user account the appropriate permissions to modify files.