

Husein
Forum Replies Created
-
Husein
AdministratorAugust 22, 2025 at 6:40 am in reply to: Unable to Access Server After Enabling 2FAReplies viewable by members only
-
Husein
AdministratorAugust 22, 2025 at 6:36 am in reply to: Upload the source code of my CodeIgniter website on CoolifyYou can push your code to a Git repo, then create a new application in Coolify and connect that repo. Add a Dockerfile (or docker-compose) in your project that sets up PHP and the web server, add your secrets keys in the environment variables, and deploy.
Here is an example of deploying an application on coolify using your own Docker Regisrty: https://selfhostschool.com/docker-tutorial-for-solopreneurs/
-
Here check these codes, this is the interface of the app: https://github.com/hassancs91/google-search-console-analysis
And, i guess these are the wordpress code snippets:
– https://powerkit.dev/tools/code-share/0020c866
– https://powerkit.dev/tools/code-share/24a31f2d-
This reply was modified 1 month ago by
Husein.
github.com
GitHub - hassancs91/google-search-console-analysis
Contribute to hassancs91/google-search-console-analysis development by creating an account on GitHub.
-
This reply was modified 1 month ago by
-
Great! Do you need help with anything?
-
Husein
AdministratorApril 2, 2025 at 10:55 am in reply to: Which course provides a simple solution for making ChatGPT-4 and other AI toolsHello Erika,
Keeping everything free, will require you to pay from your own pocket to run them you cant subscribe to all these for free, however you can pay for them and let users use them for free in order to get more traffic to your website.
With respect to building tools, these 2 courses will help you build a system of tools that you can start from:
– https://learnwithhasan.com/learn/wordpress-saas/– https://learnwithhasan.com/learn/build-and-sell-ai-tools/
But in order to improve your skillset and build more complex and needed tools you’ll need to invest in your self and learning programming. This course contains a part where you’ll learn python: https://learnwithhasan.com/learn/prompt-engineering/
You’ll get access to all the courses above and the others in the library once you subscribe. -
Hello Newgen, i didnt quite understand whats the problem you’re facing can you please rephrase it and mention again what it is.
-
Replies viewable by members only
-
You can share it by email at [email protected] but make sure to mention that you’re coming from the forum to know that’s you.
-
Replies viewable by members only
-
Start with the one that has high search volume and low/medium ranking difficulty.
-
No need to pay for the pro plan, the free plan is enough to set up everything covered. We even use the free plan on our websites.
-
Oh okay, i get it now, but what is the error you’re getting. Anyways, here is my code if you want to try it directly:
from os import getenv
from phi.agent import Agent
from phi.model.openai.like import OpenAILike
# Ensure the Together API key is set as an environment variable
api_key = getenv(“TOGETHER_API_KEY”)
if not api_key:
raise ValueError(“TOGETHER_API_KEY environment variable is not set.”)
# Initialize the agent with the Together AI model
agent = Agent(
model=OpenAILike(
id=”mistralai/Mixtral-8x7B-Instruct-v0.1″,
api_key=api_key,
base_url=”https://api.together.xyz/v1″,
)
)
# Define the prompt
prompt = “Share a 2-sentence horror story.”
# Get the response from the agent
response = agent.run(prompt)
# Print the response content
print(response.content)
-
Replies viewable by members only
-
As Hasan mentioned, when starting with something like this, its better to start with a specific niche as it would be easier to market it and reach more audience at first, then you can add more tools in different fields but stay in the same macro niche.
With respect to finding ideas that make it worth it for people to pay, you can focus on building a good tool that, when you use it, you personally benefit from it and you can give people free daily/monthly limited credits to try the tool for free and if they want to use it more they would have to subscribe or buy points.
-
Replies viewable by members only