Areeb Majeed
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple SMTP by Maileroo] PHP Fatal errorIt seems like the issue is related to this piece of block:
230 if (!empty($attachments)) {
231 $payload['attachments'] = array();
232 foreach ($attachments as $key => $attachment) {
233 $payload['attachments'][] = array(
234 'file_name' => basename($attachment),
235 'content_type' => mime_content_type($attachment),
236 'content' => base64_encode(file_get_contents($attachment)),
237 'inline' => false
238 );
239 }
240 }@finalwebsites Let’s add an if statement here checking if the attachment is valid or not.
if (!$attachment) {
continue;
}Forum: Plugins
In reply to: [Simple SMTP by Maileroo] Please add tagsThat could complicate things. I want to keep the plugin simple and straightforward, staying true to its name. Adding a tags section might create unnecessary friction for beginners.
However, we can still populate the tags behind the scene.
Forum: Plugins
In reply to: [Simple SMTP by Maileroo] Please add tagsWe should be able to add multiple tags. One for domain, one for website name.
Forum: Plugins
In reply to: [Simple SMTP by Maileroo] Please add tagsWhat if the transit mode is set to API, and the plugin automatically adds an
X-Tag-WebsiteNameheader populated with a value retrieved from the WordPress options?Forum: Fixing WordPress
In reply to: Website not responding to connection attemptsKeep a check on it. And, post an update here whenever it goes down.
Forum: Installing WordPress
In reply to: Transferred from wordpress.com to .org via bluehostGet into DB via phpMyAdmin and look for blog url field.
Forum: Fixing WordPress
In reply to: Website not responding to connection attemptsIf JetPack doesn’t work for you, try Pingdom or some other website uptime monitoring service.
Forum: Fixing WordPress
In reply to: Website not responding to connection attemptsAlright, it is not related with WordPress. Install ‘JetPack’ on both of your WordPress installations and active it’s monitoring feature which would mail you if your website goes down. Keep that monitoring feature active for few hours and it’ll mail you if your website goes down.
I loaded your test website for few time, and it worked flawlessly.
Forum: Installing WordPress
In reply to: Error: page not foundPlease have a look at your logs. They must be in /var/log/apache2 (something like that).
Forum: Installing WordPress
In reply to: Error: page not foundTry deleting your .htaccess file.
Forum: Fixing WordPress
In reply to: Cannot Access my WordPress Login and webstie is down – Help!Could you give me access over your hosting account?
MODERATED – NO, NO NO. Never ask for access. And never, never give access.
Forum: Fixing WordPress
In reply to: Cannot Access my WordPress Login and webstie is down – Help!I guess, they must be in “error_log” in public_html since you are on shared hosting.
Forum: Installing WordPress
In reply to: Error: page not foundWell, I suggest you to copy the theme and plugins and clear up the directory and then extract WordPress over there and fill the wp-config.php details.
Forum: Fixing WordPress
In reply to: How to redirect www to non-www address.Well, it is just a DNS problem. Open your DNS managing software (like CloudFlare or your registrar’s own), and create a CNAME record: www pointing to yourdomain.com
Forum: Installing WordPress
In reply to: Jumps back to begining after "Run the Install"Hi Roberth.
Update the permissions of your WordPress folder to 755 and start the installation. It should work flawlessly.