ColdFusion FarCry CMS Installation Issue - coldfusion

We tried to install FarCry 7.2.11 on ColdFusion along with MSSQL version 2017 and we chose the FarCry bare bone, but got an issue at the final step of installation.
An error occurred on executing the query
All the bare bone tables where already created. We couldn't find the issue and tried with Lucee server and we could make it to the Login page. But when we clicked login button an error occurred as follows.
The FarCry folder was put in ROOT folder in C:/Lucee.
Could anyone please get the actual FarCry installation doc or kindly provide us a better solution to solve the error.

Related

Django perpetual 404s when visiting project directory URL

I have a very strange problem with Django and OLS. I am using the OpenLitespeed Django one click install droplet on Digital Ocean. In both my custom app and the example app in the droplet, if I visit a URL that matches the django project directory (in the example app, this is /demo/), then any subsequent page visits give a 404 error, no matter what URL you do. To reproduce, I've spun up a completely clean install of the droplet, then do the following steps:
Go to / -> see "Hello world!" as expected
Go to /demo/ -> also see "Hello world!" even though this should be a 404, as this URL is not specified in the urls.py or anywhere else
Go back to / -> 404! It seems to be looking for /demo/demo/ which doesn't exist
Trying any other URL also results in a 404.
The only way to get back to the normal behavior is to restart the OLS process. Everything then functions as expected unless any URL that starts with the project directory name is visited, in which case the whole thing crashes and returns 404s again.
Any help that can be provided to try and further troubleshoot this or possible fixes is greatly appreciated!
Versions:
OLS 1.6.9
Django 2.2 and 3.0
Python 3.6
Thanks for the bug reporting. It's a bug of "virtual context settings for wsgi" and should already fixed on version 1.6.11. If it's not on the repository, you can run the following command to upgrade it.
/usr/local/lsws/admin/misc/lsup.sh -v 1.6.11
Best,
Eric

bitnami redmine problem running post-install step

I’m trying to install Bitnami Redmine on my computer but the following worning appears:
Problem running post-install step. installationmay not comrrectly
Error running c:\ noysarah/apps/redmine\scripts\redmineini.bet : rake aborted!
HOME environment variable (or HOMEDRIVE and HOMEPATH) must be set and point a directory
If I’m pressing the ‘X’ button the downloads continues. But then when the browser open I’m getting the following message:
“The requested URL was not found on this server”
If someone can help it will be amazing. Thank you.
Bitnami developer here,
Could you please run the following command in a prompt?
set HOME
If you don't have set HOMEDRIVE or HOMEPATH, you have to set them before running the installer. For example, you could set them like this (if your user is Administrator):
HOMEDRIVE=C:
HOMEPATH=\Users\Administrator
I hope it helps.

After successfull installation of opencart, it keeps directing to the install page

I just installed latest opencart to my windows hosting. After the successfull installation, I deleted install folder. When I go to home page or admin page, it takes me to http://www.....com/install/index.php
Can you figure out the problem please?
I already tried in different browser, computer but it did not change a thing

Sitecore Rocks not working properly with VS 2012 Ultimate

I have installed VS 2012 Ultimate and Sitecore Rocks 1.4, connected to the sitecore instance, create a solution and connected with sitecore rocks and when I try to create a layout from my solution Im getting an error
"Could not load file or assembly sitecore.rocks, version 2.0.0.0, culture=neutral, publickeytocken="...
I tried to installed Rocks version 2 but its not getting installed in VS 2012,
Please help me on fixing this..
I know this is an old question but I hope this will help someone in the future.
I was having the same error and then I realized the extention is local to the user. I login as a different user and install the extention and it worked for that user.
So under my user I uninstalled the extension.
Remove folder C:\Users\ {Your Username}\AppData\Local\Sitecore
Then searched for "rocks" in C:\Users\ {Your Username}\AppData\Local\Microsoft\VisualStudio and add remove those items too.
I don't know if I had to but I also removed these registry entries.(Remember to do a backup before removing them.)
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\ {Your VS version}\DialogPage\Sitecore.VisualStudio.Options.VisualStudioOptions
HKEY_CURRENT_USER\Software\Sitecore\Sitecore.Rocks.VisualStudio
HKEY_CURRENT_USER\Software\Sitecore\VisualStudio
HKEY_CURRENT_USER\Software\Sitecore A/S\Sitecore Rocks
Rebooted and reinstalled the extension then everything worked.

Error "Failed Signature verification" while attempting to update via CF10 Administrator

When you attempt to apply any hot fixes via the ColdFusion 10 Administrator you continuously get:
Error occurred while installing the update:
Failed Signature verification
You may have even validated the files and manually and placed them in the hf-updates directory at which point the CF10 admin page still shows the "Install" option, but again you receive the same error.
This error means you've forgotten to apply the ColdFusion 10 Mandatory Update which updates the certificate used to validate install packages.
From Adobe's website:
All ColdFusion updates are now signed with the new code signing
certificate because of a code signing certificate revocation. This
mandatory Update ensures that your current installation of ColdFusion
10 is updated with the new code signing certificate. This update is
also required for proper functioning of the auto update functionality
in ColdFusion 10. Adobe strongly recommends that you apply this
update.
Once the update has been installed (you can find the JAR install instructions here) the service will be restarted and you will be able to apply subsequent updates via the ColdFusion administrator.
Edit:
Run the command prompt as Administrator:
Navigate to your jar file, and run the following command to run jar file:
D:\>java -jar cf10_mdt_updt.jar
#UncleSol,
I also encountered the issue after having installed the mandatory update (cf10_mdt_updt.jar). After successfully applying the mandatory update, CF wanted to apply update 12 as the first update, which is where I encountered this issue, so I downloaded and manually installed Update 11 from this page:
https://helpx.adobe.com/coldfusion/kb/coldfusion-10-updates.html (installed in exactly the same manner as NotJustClarkKent's instructions)
After manually installing update 11, I was able to use the CF Updater to install the rest of my updates.
Hope that helps.