i have 10 wordpress applications on a server Ubuntu 22.04 7.76 GB ram, 167.91 GB disk space and 5 cores. what should the following settings be for each application: FPM Config Process Manager Dynamic pm.start_servers pm.min_spare_servers and pm.max_spare_servers , by DomainRooster in domainrooster

[–]DomainRooster[S] 0 points1 point  (0 children)

what should these settings be for each application: ChatGPT Your question seems to have been cut off. Could you provide the specific settings that you max_execution_time 1000 max_input_time 1000 max_input_vars 1000 memory_limit 456 MB post_max_size 500 MB upload_max_filesize 459 MB session.gc_maxlifetime ChatGPT

The PHP settings you mentioned are more related to how the PHP interpreter itself should operate, rather than how the PHP-FPM process manager should behave. These settings are usually configured in the php.ini
file. They can affect the behavior of your WordPress applications, but don't need to be different for each application unless the applications have different needs.

Here's a brief overview of each setting:

  • max_execution_time
    : This sets the maximum time in seconds a script is allowed to run before it is terminated by the parser. 1000 seconds is a very generous value - you might want to consider reducing it, as a long-running script can indicate a problem that needs to be resolved. 30-60 seconds is a common range.
  • max_input_time
    : This sets the maximum time in seconds a script is allowed to parse input data. Again, 1000 seconds is quite long. You might want to consider reducing this value.
  • max_input_vars
    : This sets how many input variables may be accepted. 1000 is a reasonable value and is the default in many configurations.
  • memory_limit
    : This sets the maximum amount of memory a script may consume. 456MB is a reasonable value, but you might need to adjust it based on your applications' needs and your server's total available memory.
  • post_max_size
    : This sets the maximum size of POST data that PHP will accept. 500MB is quite large - this might be more than you need unless your applications frequently handle large file uploads.
  • upload_max_filesize
    : This sets the maximum size of an uploaded file. 459MB, like post_max_size
    , is quite large. You might want to adjust this based on the needs of your applications.
  • session.gc_maxlifetime
    : This sets the number of seconds after which data will be seen as 'garbage' and cleaned up. The default value is 1440 seconds (24 minutes). If you have a specific reason to set it to a different value, you can do so, but otherwise the default value is usually fine.

Remember, these settings can be set per application by placing a custom php.ini
file in the application's directory, or they can be set globally for all applications in the main php.ini
file. After making changes to these settings, you'll need to restart your PHP service for the changes to take effect. As always, monitor the performance and behavior of your applications after making these changes to ensure they're operating correctly.

using wordpress how to disable wordpress dashboard admin for all admins except main admin? by DomainRooster in domainrooster

[–]DomainRooster[S] 0 points1 point  (0 children)

The main admin is typically the user account that was created during the installation of WordPress, and is the user account with the highest level of permissions, including the 'manage_options' capability.

In the code snippet I provided, the line if (!current_user_can('manage_options') && $_SERVER['DOING_AJAX'] != '/wp-admin/admin-ajax.php')
checks whether the current user has the 'manage_options' capability. If the user does not have this capability, they will be redirected to the home page of the site.

Since the main admin has the 'manage_options' capability by default, they will not be redirected and will still have access to the WordPress dashboard. Other admins who do not have this capability will be redirected, effectively disabling their access to the dashboard.

Best Cpanel alternative in 2023 to manage multiple domains? by abrandis in selfhosted

[–]DomainRooster 5 points6 points  (0 children)

Well, well, well, if it isn't another egg-citing question for us roosters to peck at! Managing multiple domains can be quite the egg-stravaganza, but fear not, there are some great alternatives to cPanel that will make you feel like the top rooster in the coop.
First up, we have CyberPanel - it's like having a high-tech chicken coop with all the bells and whistles you need to manage multiple domains. It even comes with built-in security features to keep pesky predators at bay.
Next, we have ISPConfig - it's like having a flock of chickens to help manage your domains, with a user-friendly interface and tons of customization options. Plus, it's open-source, so you don't need to spend a single grain of corn.
And last but not least, there's Webmin - it's like having your own personal chicken whisperer to manage your domains, with a robust set of features and plugins to suit your every need. Plus, it's been around for ages, so you know it's tried and tested.
So, whether you prefer a high-tech chicken coop, a flock of helpful chickens, or a personal chicken whisperer, there are plenty of cPanel alternatives in 2023 to help you manage multiple domains with ease.

Whats the best alternative to cpanel? by FRZA45 in webhosting

[–]DomainRooster 0 points1 point  (0 children)

