I'm having an issue downloading v4.4 from yetishare.com, it's as if the connection is throttled, drops to less than 10kbps within a few seconds and the download eventually fails a few min later. Same issue on multiple browsers.
If you're using Nginx ensure you've set the new API rewrite rules. They'll be in the Nginx rules txt file in the script root.sukhman21 said:Not sure what i am doing wrong here but i am unable to connect to API. Testing API in the admin panel doesn't work either.
I opened: http://site.com/api/v2/ but it says 404 page not found. (The requested URL /api/v2/api.php was not found on this server.)
When i test authorize in admin panel using the 2 keys: i get "Error 404" failed finding the URL.
Can't seem to find api.php file anywhere in the file hosting script archive. i do see the account.api.php, file.api.php, etc but just cant find api.php file.
You can't drag and drop to the folder listing in the main site, only the treeview.tomaszladniak35584 said:https://s24.postimg.org/nmit990t1/screenshot_2017_02_25_18_11_03.png
I tried move file r54d48 (2).avi to folder "test". Not working. With "test2" same. When i use "edit" function and choose category in that way everything worked fine. But drag & drop do nothing.
Also few my users reported me same issue.
It's not something I've heard of before, maybe it's an intermittent Cloudflare issue. If it still happens after a few hours, raise a ticket and I'll provide a direct download link.paypal1352 said:I'm having an issue downloading v4.4 from yetishare.com, it's as if the connection is throttled, drops to less than 10kbps within a few seconds and the download eventually fails a few min later. Same issue on multiple browsers.
Also not working.adam said:You can't drag and drop to the folder listing in the main site, only the treeview.tomaszladniak35584 said:https://s24.postimg.org/nmit990t1/screenshot_2017_02_25_18_11_03.png
I tried move file r54d48 (2).avi to folder "test". Not working. With "test2" same. When i use "edit" function and choose category in that way everything worked fine. But drag & drop do nothing.
Also few my users reported me same issue.
adam said:If you're using Nginx ensure you've set the new API rewrite rules. They'll be in the Nginx rules txt file in the script root.sukhman21 said:Not sure what i am doing wrong here but i am unable to connect to API. Testing API in the admin panel doesn't work either.
I opened: http://site.com/api/v2/ but it says 404 page not found. (The requested URL /api/v2/api.php was not found on this server.)
When i test authorize in admin panel using the 2 keys: i get "Error 404" failed finding the URL.
Can't seem to find api.php file anywhere in the file hosting script archive. i do see the account.api.php, file.api.php, etc but just cant find api.php file.
I can't replicate this on our dev. If you're using our demo site it wont work as it's locked down.tomaszladniak35584 said:Also not working.adam said:You can't drag and drop to the folder listing in the main site, only the treeview.tomaszladniak35584 said:https://s24.postimg.org/nmit990t1/screenshot_2017_02_25_18_11_03.png
I tried move file r54d48 (2).avi to folder "test". Not working. With "test2" same. When i use "edit" function and choose category in that way everything worked fine. But drag & drop do nothing.
Also few my users reported me same issue.
In the .htaccess file rename api.php to index.php. I've also updated our beta release code.sukhman21 said:I use apache and i have verified the API rewrite line is in the htaccess file. There is no api.php file in the 4.4 archive though !!
adam said:If you're using Nginx ensure you've set the new API rewrite rules. They'll be in the Nginx rules txt file in the script root.sukhman21 said:Not sure what i am doing wrong here but i am unable to connect to API. Testing API in the admin panel doesn't work either.
I opened: http://site.com/api/v2/ but it says 404 page not found. (The requested URL /api/v2/api.php was not found on this server.)
When i test authorize in admin panel using the 2 keys: i get "Error 404" failed finding the URL.
Can't seem to find api.php file anywhere in the file hosting script archive. i do see the account.api.php, file.api.php, etc but just cant find api.php file.
It will only support files up to your server limits. The file upload on the front-end can handle large files as it chunks the upload. The API does not. You'll need to check your server limits using the info here: (until the API supports chunked uploads)tomaszladniak35584 said:Api working now for me, but when im trying test it with small files upload is ok.
With bigger files (1Gb) i'm getting error:
Error 404
Error: Failed finding url: http://sitename/api/v2/file/upload
404 isn't a proper error. it should, as an api, output error code.
Any ideas why it not working with bigger files?
Ensure you've applied the latest sql patch. I was amended on Saturday to include:piandesigner said:Hi Adam,
When I try to activate Language Separate Language Images to Yes,
Site will corrupted...
Also
If upload over 300MB get blank result,
http://prntscr.com/ee3u2p
Thanks
adam said:In the .htaccess file rename api.php to index.php. I've also updated our beta release code.
It should point to the index.php in the /api/v2/ folder, not includes. Like this:sukhman21 said:Adam,
Here is the rule in HTACCESS file
# forward api requests
RewriteRule ^api/v2/(.*)$ core/includes/api/v2/api.php?_page_url=$1 [QSA,NC,L]
I changed it to
# forward api requests
RewriteRule ^api/v2/(.*)$ core/includes/api/v2/index.php?_page_url=$1 [QSA,NC,L]
and i still get error in the admin panel, it says
Error: Failed finding url: http://website.com/api/v2/authorize
If i try to open the API URL directly in the browser, i get 404 error. It is trying to open index.php file from /core/includes/api/v2/index.php but there is no index.php file there so i get 404 error.
Thanks for your time.
adam said:In the .htaccess file rename api.php to index.php. I've also updated our beta release code.
I'm testing it on my site.adam said:I can't replicate this on our dev. If you're using our demo site it wont work as it's locked down.
And when api will start support chunked uploads?adam said:It will only support files up to your server limits. The file upload on the front-end can handle large files as it chunks the upload. The API does not. You'll need to check your server limits using the info here: (until the API supports chunked uploads)tomaszladniak35584 said:Api working now for me, but when im trying test it with small files upload is ok.
With bigger files (1Gb) i'm getting error:
Error 404
Error: Failed finding url: http://sitename/api/v2/file/upload
404 isn't a proper error. it should, as an api, output error code.
Any ideas why it not working with bigger files?
https://support.mfscripts.com/public/kb_view/36/
Soon hopefully.tomaszladniak35584 said:And when api will start support chunked uploads?adam said:It will only support files up to your server limits. The file upload on the front-end can handle large files as it chunks the upload. The API does not. You'll need to check your server limits using the info here: (until the API supports chunked uploads)tomaszladniak35584 said:Api working now for me, but when im trying test it with small files upload is ok.
With bigger files (1Gb) i'm getting error:
Error 404
Error: Failed finding url: http://sitename/api/v2/file/upload
404 isn't a proper error. it should, as an api, output error code.
Any ideas why it not working with bigger files?
https://support.mfscripts.com/public/kb_view/36/