we find out a bug in IE7 or above recently.
If you use php session, you can run in firefox, google chrome but cannot never success in IE7 or above.
There are many topics discussing the same issue, for example adding p3p, change session.use_trans_sid, change timezone....however, there is one security issue in IE7 or above which let the above solution no longer working.
If the domain/sub-domain name contains an "underscore", your session cookie will never be created....for example sub_domain.domain.com
the security issue from Microsoft (DNS section):
http://support.microsoft.com/kb/909264
if you want to capitalize each first letter through MySQL, you can write a function, and write SQL directly to update the column, here is the sample code:
DELIMITER $$
CREATE FUNCTION CAP_FIRST_CHAR (input VARCHAR(255))
RETURNS VARCHAR(255)
BEGIN
DECLARE length INT;
DECLARE i INT;
SET length = CHAR_LENGTH(input);
SET input = LOWER(input);
SET i = 0;
WHILE (i < length) DO
IF (MID(input,i,1) = ' ' OR i = 0) THEN
IF (i < length) THEN
SET input = CONCAT(LEFT(input,i),UPPER(MID(input,i + 1,1)),RIGHT(input,length - i - 1));
END IF;
END IF;
SET i = i + 1;
END WHILE;
RETURN input;
END$$
DELIMITER ;
update table set table_col=CAP_FIRST_CHAR(table_col);
cannot create folders / save files under the mac desktop
2011-01-23 11:01:23
jqteam
why you cannot create new folders / edit file name / save files under your mac desktop?
The root cause of it is because your desktop is locked.
if you can create new folders / edit file name / save files in other folder, then you can do it in this way to solve the issue:
1. open the hard disk and right click the folder "Users"
2. select File -> Get Info, scroll down to "Ownership & permissions"
3. change Owner Access to "Read & Write", change Group Access to "Read only" if it is not
4. navigate into "Users" folder, right click "Desktop" folder.
5. change Owner Access to "Read & Write" if it is not
what browser is the most popular amount users?
most properly is Internet Explorer because Internet Explorer is the default browser of windows.
At least about 60% of users leak of technical skill and they are not able to install other browsers like firefox/chrome themselves.
Most of the developers hate Internet Explorer, are you the one?
Different version of Internet Explorer ARE different and hence we need to write our script, especially javascript and css very carefully.
Otherwise, one version of IE work, the other version won't work.
Other browser like firefox, google chrome are better, even they change the version, it would not effect much.
However, users or even customers would not care about how difficult to handle such browser issue, and that's why developers have to take care all buggy stuffs ourseleves.
Internet Explorer does not handle well on javascript, so we need to take serious care on the development, otherwise the browser will prompt
"a script on this page is causing Internet explorer to run slowly [1]" or "Timeout while Internet Explorer busy [2]".
Although these are solutions to solve the popup issue, however, the running speed isn't solved.
When you click the file you want to download, ie will prompt:
"Internet Explorer was unable to open this site.The requested site is either unavailable or cannot be found.Please try again later"
Here is the link talk about this:
http://support.microsoft.com/kb/323308
However, we just need to do some modifications on PHP header and it can actually work.
The cheapest and reliable web hosting service provider!
2010-04-13 11:29:01
jqteam
Hosting provided from US is the cheapest.
We have tried around 10 hosting service providers before and we can give you some advices.
1. Be careful hosting service provider always change teams & conditions
- some providers do not concern about customers, they always change the terms and affect your business.
If your site involves huge content, one day hosting provider suddenly added a new terms "if you are doing blur blur blur, you may need extra charge".
Do you afraid of it!?
2. Be aware the "discount promotion" from hosting service provider
- some providers always say 1-week last, 1-day last discount offer, however, the discount run through all-year.
Sometime you do not make too much consideration and you make purchase....and you finally find that it is not what you want.
3. Read the Terms and Conditions before you buy
- For those unlimited hosting provider, you have to read is it really "unlimited" during initial allocation to your plan.
If no, it is not really "unlimited", you need to check your resources everytime and submit ticket to enlarge your resource, do you feel trouble?
And make sure you understand the terms and conditions before you buy.
Here, we suggest this hosting that we are current providing to our clients and we will actually move to this hosting after our contract end.
We have used the plan for several months and the performance is quite good.
First, if you want to try, try to purchase the "bronze plan" first. (Make sure you read the terms before you buy)
Bronze plan is affordable and it is a good try. For 12 months contract, you will have 12 months plan + extra 1 month free, totally 13 months usage.
But, please remember, no multimedia files are allowed in bronze and silver plan.
If you want to include multimedia files, you should purchase "gold plan".
If you want to have your own private DNS (or let said your own nameserver), you can join the silver plan or gold plan.
This is the most valuable and best hosting we have tried among 10. If you think your current hosting is not too good, you can try this one!
Hello,
we tried JQPOPUP on old pc (Intel Celeron 1ghz) and we notice it's very slow when we try to close it.
It takes about 12 seconds to do it.
Is this a normal process time or maybe we can do something to avoid this problem?
Is there a simple way of setting the overall dimensions of the RTE plugin upon initialization, or does this have to be done by trial and error fiddling with individual CSS settings?
Hi,
I translated the English Language Pack into Dutch (Belgium). It can also be used for Dutch(Netherlands).
You can download the translationfile from my website: http://www.cloetensbrecht.be/nlbe.zip
Instead of 'Select Format' dropdown, I need four 'buttons' (or text links) to set Normal, H1, H2, and H3. Is this possible?
I am a coder, so I can make changes to the source, but it is not easy without a hint as where to look. For instance:
- which function sets headings?
- how do I bind it to click event of H1 link, and what should I pass to it so it knows the block should be set to heading one?
I like your script. I'll put a link on my http://prtech.eu website ! How can I send you the translation for Romanian language, on which email address ?
The archive can be found at address: http://prtech.eu/tools/roro.zip
I don't want my users to change the font, so I have removed the font drop-down list. But I would like the default font to be Arial. What is the best way to set that up?
I want to make a admin panel for my web page. I want to update my pages via JQRTE so i need to post the content which i write with JQRTE editor to another page. How can it be possible?
Thank you
Maybe I'm just stupid, but i try to use the jQRTE in a form. I set up the textarea like in the demo, but i surround it with form tags and a submit button. When i try to get the data ($_GET['content']) it appears to be empty... What am I doing wrong? :P