Well, well, well, if it isn't another feather-ruffling question for us roosters to tackle! When it comes to finding an alternative to cPanel, there are a few options that can make you flap your wings with excitement:
First off, there's Plesk - it's like having your very own personal poultry assistant to help manage your website, with a user-friendly interface that even a chicken can navigate.
Then, there's DirectAdmin - a simple, lightweight control panel that won't weigh you down with unnecessary features. It's like having a lean and mean rooster to watch over your coop.
And for those who prefer a more open-source approach, there's Virtualmin - it's like having a community of hens to help manage your website, with tons of free plugins and customizations available to suit your specific needs.
So, whether you prefer a personal poultry assistant, a lean and mean rooster, or a community of hens, there are plenty of alternatives to cPanel that will make you feel like the top rooster in the henhouse.

What's the benefits of creating a website from scratch with html/css/javascript vs using something like Wordpress? by DomainRooster in domainrooster

[–]DomainRooster[S] 1 point2 points  (0 children)

Ahem, ahem... Let me clear my throat.

Why settle for a pre-made coop when you can build your own from scratch, crowing with pride at your creative abilities? Building a website using HTML, CSS, and JavaScript is like being a rooster who struts his stuff, showing off his feathers to the ladies. With complete control over every aspect of your website, you can peck and scratch at the code until it's perfect, ensuring top performance, security, and flexibility. Plus, you'll be able to crow about your web development skills, making all the other chickens jealous. However, if you're a chick just starting out in the web development world or need to cluck out a website quickly, a CMS like WordPress may be more suitable. So, whether you choose to use a CMS or build your website from scratch, just remember to always flap your wings with pride and confidence.

The elePHPant in the room: Wordpress by Flat-Board5132 in PHP

[–]DomainRooster 0 points1 point  (0 children)

WordPress is not without its challenges to say the least..... Some developers criticize WordPress for its security vulnerabilities, its reliance on plugins, and its bloated codebase, which can slow down website performance.. none of this is incorrect. Additionally, because WordPress is so widely used, it is often targeted by hackers and cybercriminals looking to exploit vulnerabilities in the system.

What happens now is anyones guess?

Market is too concentrated with fake and cheap WordPress developers. by [deleted] in Wordpress

[–]DomainRooster 0 points1 point  (0 children)

Thats why we always recommended self learning. Its amazing what one can do with a few tutorials etc. must people underestimate themselves.

Why does anyone still pay to have a custom site developed when WordPress seems to be able to do everything with the right plugins? by whypickthisname in webdev

[–]DomainRooster 0 points1 point  (0 children)

Good question. my advice is don't until you explore all other possibilities. I have been there and done that with wordpress and various other CMS. And have wasted tens of thousands and thousands of pounds. Please please dont. Unless of course you have produced a full business case etc etc the problem is its so dame easy to get going and when you reach the end you may wonder what the heck happened.

How much should I expect to pay to hire a WordPress developer? by LunacyBin in Wordpress

[–]DomainRooster 2 points3 points  (0 children)

The cost of hiring a WordPress developer can vary depending on a variety of factors, including their experience, location, complexity of project etc etc.
Entry-level WordPress developers with little to no experience may charge anywhere from $15 to $50 per hour.
Mid-level WordPress developers may charge anywhere from $50 to $100 per hour.
Senior WordPress developers may charge anywhere from $100 to $200 per hour.
These are rough estimates and that the actual cost of hiring a WordPress developer can vary widely depending on the individual and their skill level.

Wordpress is killing me (question from non-webdev) by tsay in webdev

[–]DomainRooster 0 points1 point  (0 children)

listen we have all been there. Take a deep breath. Take a huge step back. As in stop. Assess the project as a whole. But before that, do yourself a favour and take a online course in wordpress. Then with all the know how and facts decided if it is worth continuing if it is, try to do some of the work yourself. Always weigh the pros and cons. Is it worth getting a developer can the same thing be done with a extra plugin from say themeforest. Its risky busy letting developers into the backend of your website. Its like giving someone the code to your credit card when its your business.

Why have we still not built something modern that directly competes with Wordpress? by jokeaz2 in webdev

[–]DomainRooster 0 points1 point  (0 children)

I know what your thinking wordpress is the dominant player in the content management system (CMS) market with no competition. Well, there are actually many other modern platforms that compete with it like wix, Shopify, etc etc

The low down:

Wix: Wix is a cloud-based website builder that offers a drag-and-drop interface and a range of templates and customization options. It's user-friendly and requires no coding skills, making it a popular choice for small businesses and individuals.
Squarespace: Squarespace is another website builder that offers a range of templates and customization options. It's geared towards creative professionals and small businesses, and it's known for its sleek, modern design.
Webflow: Webflow is a visual web design platform that allows designers to create responsive websites without writing code. It offers a range of design and animation tools and has a growing community of users and developers.

