Speedup webpage [closed] - html

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I test speed of my site loading and the result give me the answer for my site's low speed loading is .......
Resources with a "?" in the URL are not cached by some proxy caching servers. Remove the query string and encode the parameters into the URL for the following resources:
http://mydomain1.com/css/layout.css?v2.2
here how can i Remove the "?" from the above link and encode the parameter into the url.??

That message means you should do it like:
http://mydomain1.com/css/layout.css/v2.2
Using a / instead of a ?. How you achieve to parse this on server side depends on the technology you are using.

Related

HTML Hide input/post name [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Im looking to hide a post request name from the user, So they cannot post to a URL.
For example, Im looking for something that will avoid users checking the post request name and sending something to bypass the restrictions to insert into a database.
If the POST request comes from the user's browser, then they can inspect it. There is no way to avoid that.
Your only option is to make the POST request from somewhere else (such as your server). There is a good chance that you won't be able to do that (due to dependencies on the request coming from the user or included data they supply).
You mention "restrictions". If those restrictions are currently enforced with client side code: Enforce them with server side code.

Yodlee: Is there any way to get data for a Item with using itemAccountId? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Currently I am integrating Yodlee and looking for getting data for a specific item by using itemAccountId. I am able to do site level refresh and getting data.
Thanks
Guys, May I know the reason for down vote so I can correct my mistakes on next time.
thanks
There is no API to give you data using itemAccountID(i.e. per account) but there is an API which takes itemID(per container) and returns the accounts associated.
Try getItemSummaryForItem1 API.

Not MD5 - What Chaacters are these ? MySQL [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
please check the below images... i have download a script from internet. and when i am registering in forunt end. it is saving login and passwords in some format (not md5)
actually the 1st and 3rd password is different.. but it looks like same.. i am confused.. please have a look on image below.
login and passwords in db
test test
vishnu vishnu
test2 test1
1) i.stack.imgur.com/Oo4mK.png
2) i.stack.imgur.com/8w4E4.png
SCRIPT I USED : http://sourceforge.net/projects/oes/
It uses MySQL's ENCODE and DECODE functions with a salt of oespass. This is, by the way, very bad.

HTML 5 - Need most current version of file when online [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am using HTML5 for an mobile application. I am using MVC.
The issue that i am facing is that the user when he is online is not able to retrieve the most current version of the file.
I have the following code
NETWORK:
*
which I thought would get the most current version of the code.
Specify the location your .appcache file under NETWORK: in addition to the wildcard.

Why cannot a breakpoint be set at this location? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Please have a look at this screenshot of IntelliJ IDEA. Why is the breakpoint not valid in the middle line?
I'm assuming that you are setting breakpoint(s) while debugging. In that case, I think the running binary isn't matching the code--browser cache, swf/swc being picked from wrong location to name a few reasons to get into such situation.
Can you try hitting the third breakpoint (2nd valid one) and check if temp is showing correct value as you'd expect (the reason I think it would work is that temp is a local variable and hence its value should be available when swf/swc is actually executing that piece of code.