Getting Issues in IE - internet-explorer-8

Everything is working fine but as i moved my website in IE, the content is not displaying-- I am using IE 8.0. URL is
http://skjeeelectricals.com/index.php?option=com_content&view=article&id=52&Itemid=59
Kindly help me out from this kind of issue.
Thanks
JS

Just make your code valid (fix validation errors) and you will be fine.

Related

Ajax code runs correctly on firefox but not on chrome

link to project files: http://full-stack.fr/uploads/6/
Any suggetions ?
thanks in advance
Try disabling all chrome extensions and try again. Since they might be adding some extra divs to the DOM, thereby interfering with the
document.getElementsByTagName("div")[0] statement.

Domino 9.01 Fix 3 CKEditor error - No error on 9.01 Fix 1

Hope someone can help me, I've been stuck for a few days now.
After updating my Domino server to 9.01 Fix 3 I keep getting an error on the javascript console:
TypeError: this.editor.getData is not a function
This is the image of the error:
Console Error Message
And all buttons on my page stop working.
If I comment the Richtext code on the page, everything starts working again, this is the code:
<xp:inputRichText id="ds_decisao" styleClass="data" disableClientSideValidation="true" value="#{dts_proposta.ds_texto}" required="false" disableValidators="true" title="titulo" immediate="true"></xp:inputRichText>
This server is for test purposes, so we have the same code in another one that the version is 9.01 Fix 1, and the error does not happen there. The page code is exactly the same, just the server version is different.
I don't know where in the code the problem is, inside CKEditor or Domino, because both of them get updates going from Fix 1 to Fix 3.
I have tried downgrading the version of CKEditor to the same one that is on the 9.01 Fix 1 server, but the error persists. So maybe that points to something on the Domino code, not the CKEditor, but I don't know.
I have to use Fix 3 for security reasons, and I do need CKEditor.
Has anyone encounter this problem?
Any help is appreciated.
Thanks!
I have recently run in to exactly this issue and exact error message with CKEditor in XPages 9.0.1 FP3
I found that when there is an SSJS onClientLoad event on the page it causes an AJAX POST event to the server and this is stopping the CKEditor from loading successfully. Removing the SSJS onClientLoad event allowed the page to load as expected.

Ajax pagination not working with wp-property plugin

I'm using the wp-property plugin with Genesis Framework. The plugin has an ajax pagination in the properties page but is not working.
While testing I realized that it works fine with Twenty Fourteen theme, I posted it on the plugin forum suport and they told me that I'm getting this error:
'You don't have permission to access /cms/wp-admin/admin-ajax.php on this server.'
But I don't know how they are seeing it(because I can't see it with firebug) or why it's happening.
I tried the fixes of this post:
https://wordpress.org/support/topic/dont-have-permission-admin-ajaxphp-add-new-category?replies=11
but is still not working.
The link to the website: link
Thanks!
I figured out!
The plugin has a property overview template that can be customized by copying it into the theme directory and editing it, and it seems that it doesn't accept many changes because the problem was there.
Deleting the customized template solved the issue.

My Wordpress is completely broken in Safari

In Safari 5.1.2 on OSX
Tech.li is completely broken.
Some people mentioned an extra div tag being the cause, but that still didn't fix the issue.
Any help would be greatly appreciated!
Pretty basic: fix your xhtml errors [Invalid] Markup Validation of tech.li - W3C Markup Validator (scroll down in the validation report to see line numbers and source code). And use Firebug with Firefox, or in Chrome or Safari or IE8, use the developer tools to find and fix the javascript errors.

Paypal-Sandbox buying with Selenium RC

I'm trying to buy something at Paypal-Sandbox with Selenium RC (Java), but it doesn't work.
I tried it with Selenium IDE (Firefox AddOn) and it did work. I changed the viewing and copied the JUnit 4 Code and it still doesn't work.
The problem is the part with the radio-button "payment_type_paypal". Somehow it doesnt work in RC (the radio-button is not checked). Do someone have similiar experiences and/or resolved the issue?
After loging in to developer.paypal.com and entering the homepage...
//linking homepage
selenium.click("legalTerms");
selenium.click("pay");
selenium.waitForPageToLoad("30000");
//leaving homepage and switching to paypal
selenium.click("payment_type_paypal"); // <===== point of error
selenium.type("login_email",username);
selenium.type("login_password",pw);
Thx :)
its me againg, Krzys. I know now the Problem. Its an issue with focussing the correct frame. I couldn't get it work with Selenium RC.
You can easily fix the issue in Selenium WebDriver with the command, before my "point of error":
driver.switchTo().defaultContent();
its me again. If you encounter problems with the Sandbox System of Paypal, you can overcome the "submit"-button issues using xpath.
driver.findElement(By.xpath("//div[#id='nav-menu']/form/ul/li/ul/li[6]/input")
Greetz
Krzys

Resources