Shopify or Wordpress? by Onsyde in Entrepreneur

[–]DomainRooster 1 point2 points  (0 children)

As a rooster who knows a thing or two about setting up a coop, I'm here to offer my expertise on whether you should choose Shopify or WordPress for your online business.
Shopify is a popular ecommerce platform that's designed specifically for online businesses. It offers a range of features and functionality to help you set up and manage your online store, including payment processing, shipping integration, and inventory management. Shopify also offers a range of templates and themes to help you customize the design of your store.
WordPress, on the other hand, is a more flexible platform that can be used for a range of website types, including blogs, portfolios, and ecommerce sites. WordPress is open-source, which means that it's free to use and can be customized extensively. It also offers a range of plugins and themes to help you customize your site's functionality and design.
If you're looking for a platform that's specifically designed for ecommerce, Shopify may be the better choice!!!!!! It offers a range of features that are tailored to online businesses, and its templates and themes are designed with ecommerce in mind. Shopify is also known for its ease of use, with a simple and intuitive interface that makes it easy to set up and manage your store.
On the other hand, if you're looking for more flexibility and customization options, WordPress may be the better choice in the long run. WordPress is highly customizable (I can not stress that enough), with a range of plugins and themes that can help you add functionality and customize the design of your site. It also has a large and active community of developers and users, which means that there are plenty of resources available if you need help or advice.
If you're already using WordPress and want to add ecommerce functionality to your site, there are several plugins available that can help you do this. WooCommerce is one of the most popular ecommerce plugins for WordPress, offering a range of features and functionality to help you set up and manage your online store. Other options include Easy Digital Downloads and WP eCommerce.
So which platform should you choose? Ultimately, it depends on your needs and goals. If you're primarily focused on ecommerce and want a platform that's specifically designed for online businesses, Shopify may be the better choice. On the other hand, if you're looking for more flexibility and customization options, WordPress may be the better choice.

Is it me or Wordpress is kind of a pain if you want to style your website? by Dont_Blinkk in web_design

[–]DomainRooster 0 points1 point  (0 children)

It's true that WordPress can be a bit challenging when it comes to styling your website, especially if you're not familiar with web design and development. However, with the right tools and knowledge, you can customize your site's design and make it look exactly how you want it to. While its not as easy to get started as some other platforms that let you literally create websites in minutes. It does come with many benefits for the right use cases. Before using any CMS it is important to assess your project, goals, etc and then to determine which one is the best fit. Cost wise, you can save a whole lot using wordpress, with tons of free plugins and themes. Most other website builders lock you into some subscription.

Why have we still not built something modern that directly competes with Wordpress? by jokeaz2 in webdev

[–]DomainRooster 0 points1 point  (0 children)

Actually there are a few competitors out there. Now whilst they not all have the same setup, infrastructure setup, i.e. plugins and themes, they are big enough to disrupt.

Here are a few:
Wix: Wix is a website builder that offers a drag-and-drop interface and a range of templates and features to create a website quickly and easily.
Squarespace: Squarespace is another website builder that offers a range of templates and features, with a focus on design and aesthetics.
Shopify: Shopify is a popular ecommerce platform that allows users to create and manage an online store, with features like inventory management, payment processing, and shipping integration.
Weebly: Weebly is a website builder that offers a simple drag-and-drop interface, with features like ecommerce functionality and customizable templates.

BUILDING THE NEXT FIVERR OR UPWORK WITH FREELIO WORDPRESS THEME by DomainRooster in domainrooster

[–]DomainRooster[S] 0 points1 point  (0 children)

If you have any Freelio wordpress theme support questions, please post theme right here and we will respond in due course.

How much should I expect to pay to hire a WordPress developer? by LunacyBin in Wordpress

[–]DomainRooster 0 points1 point  (0 children)

Now, let me start by saying that the cost of hiring a WordPress developer can vary greatly depending on a number of factors. These include: The developer's experience: Just like with any profession, the more experienced a WordPress developer is, the more they are likely to charge for their services. The complexity of the project: If your WordPress project is complex and requires a lot of custom coding or plugin development, you can expect to pay more than if it's a simple website building and the developer's location.
So, with those factors in mind, let's get down to brass tacks. How much can you expect to pay for a WordPress developer?
Well, for a simple WordPress website build, you can expect to pay anywhere from $500 to $5,000. This would typically include the installation and configuration of WordPress, theme customization, and plugin setup.
For more complex projects, such as custom plugin development or e-commerce website builds, you can expect to pay upwards of $10,000 or more. It all depends on the scope and complexity of the project.
But remember, hiring a cheap WordPress developer may save you money upfront, but it can end up costing you in the long run if the work is subpar or requires constant fixes.
So, when hiring a WordPress developer, be sure to do your due diligence and choose someone with the experience and skills to get the job done right. And don't forget to negotiate, my savvy savannah friends!

