News:

Please post your question in the right forum. We will answer it as soon as possible.

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - DJ RONY

#16
Blogging / Good Blogging Means Good Business
December 27, 2021, 03:24:37 AM
Due to the rise of popularity of blogging on the Internet, blogging has become an indispensable tool for business owners and companies for advertising and marketing their products and services. Business blogging can increase the value of your business by bringing in loyal customers, while at the same time building trust among existing customers.

However, blogging will only bring the desired value and benefits to business if it is done in the most effective manner. If it is not done properly, blogging can even be destructive to your business. That is why you should think of blogging as an integral and indispensable part of your business that should be given the serious attention it deserves.


Here are a few things to consider when setting up and maintaining your business blog.


Take Care of Your Customers

Treat all readers of your blog as if they are long-standing and valued customers of your business. Make it a point to reply to every comment and e-mail promptly and courteously. If you need to do some research in order to provide satisfactory answers, by all means do so. Make your blog a venue that is a two-way interaction.


Edit Before Posting

Make sure that all the posts to your blog are properly written and edited in terms of spelling and grammar. This will present a sharp and professional appearance to your potential customers and help you to reap the benefits of credibility now and loyalty later.

A little time spent in writing and research will save time in the future in making edits and corrections. The writing style of your business blog should be a little more formal than a personal blog or letter in order to enhance the professional appearance of your business.

The blogging platform WordPress has leveled the playing field between Mac and PC users. It runs equally well on either platform and in most browsers. In addition, there are a huge number of plug-ins available for it that can do anything from find great keywords for your blog posts, get subscribers to your newsletter, increase your blog's search engine optimization and eliminate spam comments. There is even an application for the iPhone and iPad that allow you to update your WordPress blog while on the go!


Add A Personal Touch To Your Blog

Formatting your blog properly will help to present the information in a clear and concise manner. Adding subheadings will help to make your posts more easily scanned visually, as will highlighting your keywords and key phrases and using boldface and frequent paragraph breaks.

These little things will help to make your blog come across as more professional and will enable busy visitors to skim and get the gist of your posts more quickly. (Ironically, the more quickly your visitors can read what you write, the longer they may stay on your blog, as they will be motivated to look at some of the other things you have written.)

Be Personal But Not Too Personal

Writing in a more formal fashion does not mean you cannot inject humor and personal interest stories into your blog, and these can help project a friendly and cheerful image for your business, as long as such material is appropriate to your blog's topic.

As a small business owner you can be personal by injecting a little of yourself into your writing, and this will help to establish a personal bond with your customers. By doing so, you'll be able to build a sense of trust with your readers which will help to establish you as a real person with your customers, and this can eventually translate into good business.
#17
You can purge this binary log file.

Read it here: You are not allowed to view links. Register or Login

Examples

PURGE BINARY LOGS TO 'mariadb-bin.000063';

PURGE BINARY LOGS BEFORE '2013-04-21';

PURGE BINARY LOGS BEFORE '2013-04-22 09:55:22';

The simple steps to clean these:

### Clean the my sql log file: (/var/lib/mysql)

Log with putty as root and log in to mysql

mysql -u root -p

You need to provide mysql password.

Then >>>

PURGE BINARY LOGS TO 'mysql-bin.010';
or
PURGE BINARY LOGS BEFORE '2021-08-02 22:46:26';

Check what is your bin file name. They can be different then mine.




#18
Debugging the issue is a time consuming process and you need to check which directory is taking up the space and then in SSH mode check what is it.

you can use Putty to log in SSH mode.

Then use the command:

du -ah -d 1

while at /

Check what is eating up the space. If you do not find it, do:

cd /

then,

du -ah -d 1

In my case the ./var folder was taking up a lot of space.

Then I do,

cd /var

Entering that folder I saw /lib has the big files with

du -ah -d 1

And again did:

cd /var/lib

and saw the mysql folder has 23G of space occupied. My files were there to clean up. Almost 23 GB gone in these bin file. But you shouldn't just delete the bin files as they are necessary. You need to purge them with SSH command.



#19
So, this is a general problem I faced myself for quite sometime. I have Digital ocean droplet of 4GB RAM and 50GB space, I installed cyberpanel there. Everything was running smoothly.

Then suddenly I saw my disk usage is increasing rapidly and I have no clue what is eating my disk space. The sites I have stored there do not occupy that much space, including the Cyberpanel installation. So what where doing this.

I haven't got the exact solution but this is what I did so far to regain the space.

First you need to find out the large directories

Check the following directories in the Cyberpanel installation

/home/domain.com/backup
/home/backup
/usr/local/lsws/logs

I have used winscp to login into the Cyberpanel installation and deleted the logs file and it helped for a bit. Local backups can also take up spaces.

Most of the time OpenLiteSpeed logs eat up the space. You can minimize the log storing capabilty when you log into the light speed panel.

The login URL is: You are not allowed to view links. Register or Login

