Getting HTTP Error 503 when trying to install WHMCS - cpanel

I'm trying to install whmcs on a hosting account from truehoster and I'm getting "HTTP Error 503. The service is unavailable.", at the beggining of the install process.
The error_log in public_html is empty.
How can I fix it?

It's most likely a ioncube issue, maybe cloudlinux?
Try to change the php version, if your host supports it.

make sure you have ioncube installed ..
check the permissions of the folder where you want to install whmcs
for the error logs you can see them at /usr/local/apache/logs/error_log

Related

How can I get access to my Symfony app on my server?

I cloned my Symfony app to my server and when I want to open the website I get the error:
Forbidden
You don't have permission to access this resource.
Apache Server at mywebsite.com Port 80
What does that mean?
I would check the owner of the files in terminal.
I would check vhost file, on my local Ubuntu the location is /etc/apache2/sites-available/
You could check if you didn't miss any important step from the webserver configuration documentation
Configuring a Web Server
like installing the apache Symfony pack or manually set an .htaccess
I had to link my domain to the public folder instead of the root folder
I'm gonna need more information about the system. Which symfony version do you have? Have you seen the loggers? Have you deployed the system on a docker container? Which version of PHP are you using? Maybe you are missing some dependencies.

How to resolve "403 forbidden" errors when running yum update on a local mrepo server

I'm getting "403 forbidden" errors when trying to run yum update using my local mrepo server. This is on an air-gapped network and yum.conf has no proxy information, so I don't believe there's a configuration setting blocking updates. When I browse to individual RPM URLs using a Web browser, I get 403 responses as well.
I verified that all RRMs are open to the world (777).
Thanks,
-Andrew Moon

SVG with XAMPP 403 error

i'm running XAMPP on my local Linux-Laptop and want to test some SVGs s on a website I develop locally, but XAMPP wont let me access them. This is what I get:
Access forbidden!
You don't have permission to access the requested object. It is either read-protected or not readable by the server.
If you think this is a server error, please contact the webmaster.
Error 403
I googled for a bit, but I couldn't find a way to enable SVGs.
I'm using a standard XAMPP installation on Ubuntu 14.10 LTS.
Ok, thanks to Paul I discovered, that SVGs permission for "others" was set to "none". Setting it to "read only" fixed the problem.
Feel a bit stupid now >.<

How to check the server whether it is blocking POST request?

How to check whether my server is blocking the post request or not?
Currently in my wordpress, whenever I click update page there will be "The specified URL cannot be found" error. This is not permalink issue. The issue is with server configuration.
If you're getting the error message you say you're getting then POST is enabled and working. The problem is, like the message says, the URL.
Wordpress has this feature to enable "pretty URLs". It could be you've enabled it (or it may come enabled by default, I'm not sure) but don't have the required Apache module - mod_rewrite - enabled.
If you've got access to the command line of the server and your server is on Linux, simply issue:
// Enable mod_rewrite
> sudo a2enmod rewrite
// Restart Apache
> sudo service apache2 restart
If you would like some more help, please post the URL Wordpress is trying to reach and your Apache configuration to start with.
P.S.
If your server is on Windows, then enabling mod_rewrite depends on which software you've got installed.

deploying Axis2.war in tomcat 5.5 gets internal server error

I have downloaded the axis2.war file from the apache website.
I put it in the tomcat/webapps folder and it automatically creates a axis2 folder.
I open my web browser and navigate to http://127.0.0.0:8080/axis2/ and get the page that has services, validate and administration.
The problem is that if I click on any of the links a page with the apache logo is shown saying internal server error.
I have tried extracting the axis2.war my self and the file list is the same. the official apache website says that the axis2.war may not have unpacked correctly or it could be missing files. i have tries 1.6 and 1.5 of axis2 and still get the same error.
Can anyone explain what is causing this error and how to fix it ?
Please copy jstl-1.2.jar file in the %CATALINA_HOME%\lib folder. It will definitely solve the problem.
did you check weather tomcat is running.http://127.0.0.0:8080/.
please go through the following link to setup and test axis properly.
http://axis.apache.org/axis2/java/core/docs/userguide-installingtesting.html
turns out that it was the security settings blocking AXIS2
copy jstl-1.2.jar file in the Tomcat-Home\lib Folder, then your Problem Will Solve.
I had the same problem although i was not able to login on the axis2 administration on the localhost (http://localhost:8080/axis2/axis2-admin/) where i also got the "internal server error". After removing the old axis2 (axis2.1.7.5) and deploying an older version (axis2.1.7.0) it was possible for me to login with the default username and password (admin, axis2). It could be that the newer axis2 file was corrupted but i have not reinstalled the newer version yet.