Questions tagged [public-folders]
71 questions
0
votes
0 answers
React App - Only some images in public folder show up in production, some don't
In my React ("react": "^18.2.0") App I display Images in a Material UI MUI v5 CardMedia Component like so:

smaica
- 723
- 2
- 11
- 26
0
votes
2 answers
Blocking public documents folder for write access?
In the last time I've seen a rising number of customer PCs (Windows 10/11), where my c# software was not able to write in a subfolder of C:\users\public\documents, although the user running it is able to manually write there. In a few cases I've…

Florian Straub
- 826
- 9
- 18
0
votes
0 answers
Get size and count of items older than xx in Public Folders (Not mail enabled)
We are migrating public folders from on-premise to 365 Shared Mailboxes. The limits are 100 GB (or it is archived) and 100k objects.
I have a Public Folder that is 150GB. It is full of old items.
I need to prove that less than 100GB is newer than…

Techknow
- 161
- 1
- 3
- 11
0
votes
0 answers
Nextjs - Access html files with url
I'm having a problem with Nextjs.
I had to add some html files in the public folder so user can access those pages by url.
The problem is that I can only access this pages with .html extension in the url.
Ex:
mysite/htmlpage.html =>…

Douglas Ferreira
- 1
- 1
0
votes
1 answer
Get Laravel public path in external js file
I have blade file named index-game.blade.php. And in one line of it, a line that reaches a js file under laravel public folder.
So far so good.
Also inside…

poison pawn
- 47
- 6
0
votes
1 answer
Exchange 2010 mail enabled public folder migration to Exchange 2013
I have to migrate a couple of hundred mail-enabled public folders from Exchange 2010 to Exchange 2013. Microsoft's documentation…

Fabian
- 53
- 11
0
votes
1 answer
i18n inserts JSON access strings (keys in the translation file) instead of values
As opposed to this thread here my app finds the translation files when working with i18n in React. My issue is that for English & Romanian I get the JSON key (the access string) instead of the translations.
What happens is: only the German language…

M.Ionut
- 187
- 1
- 3
- 15
0
votes
1 answer
Search through multiple public folders
One of our customers uses their public folders for sending price lists to various customers, they have one main folder with dozens of sub-folders, now everytime someone wants to be deleted from the list and noone knows in which folder he is we have…

Celay Derp
- 13
- 1
- 5
0
votes
1 answer
NGINX: How to redirect from img/file.jpg to public/img/file.jpg
I have an nginx configuration like this:
server{
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /var/www/all-my-projects;
location / {
try_files $uri $uri/ =404;
autoindex on;
autoindex_localtime on;
…

Pedro Muñoz Zubía
- 39
- 4
0
votes
2 answers
Cannot convert the "System.Collections.ArrayList" value of type "System.Collections.ArrayList"
Cannot process argument transformation on parameter 'Identity'. Cannot convert the "System.Collections.ArrayList" value of type "System.Collections.ArrayList" to type "Microsoft.Exchange.Configuration.Tasks.PublicFolderIdParameter". is the entire…

Techknow
- 161
- 1
- 3
- 11
0
votes
1 answer
Questions about create-react-app public folder reading different files
I'm a beginner on Reactjs ans Javascript.
I read that create-react-app can access the public folder like this to get an image:
img src={process.env.PUBLIC_URL + '/img/logo.png'} />;
But this also works but cant find documentation about it:
let…

Kid
- 1,869
- 3
- 19
- 48
0
votes
1 answer
Webpack react. Configure a folder with pictures
Please help configure file-loader so that in a project with such a structure
I could take the image from the public folder in a similar way:
In an attempt to do something, I wrote…

Родиков Максим
- 9
- 2
0
votes
0 answers
Adding image dynamically in public folder in reactjs
I am developing an face detection application,for that I need to collect the users image for reference to detect them later.i have successfully uploaded the image in MySQL databse.now I need upload the image in public folder in react to detect the…

Praveen Kumar
- 21
- 4
0
votes
0 answers
Image upload to Public folder in laravel 6
I am trying to upload an image to public folder but I am unable to do this. Following is the code of storing the image.
if($request->hasFile('picture'))
{
$file = $request->file('picture');
$size = $file->getSize();
$fileNameWithExt =…

Uzair Ahmad
- 16
0
votes
2 answers
EWS Exception: There are no public folder servers available
I am trying to get Public folders email from my outlook mailbox. Presently, I can get the mails from the folders in my root folder. I use the following code for the same:
Folder rootfolder = Folder.Bind(exchange,…

Kanu Priya
- 77
- 1
- 8