*You need to change the domain name to yours and first setup a password via root SSH.

Delete Large log files in lsws/logs

rm -rf /usr/local/lsws/logs/*


Remove old CyberPanel versions

rm -rf /usr/local/*.tar.gz

But, you need to check why the log files are generating in the first place.

CyberPanel Main Log File: /home/cyberpanel/error-logs.txt

LiteSpeed Server Error Logs: /usr/local/lsws/logs/error.log

You can use WINSCP to check them beside SSH.






#20
This is most probably a caching issue. Clear any cache from the caching plugin (if any) and try turning off the Combine Third Party CSS Files setting from "CSS Compiling Method", then reset the Avada cache and retry.

This should solve the issue. If you do not tick mark the upgraded design in the event settings then you should see the old designs. Otherwise the new event calendar design will be applied.
#21
There are few things you need to know when you decide to use cyber panel on your Digital Ocean droplet:

Requirements to install Cyberpanel:

   - Server with a fresh install of Centos 7.x, Centos 8.x, Ubuntu 18.04 or Ubuntu 20.04
   - Python 3.x
   - 1024MB RAM, or higher
   - 10GB Disk Space

To install:

sh <(curl https://cyberpanel.net/install.sh || wget -O - https://cyberpanel.net/install.sh)

To Update:

sh <(curl https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/preUpgrade.sh || wget -O - https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/preUpgrade.sh)



SSL certificates:

    SSL not renewing properly – run the acme wget -O - https://get.acme.sh | sh
    Need to edit SSL's manually? Look in /etc/letsencrypt/live
    Need to check errors regarding SSL's? Go to https://serverip:8090/serverstatus/cyberCPMainLogFile in your browser


You can get more cheats and hacks here: You are not allowed to view links. Register or Login
#22
If you are going to use a VPS like digital ocean then there is a chance you need to install a visual panel like cPanel for your website management.

The problem is cPanel is not free. If you install cPanel then you need to pay for it monthly which is not cheap.

So, the alternative is using a panel like Cyber Panel which is completely free and you can easily provide your clients a log-in panel for their site management. Cyber panel is still growing as an opensource project. But, there are already good documentation how to manage it.

Main site: You are not allowed to view links. Register or Login




#23
WP Themes / MyThemeShop Agency WordPress Theme
November 06, 2021, 08:12:06 PM
Agency - The Ultimate Theme for Service Providers

Demo: You are not allowed to view links. Register or Login

Download:

https://mega.nz/file/vaJxnB4T#mXHg-XaL8KoLlVbA0eBdlmE00IjwEEC0XClEEPY_FjI

Please buy the original theme for production site.
#24
Facebook won't let you post most affiliate link directly. If the link is suspicious and you post too many links over comment or messenger, the will block you first and next step your Facebook account will be closed.

Your landing page might have spammy link according to Facebook.

You can PM me your landing page link and I can check further.
#25
Affiliation is also possible if you are not interested in dropshipping model.

When you publish your product in the WooCommerce, publish it as an external product. Then put your affiliate-link instead of the buy button.
#26
If you are going to use woo-commerce and add product from Aliexpress as your native products, then you are thinking of drop-shipping.

In this model you take the order and payment  then after you send notification Aliexpress will fulfill it, and send it to customer.

Use this plugin: You are not allowed to view links. Register or Login

I think there are several other plugins in the market built only for Aliexpress drop-shipping business.

You can import product details in your WooCommerce store, then edit and publish it.

#27
Another great plugin is the AdSanity: You are not allowed to view links. Register or Login

It's a paid version. But, you can do almost anything you want with ad insertions.
#28
WordPress / Best WordPress Admanagement Plugin -
March 28, 2021, 12:07:04 PM
There are several plugin that you can use to insert ads in your WP blog post or page.

The best one is the one that can be used with shortcode and php tags. This way you can change your ads dynamically.

I have used the Adrotate plugin (free version) and it seems promising to me.

Adrotate: You are not allowed to view links. Register or Login

You can grab stats, how your ad is working with this plugin.
#29
If you have bought a new site you need to change the affiliate Id of the seller in your site. Changing them manually is pretty tiresome job. use a plugin like this that can do the task automatically.

You are not allowed to view links. Register or Login
#30
In your theme/child theme's functions.php file add the following code.


/*showing last updated of post instead published date*/
function wpb_last_updated_date( $content ) {
$u_time = get_the_time('U');
$u_modified_time = get_the_modified_time('U');
if ($u_modified_time >= $u_time + 86400) {
$updated_date = get_the_modified_time('F jS, Y');
$updated_time = get_the_modified_time('h:i a');
$custom_content .= '<p class="last-updated">Last updated on '. $updated_date . ' at '. $updated_time .'</p>'; 
}

    $custom_content .= $content;
    return $custom_content;
}
add_filter( 'the_content', 'wpb_last_updated_date' );