Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
This question does not appear to be about programming within the scope defined in the help center.
Improve this question
Having upgraded to version 3.3 I can no longer upload files.
The upload appears to work, progress bar runs without errors.
Metadata can be amended.
When visiting the files URL a 404 occurs.
The file IS NOT written to the uploads directory.
Upload directory has the correct permissions (755)
I'm thoroughly stumped - any ideas anyone?
This issue pertains to the owner of an uploaded file.
In my case the website files were owned by the FTP user, not the web server user. It seems this wasn't an issue in older versions but now is and this caused the problems documented above.
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 months ago.
Improve this question
I'm currently making myself a website with the "Call Me Sam" hugo theme. Locally, the site works perfectly and displays as wished, but when I deploy it with Netlify the css styling seems to be completely ignored.
My repo: https://github.com/Silvestre15/Website
Website: https://silvestred.netlify.app/
I think it has to do with the linking of my stylesheet, either inside index.html or config.toml (or config.yaml). Excuse my ignorance, I'm a complete noob.
If you open your browser console, you will see an error like this:
Failed to find a valid digest in the 'integrity' attribute for resource 'https://silvestred.netlify.app/css/main.min.c5514d3530979d291f3497facc20da1cec870028dbc2a3630b64bab8721bbe49.css' with computed SHA-256 integrity 'Wfmg6q+vptwXAkTmYQmG/pnqYU1TL7/dWE1NGmPquyQ='. The resource has been blocked.
So your problem is the integrity attribute in your CSS link. If you remove this your site should appear correctly.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I received a notification from Firebase to reverify my custom domain. Going into the firebase hosting dashboard, I only have one button to press on
Once I press it, I get the error:
We couldn't verify your domain . Please check your settings and try again.
What settings is it referring to?
On the DNS provider side nothing changed. Still have the records as configured when I first set up firebase hosting.
Received official word from Firebase:
We are aware of the deep impact it might be having for your project,
but I assure you we are working on it as our top priority. Our
engineering team is aware of this problem and even though they are
already working on it, the issue is still affecting several projects.
I apologize for the inconvenience and will keep you updated as soon as
more information is available.
[UPDATE]
https://status.firebase.google.com/incident/Hosting/21001
There is now an open ticket
Seems that they have fixed issue.
I just pressed "Verify" button again now and status says "Connected".
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
Currently I am refactoring the site written on ASP.NET MVC5.
It already has published-version on some remote server (Windows Server 2012, IIS). Every time after some code refactored I do publish again and replace some folders\files on remote server.
What I found and want to know if it is a bug or something else :
In Debug mode I can access site only as localhost:**** and it is correct.
After publish everybody can access site by two url : 'sitename.com' (OK) or 'sitename.sitename.com' (Hmm?). 'sitename.sitename.sitename.com' doesn't work - OK. I think this happened because of some settings of IIS\Server isn't it?
It is not the urgent problem, but I want to know why it happened. Currently I can't contact to previous developers, what is the sad moment.
It seems that "sitename.sitename.com" is a subdomaian of sitename.com go to Your hosting provider control panel and deactivate sitename.sitename.com subdomain.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I'm trying to configure aptana to help me code in netlogo, I can't seem to figure out how it's done. Is it a plugin or something?
edit: so bascially how can I import a language into aptana studio?
http://ccl.northwestern.edu/netlogo/resources.shtml has an "Editor support" section with plugins for some different programmers' editors including Emacs and Vi. Aptana isn't listed, so that means that so far as we (the developers of NetLogo) know, nobody has done the necessary work to make NetLogo be one of the languages that Aptana supports.
I have no firsthand experience with Aptana, but it seems to be targeted specifically for building web applications. That isn't what NetLogo is for, so it's not surprising that Aptana/NetLogo integration doesn't exist.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
The community reviewed whether to reopen this question 8 months ago and left it closed:
Original close reason(s) were not resolved
Improve this question
Trying to interpret this error and why it is happening:
Call to undefined function fivestar_widget_form() in
/home/readyby2/public_html/sites
/all/themes/readyby21/templates/page--resource.tpl.php on line 73
The directory is there, downloaded from the drupal main site, inside the modules directory.
Could there be some conflict?
If you are using the version of the module for Drupal 6, then fivestar_widget_form() is defined in the fivestar.module file; if you are getting that error, it means the module is not enabled, or it has not been loaded the moment the template file is being used. It could also mean the module is not in a directory where Drupal looks for the modules to load, which means you see it on your site, but Drupal is not looking for it where it is.
If you are using the Drupal 7 version of the module, then fivestar_widget_form() is not an implemented function.