hang at 0% on "Building/Creating Model" [message #31198] |
Sat, 23 June 2007 19:17 |
Eclipse User |
|
|
|
Originally posted by: tomdeme.gmail.com
I'm new to the PDT module. I checked-out a large CMS with all its
modules into my workspace. The download seemed to complete just fine,
but the process indicator in the lower-right was hanging at 70% or so,
so I shutdown the PC.
Whenever I open the workspace it hangs at 0% on "building php model".
Any ideas? Is the CVS project just too big? But why no progress at all
from 0%--maybe I messed up the state? Can I reset it?
I just upgraded my laptop's memory from 256MB to 512MB.
|
|
|
Re: hang at 0% on "Building/Creating Model" [message #31234 is a reply to message #31198] |
Sat, 23 June 2007 19:22 |
Eclipse User |
|
|
|
Originally posted by: tomdeme.gmail.com
I should note that my other workspaces are fine, just the PHP one is
messed up.
Tom C wrote:
> I'm new to the PDT module. I checked-out a large CMS with all its
> modules into my workspace. The download seemed to complete just fine,
> but the process indicator in the lower-right was hanging at 70% or so,
> so I shutdown the PC.
>
> Whenever I open the workspace it hangs at 0% on "building php model".
>
> Any ideas? Is the CVS project just too big? But why no progress at all
> from 0%--maybe I messed up the state? Can I reset it?
>
> I just upgraded my laptop's memory from 256MB to 512MB.
|
|
|
Re: hang at 0% on "Building/Creating Model" [message #31531 is a reply to message #31234] |
Mon, 25 June 2007 11:30 |
Eclipse User |
|
|
|
Originally posted by: martijn.webfauna.com
Hi Tom,
I encounter this problem as well for some large (CVS) projects. However,
I don't think this is simply a size-related issue, rather a rights
and/or fileIO-issue.
The problem only pops up (now and then) for projects that have a link to
my /tmp dir, which often contains entire PHP projects that are copied
there prior to rolling out code. For some external reason, sometimes the
rights to these files are changed to more restricted modes: building the
PHP model for a project that contain a link to /tmp will sometimes hang
at 0% when trying to access files for which the Java process lacks the
right, without any error in Eclipse. This could very well be the same
issue you are experiencing.
You could try and figure out which files are troublesome by looking in
your Eclipse log-file (.log), which resides in a directory .metadata in
your Workspace. Look for errors like:
org.eclipse.core.internal.resources.ResourceException(/proj/ tmp/file.ext)[381]:
java.io.IOException: File not found: V:\proj\tmp\file.ext.
java.io.IOException: File not found: V:\proj\tmp\file.ext.
Fixing these files might help, but often I end up removing the offending
project and checking it out again into a new PDT project, after a mass
777 chmod on my /tmp dir.
I hope this helps in shedding some light on this issue (I'm a novice
user myself).
regards,
Martijn
Tom C wrote:
> I should note that my other workspaces are fine, just the PHP one is
> messed up.
>
>
> Tom C wrote:
>> I'm new to the PDT module. I checked-out a large CMS with all its
>> modules into my workspace. The download seemed to complete just fine,
>> but the process indicator in the lower-right was hanging at 70% or so,
>> so I shutdown the PC.
>>
>> Whenever I open the workspace it hangs at 0% on "building php model".
>>
>> Any ideas? Is the CVS project just too big? But why no progress at all
>> from 0%--maybe I messed up the state? Can I reset it?
>>
>> I just upgraded my laptop's memory from 256MB to 512MB.
|
|
|
Re: hang at 0% on "Building/Creating Model" [message #32022 is a reply to message #31531] |
Wed, 27 June 2007 15:33 |
Eclipse User |
|
|
|
Originally posted by: tomdeme.gmail.com
This is a multi-part message in MIME format.
--------------050409050207020806000707
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Thanks, Martijn. I welcome more comments from you and others.
I checked the log files and did not see any File not found errors. Just
the same, I changed permissions on my workspace folder to 777 and
checked out the project again from CVS.
At first, it seemed to work. Now, I'm seeing "Creating PHP model 0%"
again. Actually, there are two model-creation processes running,
according to the progress view.
There were 10 .bak_#.log files created yesterday but I think that was my
last attempt to open the workspace before I deleted the offending
project and checked it out again. I've attached a sample of the .log file.
Yesterday there were errors on many files that read like this:
!ENTRY org.eclipse.team.cvs.core 2 0 2007-06-26 12:01:17.620
!MESSAGE CVS file
/DrupalContributionsHEAD/tricks/sympal_scripts/module_fetche r/lib/pcltrace.lib.php
either contains invalid line endings on the server (CR/LF instead of
just LF) or is a binary file that is not marked as -kb.
Today I see these errors:
> !ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.697
> !MESSAGE NLS unused message: NewPHPManualSiteDialog_url in: org.eclipse.php.internal.ui.PHPUIMessages
>
> !ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.701
> !MESSAGE NLS missing message: LibrariesWorkbookPage_libraries_addzip_button in: org.eclipse.php.internal.ui.PHPUIMessages
If anyone has an idea, please let me know.
Tom
Martijn Polder wrote:
> Hi Tom,
>
> I encounter this problem as well for some large (CVS) projects. However,
> I don't think this is simply a size-related issue, rather a rights
> and/or fileIO-issue.
>
> The problem only pops up (now and then) for projects that have a link to
> my /tmp dir, which often contains entire PHP projects that are copied
> there prior to rolling out code. For some external reason, sometimes the
> rights to these files are changed to more restricted modes: building the
> PHP model for a project that contain a link to /tmp will sometimes hang
> at 0% when trying to access files for which the Java process lacks the
> right, without any error in Eclipse. This could very well be the same
> issue you are experiencing.
>
> You could try and figure out which files are troublesome by looking in
> your Eclipse log-file (.log), which resides in a directory .metadata in
> your Workspace. Look for errors like:
>
> org.eclipse.core.internal.resources.ResourceException(/proj/ tmp/file.ext)[381]:
> java.io.IOException: File not found: V:\proj\tmp\file.ext.
>
> java.io.IOException: File not found: V:\proj\tmp\file.ext.
>
> Fixing these files might help, but often I end up removing the offending
> project and checking it out again into a new PDT project, after a mass
> 777 chmod on my /tmp dir.
>
> I hope this helps in shedding some light on this issue (I'm a novice
> user myself).
>
> regards,
> Martijn
>
> Tom C wrote:
>> I should note that my other workspaces are fine, just the PHP one is
>> messed up.
>>
>>
>> Tom C wrote:
>>> I'm new to the PDT module. I checked-out a large CMS with all its
>>> modules into my workspace. The download seemed to complete just fine,
>>> but the process indicator in the lower-right was hanging at 70% or so,
>>> so I shutdown the PC.
>>>
>>> Whenever I open the workspace it hangs at 0% on "building php model".
>>>
>>> Any ideas? Is the CVS project just too big? But why no progress at all
>>> from 0%--maybe I messed up the state? Can I reset it?
>>>
>>> I just upgraded my laptop's memory from 256MB to 512MB.
--------------050409050207020806000707
Content-Type: text/plain;
name="sample_log"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="sample_log"
!ENTRY org.eclipse.team.cvs.core 2 0 2007-06-26 12:01:16.616
!MESSAGE CVS file /DrupalContributionsHEAD/tricks/smtp/README.txt either contains invalid line endings on the server (CR/LF instead of just LF) or is a binary file that is not marked as -kb.
!ENTRY org.eclipse.team.cvs.core 2 0 2007-06-26 12:01:16.638
!MESSAGE CVS file /DrupalContributionsHEAD/tricks/sympal_scripts/module_fetche r/moduleFetcher.php either contains invalid line endings on the server (CR/LF instead of just LF) or is a binary file that is not marked as -kb.
!ENTRY org.eclipse.team.cvs.core 2 0 2007-06-26 12:01:16.712
!MESSAGE CVS file /DrupalContributionsHEAD/tricks/sympal_scripts/module_fetche r/lib/pclerror.lib.php either contains invalid line endings on the server (CR/LF instead of just LF) or is a binary file that is not marked as -kb.
!ENTRY org.eclipse.team.cvs.core 2 0 2007-06-26 12:01:16.721
!MESSAGE CVS file /DrupalContributionsHEAD/tricks/sympal_scripts/module_fetche r/lib/pcltar.lib.php either contains invalid line endings on the server (CR/LF instead of just LF) or is a binary file that is not marked as -kb.
!ENTRY org.eclipse.team.cvs.core 2 0 2007-06-26 12:01:17.620
!MESSAGE CVS file /DrupalContributionsHEAD/tricks/sympal_scripts/module_fetche r/lib/pcltrace.lib.php either contains invalid line endings on the server (CR/LF instead of just LF) or is a binary file that is not marked as -kb.
!ENTRY org.eclipse.team.cvs.core 2 0 2007-06-26 12:01:17.665
!MESSAGE CVS file /DrupalContributionsHEAD/tricks/sympal_scripts/module_fetche r/lib/pclzip-trace.lib.php either contains invalid line endings on the server (CR/LF instead of just LF) or is a binary file that is not marked as -kb.
!ENTRY org.eclipse.team.cvs.core 2 0 2007-06-26 12:01:18.862
!MESSAGE CVS file /DrupalContributionsHEAD/tricks/sympal_scripts/module_fetche r/lib/phpunzip.lib.php either contains invalid line endings on the server (CR/LF instead of just LF) or is a binary file that is not marked as -kb.
!ENTRY org.eclipse.team.cvs.core 2 0 2007-06-26 12:01:18.880
!MESSAGE CVS file /DrupalContributionsHEAD/tricks/sympal_scripts/module_fetche r/lib/phpzip.lib.php either contains invalid line endings on the server (CR/LF instead of just LF) or is a binary file that is not marked as -kb.
!SESSION 2007-06-27 10:15:18.514 -----------------------------------------------
eclipse.buildId=M20060921-0945
java.version=1.5.0_08
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=en_US
Command-line arguments: -os linux -ws gtk -arch x86
!ENTRY org.eclipse.ui 2 0 2007-06-27 10:15:38.126
!MESSAGE Warnings while parsing the commands from the 'org.eclipse.ui.commands' and 'org.eclipse.ui.actionDefinitions' extension points.
!SUBENTRY 1 org.eclipse.ui 2 0 2007-06-27 10:15:38.127
!MESSAGE Commands should really have a category: plug-in='org.eclipse.php.debug.ui', id='org.eclipse.php.deubg.ui.phpexeShortcut.debug', categoryId='org.eclipse.debug.ui.category.debug'
!SUBENTRY 1 org.eclipse.ui 2 0 2007-06-27 10:15:38.127
!MESSAGE Commands should really have a category: plug-in='org.eclipse.php.server.ui', id='org.eclipse.php.server.ui.phpServerShortcut.debug', categoryId='org.eclipse.debug.ui.category.debug'
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.657
!MESSAGE NLS unused message: PHPAppearancePreferencePage_appearanceHeader in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.659
!MESSAGE NLS unused message: NewPHPManualSiteDialog_chooseCHMFile in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.659
!MESSAGE NLS unused message: NewPHPManualSiteDialog_urlAlreadyInUse in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.660
!MESSAGE NLS unused message: NewPHPManualSiteDialog_fileExtension in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.690
!MESSAGE NLS unused message: NewPHPManualSiteDialog_remoteSiteURL in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.691
!MESSAGE NLS unused message: NewPHPManualSiteDialog_localDirectory in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.691
!MESSAGE NLS unused message: NewPHPManualSiteDialog_windowsCHMFile in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.694
!MESSAGE NLS unused message: NewPHPManualSiteDialog_dirDoesntExist in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.694
!MESSAGE NLS unused message: NewPHPManualSiteDialog_fileDoesntExist in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.697
!MESSAGE NLS unused message: PHPAppearancePreferencePage_showMehodsReturnType in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.697
!MESSAGE NLS unused message: NewPHPManualSiteDialog_url in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.701
!MESSAGE NLS missing message: LibrariesWorkbookPage_libraries_addzip_button in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.704
!MESSAGE NLS missing message: LibrariesWorkbookPage_libraries_addextzip_button in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.704
!MESSAGE NLS missing message: IncludePathDialogAccess_ZIPArchiveDialog_new_title in: org.eclipse.php.internal..ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.705
!MESSAGE NLS missing message: IncludePathDialogAccess_ZIPArchiveDialog_new_description in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.705
!MESSAGE NLS missing message: IncludePathDialogAccess_ZIPArchiveDialog_edit_title in: org.eclipse.php.internal.ui.PHPUIMessages
!ENTRY org.eclipse.osgi 2 1 2007-06-27 10:15:54.705
!MESSAGE NLS missing message: IncludePathDialogAccess_ZIPArchiveDialog_edit_description in: org.eclipse.php.internal.ui.PHPUIMessages
--------------050409050207020806000707--
|
|
|
Powered by
FUDForum. Page generated in 0.03582 seconds