|
POST
|
Have you checked the ArcGIS Server Manager logs when you encounter this issue and see if it has any errors or useful information?
... View more
02-19-2026
10:13 AM
|
0
|
1
|
873
|
|
POST
|
I don't have any resolutions to this, but just wanted to comment that I can replicate this in the same Firefox and ArcGIS Enterprise version you have. The scroll bars are completely missing for me as well.
... View more
02-13-2026
02:58 PM
|
1
|
0
|
429
|
|
IDEA
|
Thank you for submitting this idea and linking my similar idea to it! I definitely agree that this idea is much needed. As I said in the idea I submitted, Esri states in their ArcGIS Enterprise Hardening Guide that "using any administrator account without MFA is a high-risk configuration", yet the WebGISDR tool requires an administrator account which is not compatible with MFA. So the WebGISDR is essentially designed to go against security best practices. On a side note, I attended a session at the UC last year where they stated they're essentially revamping the WebGISDR tool, so I'm really hoping that security best practices gets incorporated into it.
... View more
02-13-2026
06:39 AM
|
0
|
0
|
366
|
|
POST
|
So if you click a feature to open the pop-up, the pop-up doesn't open until after the layer finishes drawing? If so, then that sounds like normal behavior to me (at least it is in my experience with ExB). I think what it will come down to is improving the performance of your zoning layer. I'm assuming your ExB app and data is all hosted in AGOL? If that's the case, you can try configuring some of the settings on the hosted feature layer (such as the spatial index and optimize layer drawing). This blog post has a lot of good information. I don't think it would hurt to reproject the data to Web Mercator. The data essentially gets reprojected on the fly anyway when accessing it through the web map. So theoretically, it will take less processing power to display the data. But in practice, that usually happens pretty fast.
... View more
02-10-2026
10:01 AM
|
0
|
0
|
339
|
|
POST
|
I'm assuming that means that you just want to use the spatial analyst tools in ArcGIS Pro, and then publish the results on ArcGIS Enterprise. If that's the case, then you should be okay with ArcGIS Enterprise Standard. Of course, it's always good to speak with your Esri account representative where they will be able to confirm that, but based on the functionality matrix, you just need the Professional Plus user type with ArcGIS Enterprise Standard.
... View more
02-09-2026
06:41 AM
|
0
|
1
|
695
|
|
POST
|
Will you need to use 3D Analyst and/or Spatial Analyst tools in ArcGIS Enterprise? I think that will be the determining question. You're going to need the Professional Plus user type, no question about that. But you will only need ArcGIS Enterprise Advanced if you plan on using the spatial analyst tools in ArcGIS Enterprise as well. Here is a good functionality matrix provided by Esri that will help you determine what you need: https://www.esri.com/content/dam/esrisites/en-us/media/manuals/arcgis-enterprise-functionality-matrix-current.pdf
... View more
02-09-2026
06:20 AM
|
0
|
3
|
714
|
|
POST
|
It depends on your definition of read-only, but you could also just disable all editing on your feature layer without creating a view. I think creating a read-only view is the better option, but technically, you can just disable editing on the feature layer and that would make it read-only.
... View more
02-05-2026
07:52 AM
|
2
|
0
|
407
|
|
POST
|
Someone might be able to provide a better solution, but I have a couple different ideas with the knowledge I have, but none of it will display changes in the Excel file in real time. Use Python to make the updates. There are various implementations of this, but you can use Python to identify the changes in the Excel file, and then have it update the SQL table. Do the same thing as what I said above, except do it in FME. None of this will push the data up in real time, but you could schedule it every 15 minutes, hour, etc.
... View more
02-05-2026
06:51 AM
|
2
|
0
|
685
|
|
POST
|
I don't know an official answer, but historically, any new functionality introduced in AGOL is typically released in ArcGIS Enterprise in the Enterprise version following the release in AGOL. Technically, 12.0 was released right after that functionality was released in AGOL in October of last year. But, that might have been too soon for it to make it to ArcGIS Enterprise, so I would guess it will be released in 12.1 later this year.
... View more
02-05-2026
06:24 AM
|
1
|
0
|
408
|
|
POST
|
Esri did streamline some of this process last year. Here is a blog post that I think helps explain some of the changes you are seeing. Anyway, you have the S123 form itself along with the _form feature layer shared publicly (which is what the S123 form is connected to), so I think you should be good. The only other thing to check is to make sure your feature layer settings are configured correctly. Since it is shared publicly, what you can do is just open an incognito tab and try to access the data anonymously to verify you can't access any of the underlying data. Here is another blog post that might be helpful for you as well, although it's also a little dated.
... View more
02-05-2026
06:17 AM
|
1
|
0
|
517
|
|
POST
|
Esri removed all of the 11.2 documentation that you can select from in the toggles because it's already in mature support (at least, I'm assuming that's the reason). But yeah, it's definitely strange that we encountered that issue. I'm assuming it's not a common issue, otherwise there would have been a fix for it, or at least talked about here. But I was just posting here in case anyone had also encountered that issue. Or to hopefully help someone else who's actively experiencing the issue.
... View more
02-02-2026
07:57 AM
|
0
|
1
|
649
|
|
POST
|
I just upgraded one of our ArcGIS Enterprise environments from 11.2 to 11.5 and noticed that the upgrade "breaks" the pg_hba.conf file in the ArcGIS Data Store. When using the allow connection data store command line tool to allow connections to the ArcGIS Data Store, it adds them to the pg_hba.conf file like this: host db username ip/hostname scram-sha-256 However, after upgrading to 11.5, the upgrade changed all the entries from "host" to "hostssl" which breaks any and all connections to it (including the ArcGIS Server). For example, it changed it to this: hostssl db username ip/hostname scram-sha-256 After upgrading, all of my hosted services didn't work and saw a "bad user login" message in the ArcGIS Server logs. Luckily, I've worked with the ArcGIS Data Store enough to know what this message means. Running the allow connection data store command "fixes" this by adding a new entry with only the "host" option. What I am looking for is a little bit of clarity on why this happened, because it appears that the ArcGIS Data Store isn't even compatible with any "hostssl" connections in the first place for two reasons: The previously existing ArcGIS Server entry in the pg_hba.conf file didn't work by default after the upgrade, nor did the Esri upgrade mitigate this by adding a new "host" only entry. Even after upgrading, the allow connection data store command line adds entries only as "host" and not "hostssl", despite the upgrade changing everything to "hostssl". I'm unable to find anywhere in Esri's upgrade documentation stating that re-adding entries to the pg_hba.conf file is a required step, so I'm just wondering why Esri changes all of the entries in the pg_hba.conf file when it's not even compatible in the first place? If anything, hopefully this will help others who encounter this issue considering this is not a documented step in the upgrade process.
... View more
02-02-2026
07:11 AM
|
0
|
5
|
680
|
|
POST
|
I've been following this thread closely since I was eventually going to be upgrading to 11.5. I upgraded one of our ArcGIS Enterprise environments today and ran into one issue with the ArcGIS Data Store. Upon upgrading the ArcGIS Data Store, I was not able to validate it in ArcGIS Server Manager and none of my hosted services worked. The server manager logs stated "bad user login" or something like that in reference to the data store. Luckily, I have enough experience with the ArcGIS Data Store and making direct connections to it to know that I need to use the allow connection command to allow our ArcGIS Server machine to access the ArcGIS Data Store (which under the hood, just adds an entry in the pg_hba.conf file). After running that command, everything worked fine. Unfortunately, this is not documented in Esri's data store upgrade documentation. I also don't know why we'd have to allow our ArcGIS Server to access the data store when it worked perfectly fine before the upgrade. We didn't make any architectural changes (hostname changes, IP changes, etc.) during this upgrade. Anyway, just thought I'd post this here to hopefully help anyone else that might encounter this issue.
... View more
01-31-2026
03:30 PM
|
0
|
0
|
220
|
|
POST
|
Per the bug page, this was fixed in ArcGIS Pro 3.6. Just because a version is still "supported" doesn't mean that every bug will be fixed in that version. In my experience, only the "major" bugs will be fixed in previous versions. Otherwise, anything else will be fixed in new versions going forward. https://support.esri.com/en-us/bug/the-arcgis-pro-taskbar-icon-is-no-longer-readable-after-bug-000177777
... View more
01-26-2026
06:04 AM
|
0
|
0
|
144
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Wednesday | |
| 1 | Wednesday | |
| 1 | Monday | |
| 1 | Monday | |
| 1 | Monday |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|