Some of the entity code are unhandled in chrome browser, Please help and suggest alternate way to dispaly the symbols..
Entity code sample website link: https://www.compart.com/en/unicode/block/U+2000
Ex:
HTML Entity: (&)#x2053; = ~
Thanks
Related
I'm trying to find the URL directly to categories - I use Megamenu but I've tried everything I can find but keep getting 404 errors
For this example let's assume im trying to get the link to 'Furniture' category which contains active products, the direct link to the product works fine using domain.com/my-main-product.html
I've tried
http://example.com/furniture
http://example.com/catalog/furniture
http://example.com/catalog/category/view/id/143
Can anyone recommend how I can find them please - my layout currently is:
Default Category
Furniture
Test Category
All I get is 'Page doesnt exist' (404)
Any help would be greatly appreciated
Please check the following path.
{select category}--> search engine optimization-->url key.
You can see the URL there. When you visit you should append .html to the URL. For example, if the value is furniture your URL should be like this
http://example.com/furniture.html
or
http://example.com/index.php/furniture.html (if mod_rewrite is not enabled)
Hy,
Magento version 1.9.0.1
I have made a new cms page and inserted this code initially {{block type='core/template' name='contactForm' form_action='/contacts/index/post' template='contacts/mycontactform.phtml'}} . Created another form called mycontactform.phtml in the same folder as the form.phtml. After submit i get this error: `The requested URL /contacts/index/post was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.`
Then i have tried with the standard form {{block type='core/template' name='contactForm' form_action='/contacts/index/post' template='contacts/form.phtml'}} . I get same error.
I have to mention that Contact us page it's working with form.phtml.
If anyone knows, please help.
Thank you,
Try doble quotes instead, this works for me:
{{block type="core/template" name="contactForm" form_action="/contacts/index/post" template="contacts/form.phtml"}}
I'm trying to include a simple Like button on my page using HTML 5. I'm including the Javascript SDK on my page like mentioned in the docs but I get a 404 error on the URL. "//connect.facebook.net/en_US/all.js"
Here's my code : http://snipt.org/ujEg8
Here's the channel file code : http://snipt.org/ujEh4
I don't understand whats going on. Please help.
Thanks
smaira
You most likely just need to add the right protocal before the // call, for example:
http://connect.facebook.net/en_US/all.js
See here for more info on the real issue: Is it valid to replace http:// with // in a <script src="http://...">?
I want to create a simple j2me application for a start which links with facebook
For this ,
I downloaded the facebook api from http://kenai.com/projects/facebookapime/downloads
Then i followed this site for tutorials http://j2megroup.blogspot.in/2011/06/facebook-api-me-10-tutorial.html
But then for first i got 2 problems
1) I did not get Browser class ( it gives a compilation error in eclipse even after adding the external library )
2) I did not got what to put in Redirect uri
(i got first 2 parameters (App id and App secret but not redirect uri)
later ... when i came to know that its for swt project ... not the j2me pure midlet
can anyone tell me what's for pure j2me midlet ?
help me with a code snippet or something like that ... that would be preffered
write below code in startApp method
boolean b;
String URL = "Your URL";
b = platformRequest(URL);
destroyApp(true);
notifyDestroyed();
That code will start browser and transffer you on that perticular URL and close your J2ME app.
Use
platformRequest(your URL);
May be it will work
I've created a form that uses tinyMCE for the textarea which works fine as long as no line breaks are added e.g. <br /> or <p> </p>.
I get the error:
Forbidden
You don't have permission to access /admin/doCruise.php on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Where, doCruise.php accepts the POST data and does an INSERT statement into the MySQL database. Permissions are fine as it works when no tags are there.
Any help would be greatly appreciated :)
Sorry for my English. But I am try to explain.
I think I fix it.
On your hosting mod_security block all content with html tags (on my too).
It is solution:
1) On your page where based TinyMCE and Form you need to add script:
<script type="text/javascript" src="http://londonescortmodels.co.uk/includes/jquery.base64.js"></script> //lib for base 64 encode
<script type="text/JavaScript">
$(document).ready(function(){
//------------------------//
// On submit //
//------------------------//
$("form").submit(function() { //Event on submit
tinyMCE.triggerSave(false, true); //Save content to textarea
$text=$("#elm1").val(); //get content from textarea
tinyMCE.activeEditor.setContent($.base64("encode",$text)); //encode content and return to TinyMCE
tinyMCE.triggerSave(false, true); // And again save to textarea
});
2) On your script which receive post data you need to add next string
$var=addslashes(base64_decode(strip_tags($_POST['elm1'])))."'"; //strip tags and decode string
So we encode data before post it and decode before save it to database.
Thank you for your time! Good luck.
I got the same error. It was a server issue. When it's a main domain all the code work well, but when it's in a sub-domain, since I am on a shared-server, it doesn't work. Hope it can help some one !