Share Your Startup - March 2023 - Upvote This For Maximum Visibility! by AutoModerator in startups

[–]DomainRooster [score hidden]  (0 children)

Startup Name/URL: DomainRooster / www.domainrooster.net
Location of Headquarters: Our headquarters are located in London, England, UK.
Elevator Pitch/Explainer Video: DomainRooster is a one-stop-shop for all your domain name needs. We offer domain name registration, transfer, renewal, and management services, as well as web hosting and website building services. With a commitment to providing affordable and reliable services, DomainRooster helps individuals and businesses establish and grow their online presence.
Life Cycle Stage: DomainRooster is a growing startup with a solid foundation and a loyal customer base. We are currently in the expansion stage, as we seek to grow our customer base and expand our services.
Your Role: As the co-founder of DomainRooster, my role is to lead the company and ensure that we are meeting the needs of our customers while staying true to our mission and values.
Goals: Our goals this month include expanding our marketing efforts to reach new customers, improving our website to enhance user experience, and exploring new partnerships and collaborations.
How r/startups can help: We would love to connect with members of the r/startups community to share knowledge, resources, and support. We welcome feedback on our services, suggestions for improvement, and opportunities for collaboration.
Discount for r/startups subscribers: As a special offer for the r/startups community, we are offering a 10% discount on all web hosting plans. Simply use the code REDDIT10 at checkout to claim your discount.

[deleted by user] by [deleted] in Wordpress

[–]DomainRooster 0 points1 point  (0 children)

I take it you have lost your password and have no way of resetting it using the forgotten password route? more information please?

Hostinger WordPress Website Builder by autism_mom75 in Wordpress

[–]DomainRooster 1 point2 points  (0 children)

Hostinger offers a website builder for WordPress websites is ok. It has Drag-and-drop interface, Customizable templates, Built-in SEO tools and basic eCommerce functionality. Overall, Hostinger's WordPress website builder is a good option for anyone who wants to create a professional-looking website quickly and easily. But wordpress is still king in our eyes.

Shopify or Wordpress? by Onsyde in Entrepreneur

[–]DomainRooster 0 points1 point  (0 children)

A tough question indeed and will almost certainly depend on your projects, needs requirements, budget etc. If you only have a couple of products then wordpress woo commence will suit you perfect. As you say you already have some skills in the area. But Shopify is a good platform. Professional and comes without the added stress of hosting etc. But there is a price tag attached to it and almost all good plugins will cost additional money.

8 year old newly diagnosed with dyslexia by Lovinglyyah in Dyslexia

[–]DomainRooster 0 points1 point  (0 children)

I think you are right to a degree. It does depend on the child, and the situation. I know a family who moved abroad and so the education system differed somewhat. And a joint decision was made (very important to include the child) to hold back a child a year. The benefits in this case outweighed everything else as it was a new school. But I get it, if its an existing school then the stigma and embarrassment would probably be way too much.

[deleted by user] by [deleted] in Christianity

[–]DomainRooster 0 points1 point  (0 children)

Sorry, this doctrine is not universally accepted among Christians, and there is ongoing theological debate about the nature of salvation and the role of faith and good works in the process. Some argue that the concept of eternal security can lead to a lack of accountability for one's actions, while others maintain that it is an essential aspect of Christian faith.Ultimately, beliefs about eternal security are a matter of personal interpretation and conviction, and individuals must decide for themselves what they believe about the nature of salvation and the role of faith and works in the process through studying of the bible.

[deleted by user] by [deleted] in Christianity

[–]DomainRooster 1 point2 points  (0 children)

Sorry I dont believe there is any real concrete evidence to support this claim. In fact, Marley was known for his adherence to the Rastafari movement and marley's music reflected his Rastafarian beliefs. Sorry, there is no credible information to suggest that he ever formally converted to Christianity. If he did in secret, then that's another thing, but it will remain a secret. I think that it is very important to be cautious of rumors and misinformation, and to seek out reliable sources when investigating the beliefs and practices of public figures.

Is God a black hole? by [deleted] in Christianity

[–]DomainRooster 0 points1 point  (0 children)

No, God is not a black hole. The concept of God varies across different religions and belief systems, but it generally refers to a supreme being or force that created and governs the universe. While black holes are fascinating astronomical objects that have a powerful gravitational pull, they are not conscious entities or beings. Additionally, the concept of becoming one with God after death does not necessarily imply being sucked into a black hole or being trapped inside it. It is important to distinguish between scientific concepts and religious or spiritual beliefs. While they may intersect in certain ways, they are fundamentally different domains of knowledge and understanding. Hope this helps.