-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can Cypht 2 work on a cPanel account? #1154
Comments
Yes, it will install with manual instructions: https://www.cypht.org/install.html If your cPanel has a one-click Tiki installer, you get Cypht within Tiki: https://doc.tiki.org/Cypht |
Thank you so much for your quick response and assistance. I really appreciate the support! I'm currently having some difficulties proceeding with the installation of Cypht. I created a script that performs various tasks, such as checking PHP and Composer versions, managing files and directories, installing Composer dependencies, and creating the necessary directory structure. The script seems to work correctly, and after it's completed, I can see the application's login page. However, I'm unsure of which credentials to use for logging in. I tried running
It seems that the script is unable to correctly read the values from the Below is the script I created and used:
Any guidance on how to proceed would be greatly appreciated. Thanks again for all your support! |
Wow! Looks like you did a good part of the job for #17 Please join us on https://gitter.im/cypht-org/community so a Cypht developer can do a screen share with you and make Cypht work for you. |
@Shadow243 please test the script above and advise. |
Additionally, I'd like to clarify a specific part of the script that handles the creation of the # Create the hm3 directory and subdirectories if they don't exist
if [ ! -d "$HM3_DIR" ]; then
mkdir -p "$HM3_DIR"
chmod 755 "$HM3_DIR"
echo -e "${GREEN}Main hm3 directory created and permissions set: $HM3_DIR${NC}"
fi
for subdir in "${SUBDIRS[@]}"; do
if [ ! -d "$HM3_DIR/$subdir" ]; then
mkdir -p "$HM3_DIR/$subdir"
chmod 755 "$HM3_DIR/$subdir"
echo -e "${GREEN}Subdirectory created and permissions set: $HM3_DIR/$subdir${NC}"
else
chmod 755 "$HM3_DIR/$subdir"
echo -e "${GREEN}Subdirectory $HM3_DIR/$subdir already exists, permissions set to 755.${NC}"
fi
done In this part of the script, the The folder is created outside of the |
Sorry for this late reply @rr10 , I just tried but i have a composer error, so a suggestion came to me: instead of reporting the error could we instead give a choice: i.e. ask if we want to install composer or cancel the operation or continue like that ? here is the first answer during the first test I hade this error: |
@Shadow243 All good, no worries! Feel free to modify the script as you see fit. Have you tested it on a cPanel account or another type of account? For cPanel, PHP extensions need to be installed using EA4. Keep in mind that not everyone has root access to the server, but many providers are usually willing to install PHP or Apache extensions if requested. If you don’t have access to a cPanel account, just let me know and I’ll be happy to assist you. |
Hi Cypht team,
I am interested in using Cypht Version 2 on a cPanel hosting account. Could you please confirm whether Cypht 2 is compatible with cPanel? If there are specific configurations or limitations that I should be aware of, I would appreciate the guidance.
Thank you!
The text was updated successfully, but these errors were encountered: