I now update my netbeans to version 16, and there not working suggested img path. For example I want to write < img src="img/image.jpg" > , and in older version when I start to write image name, there was appear a dropdown with existing images in that folder. What have i do to return that feature to netbeans 16? :(
Related
I have a Problem with a Windows Store App.
I moved the folder and now I cant compile it, I get the error:
Fehler 2 File C:\[old path]\Strings\en-US\Resources.resw not found. C:\[new path]\MakePRI
I dont know how to fix it because the app is in the same relative path in the project as before.
any hints for a solution?
This item was probably added to the project with absolute path. You can fix that in one of two ways:
In SolutionExplorer remove Resources.resw from the project. Then click on Show All Files icon to make the file appear in its folder although it's not included in the project (I understand you did copy it over when moving the project). Now right click on the file and select Include In Project. After that you can again turn off Show All Files.
In Solution Explorer right click on the project and select Unload Project. Now right click on the project again and select Edit ProjectName.csproj. In the file find Resources.resw and replace the existing tag (and any subtags) with <PRIResource Include="Strings\en-US\Resources.resw" />. Save the changes and close the file. Right click on the project again and select Reload Project.
I got into this problem and I found an easy solution. Open the project and it will show the error. Now right click on the App name in Solution Explorer (on the right hand side) and select Build.This will set the path again and the project can be run now.
I am using FDT 5 and would like to create a new project with already existing source files and assets. When I start up the Project Wizard (New->FDT Project) I browse to the folder I want to make as the project but I cannot proceed as FDT gives me the error:
*"PROJECT_NAME overlaps the location of another project: PROJECT_NAME"*
I have downloaded a flash project (developed in FDT) and would just simply like to make it a project in my FDT environment.
I mean this shouldn't be so complicated right? I don't want to create an entirely new project (its own folder) I want to use the same folder I downloaded and view that project. I am using git so I have to work in the same path, sort of speak.
Any ideas?
EDIT:
Apparently this is an issue with FDT, a small bug. I managed to solve the problem following this:
FDT / Eclipse Error : ‘overlaps the location of another project’
And on the eclipse forum:
Eclipse Forum
I have got an old joomla version running. Some 1.0.x. (I did not yet intend to upgrade this site but will do as soon as I find some time for doing so)
However I had to upgrade the outdated linux (Suse 10.1) on that server and installed ubuntu 12.04.
Then I copied all the files to the server, that I backed up before the OS upgrade. And I re-created the database and the user that Joomla was using to access the DB. I Imported the tables and data using phpMyAdmin which I used before to export the old data base.
I did that before with other (more modern versions of) Joomla installations. As far as I can see the database was recoverd fine and all the files were installed and are at a proper place. The Backoffice/Admin site works fine. All Links (an extenstion/component) and all content items are still there and just look fine. (Given it is a rather old version :)
But on the frontend site the content items are missing. Front page looks fine, menu looks fine but the content is empty.
Menu Items to components (old zoom gallery, weblinks component) work just right. Samples:
http://www.klecker.de/photo/index.php?option=com_weblinks&Itemid=52
http://www.klecker.de/photo/index.php?option=com_zoom&Itemid=26&catid=13
But "internal" links to content items - static and normal - don't work at all. Sample:
http://www.klecker.de/photo/index.php?option=com_content&task=view&id=121&Itemid=199
What could be wrong? What did I miss or overlook? Something related to the file system structure, which is slightly different between these two linux distributions and plesk versions? Or may different Versions of php5 or mysql cause some side effect?
Could you turn on your error debugging or let us know what the error is?
If you are on php 5.3 try the following. It worked for me on an archived (locked down) 1.0.15 site:
Open /includes/Cache/Lite/Function.php
Go to line 74, i.e. $arguments
= func_get_args();
Replace it with this:
$arguments = func_get_args();
$numargs = func_num_args();
for($i=1; $i < $numargs; $i++)
{
$arguments[$i] = &$arguments[$i];
}
Save
Test
5.3 support was not officially added to Joomla until version 1.5.15.
I got an issue with Intellij 11. It doesn't show the "bin" folder (ActionScript 3 project) in my project view on the left.
Under "Project Settings->Modules", "bin" is an "Excluded" folder, but there is no option to change this.
Thanks!
You should be able to click on the Excluded button in the Project Structure - Modules tree explorer.
EDIT:
I see, the problem is perhaps that IntelliJ excludes by default the compiler output folder. Try changing the output folder in the Project Structure - Project - Complier Output text box.
I suspect you won't be able to change this behaviour though.
I installed Aptana Studio 3 on my windows machine.
I created new WEB Project but when I expand my Proj folder I can see only "Connection" tab. Nothing else. What is the prob? what should I do to get all the files?
Forgive me if the following is what you already did but I was not certain what steps you took from your question/post ... I'm going through the standard steps for creating an HTML 5 Web Project with the Boilerplate templates:
Open Aptana ( duh :) )
File -> New -> Web Project
Provide a Project Name and select your directory if you don't want the default used
Press Next
Select the checkbox for 'Create the project using one of the templates'
Select the HTML5 Boilerplate (use the cached one - I can never get the other, networked one to work)
Select Finish
You should now see the new project and all its default files in your App Explorer view in Aptana.
If you followed those steps but it still fails, I would file a bug (or, at the least, check the existing issues with Aptana) at:
http://jira.appcelerator.org/browse/APSTUD (bugs)