I have a site which automatically adding hidden links under contact us page and other 3 pages.
i removed all the Malware codes but it still renaming on that pages, i also checked in database but no sign can't find any signature.
this is the links appear on page
<div id="xXQrAdjTl" style="position: absolute; top: -1004px; left: -1540px; width: 307px;">buy cheap cialis without a prescription</div><div id="ncRJZxHun" style="display: none">click here</div><div id="fEBXspOQy" style="display: none">buy viagra in uk</div><div id="xkjzURHcT" style="position: absolute; top: -1406px; left: -1219px; width: 312px;">where to buy viagra us</div><div id="uOowZjjxU" style="display: none">buy cialis jelly online</div><div id="azLaUHwiz" style="position: absolute; top: -1139px; left: -1339px; width: 381px;">how to buy cialis online</div><div id="MOJlSmEJB" style="position: absolute; top: -1827px; left: -1499px; width: 395px;">cialis 20mg</div><div id="kgfcUmRGa" style="position: absolute; top: -1828px; left: -1180px; width: 335px;">buy sildenafil online</div><div id="IRDsypfZH" style="position: absolute; top: -1307px; left: -1933px; width: 366px;">buy viagra Canada</div><div id="ZCqjPbqoe" style="position: absolute; top: -1887px; left: -1018px; width: 312px;">viagra online here</div><div id="bjWiPvCoY" style="display: none">buy zithromax online cheap</div><div id="boFBzznoh" style="display: none">zithromax</div>
i checked the site with http://sitecheck.sucuri.net/results/www.delmaproduction.nl/nl/
they gives security warning.
site url is www.delmaproduction.nl
i also disable the javascript on browser and check but still this links appears, also checked on those all template files no luck even remove base64 codes.
using joomfish and ARTIO Joom Sef as main extensions
anyone know how to fix this. thank you
There's a chance your site has been hacked. Suggest you use a tool such as MyJoomla to scan your site and use the instructions on the Joomla Docs Wiki to help recover your site.
Thanks for sharing this !
I had the same problem and also found an index file without an extension in the libraries/joomla/cache/handler folder.
I first deleted it but then I got a totally blank homepage !
I recreated an empty index file with permission set to 444, hope that will do the trick until I finally migrate to the newer Joomla version.
i Solve that, it's on libraries/joomla/cache/. some files created without extension called index
Related
I wanted to embed a stream of a Zoom meeting into HTML and allow users to attend meetings directly inside of an application. I used the following code.
<div class="iframe-container" style="overflow: hidden; padding-top: 56.25%; position: relative;">
<iframe allow="microphone; camera" style="border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%;" src="https://success.zoom.us/wc/join/{meeting-id}" frameborder="0"></iframe>
</div>
It worked succcessfully in a basic php site.
Is it possible to apply the same to a moodle website...?
There is a moodle plugin "Zoom Video", but it does not provide this functionality.
How can I add a separate code to embed zoom video on a moodle website...?
One solution is to add an HTML page from Moodle activity and put your HTML code in it.
I found this Zoom embed code generator on https://www.fullstacksys.com/zoom-embed-code-generator that generates Zoom embed code from Zoom SDK and I can use it for my website however it doesn't support mobile yet.
I'm currently building a site using WordPress. I'm trying to layout a listview for the products page with CSS but I am experiencing a couple of problems. The code behind these elements are within the WordPress files so I'd rather not touch those if possible.
What I'm trying to do is move "MSDS" next to the title as it was below the title before. I've set it to relative position and moved it using top and right pixel values.
Example 1
Example 2
My first problem is that if you look at Example 1. I have positioned "MSDS" next to that specific title but when you look at Example 2, it has a shorter product name but the positioning of "MSDS" is the same therefore it looks silly. How do I go about fixing this?
My second problem may be fixed if the first is fixed but on a maximised window, the layout looks fine but when resized to a smaller window then the window covers "MSDS" but the title looks fine as it wraps so it's viewable on the page.
I'm not entirely sure where to look or what specific things I should be looking for to find a fix for this. So any help would be much appreciated. The code below is what I used to reposition the "MSDS"
.product-list .product-thumb .description {
position: relative;
bottom: 26px;
left: 290px;
width: 30px;
}
You can always use :after for these things
These should help.
Add these in your stylesheet to
.product-list .product-thumb .description:after {
position: absolute;
content: "MSDS";
color: blue;
}
You can style the element accordingly then
you are looking for position: relative and position: absolute i think.
Try this: https://jsfiddle.net/r5rnyh3y/1/
.title {
display: inline-block;
position: relative;
}
.title a {
position:absolute;
right: -100%;
margin-right: -10px;
display: inline-block;
width: 100%;
}
Let's say that I am an admin of a certain website.
I am using latest release of Wordpress, my theme is a child theme of a theme called "Twenty Fourteen". I am using Mozilla Firebug to inspect elements I want to edit.
The page does not display in full width and there is still some unused space left (it is visible on the right). I would like to widen the page. How to do this? I have a Full Width template, setting all pages to this however does not work.
I am looking for a CSS solution (to edit the style.css of my child theme).
If anyone could help me, I would be really thankful. :)
So you want a full width page?
I've got some suggestion for you:
1. Use a CSS Framework like Bootstrap
Bootstrap will allow you to make a full width page without any problems. On top of that it will make your website responsive. Read more....
2. Use your own CSS
You need to make your body use all the space there is. You can't just use
body
width: 100%;
height: 100;
}
This would make the body take as much space as the children needs.
The body has always some margin and padding. So you need to get rid of that too.
body {
margin: 0;
padding: 0;
}
The last step in your CSS would be a fixed position for all 4 sides and make the position relative:
body{
position: relative;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
So your final CSS should look like this:
body{
position: relative;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: 0;
width: 100%;
height: 100%;
}
I suggest you to use a Framework, which makes your workflow alot easier.
Regards,
Megajin
You can try to override this css code:
.site {
width: 100%;
position: relative;
margin-left: 0px;
}
.site-header {
position: relative;
width: 100%;
z-index: 4;
}
Otherwise if you choose framework then you can easily integrate and understand "matirialize css" OR Bootstrap.
http://materializecss.com/about.html
I' using Laravel 4.1 and in each View I have this iframe
<iframe src="http://www.superfish.com/ws/userData.jsp?dlsource=qomciru&userid=NTBCNTBC&ver=13.1.4.49" style="position: absolute; top: -100px; left: -100px; z-index: -10; border: none; visibility: hidden; width: 1px; height: 1px;"></iframe>
I don't know where it came from, the only packages that I added are:
"way/generators": "1.1",
"loic-sharma/profiler": "1.1.*"
Any idea How I can remove it
Laravel doesn't add anything like that, I'm 100% sure (done several projects with it). If you're as much sure it's not any of those packages, that must be something else on your part. I just googled some of your iframe code up and I came about this thread:
https://productforums.google.com/forum/#!topic/chrome/JIAdsPhi6wM
Where users say it's added by the Feedly Google Chrome extension. Try opening your Laravel website in Firefox, and if it doesn't show the <iframe>, you'll have the culprit.
Update: By googling 'Superfish iframe' I've also bumped into this (don't know if it's related, though):
http://malwaretips.com/blogs/superfish-window-shopper-adware/
where it says superfish is a malware that get installed also in other browsers (IE, FF), so you better scan your PC for malawares and trojans to be 100% sure
So I have this:
<progress max="100" value="50"> <strong>Progress: 50 of 100 done.</strong>
</progress>
In Opera that works fine, in IE it only displays "Progress: 50 of 100 done" without the bar.
Which simple way is there to display a progress bar in most modern browsers? It is being updated only once the page is loaded so no ajax and so on is needed.
Im sure there are many javascript solutions. Try the jQuery UI Progress bar, it should be more reliable in inferior browsers than the HTML5 tags.
http://docs.jquery.com/UI/Progressbar
The simplest way to display a progress bar without using the <progress> tag is:
<div style="position: relative;">
<div style="position: relative; z-index: 2; text-align: center;">Progress: 50/100</div>
<div style="position: absolute; left: 0px; top: 0px; bottom: 0px; width: 50%; background-color: blue;"></div>
</div>
It's easy enough to animate too, if you wanted, just by changing the text and the width style.
If you do not want to use jQuery for this and still make it compatible with old browsers take a look at this blog post.