Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Where to edit in DMN CMS Webshop 1.06

Status
Not open for further replies.
Joined
Nov 29, 2009
Messages
505
Reaction score
92
Hello Folks!

Where can i edit this broken link in the cms:

9ymd05 - Where to edit in DMN CMS Webshop 1.06 - RaGEZONE Forums


I have already looked in the footer templates and find link text or altext using notepadd++ find but can't find this culprit. Can someone guide?
 

Attachments

You must be registered for see attachments list
Joined
Oct 8, 2006
Messages
740
Reaction score
289
We can't help you if we don't have the WebShop to look at.
Anyway, if you searched every file and you couldn't find them, it's possible that is retrieved from the a table in the database and not just as a simple string.
 
Upvote 0
Joined
May 26, 2009
Messages
17,278
Reaction score
3,203
Hello Folks!

Where can i edit this broken link in the cms:

9ymd05 - Where to edit in DMN CMS Webshop 1.06 - RaGEZONE Forums


I have already looked in the footer templates and find link text or altext using notepadd++ find but can't find this culprit. Can someone guide?

dont look only on text files, look on all files, maybe it was saved on old cache file or something too, but it must be somewhere there, unless its encoded specifically
 

Attachments

You must be registered for see attachments list
Upvote 0
Joined
Nov 29, 2009
Messages
505
Reaction score
92
dont look only on text files, look on all files, maybe it was saved on old cache file or something too, but it must be somewhere there, unless its encoded specifically

Here is the file which i decode just to find that thing:


We can't help you if we don't have the WebShop to look at.
Anyway, if you searched every file and you couldn't find them, it's possible that is retrieved from the a table in the database and not just as a simple string.

Here is the original file to install:


I know your already expert at this but i use this dll to connect with mssql using php 5.6 in case you will use xampp to connect:
extension=php_dblib.dll


I tried looking at the tables can't find it.

If you can try installing and look?
 
Upvote 0

cMu

Elite Diviner
Joined
Jan 8, 2017
Messages
427
Reaction score
133
The HTML is visible at DMNCMS.
try to check the views files of webshop + view sidebar + header + footer.
worst case — you can fix (or remove) that broken image using JavaScript.
 
Upvote 0
Joined
Nov 29, 2009
Messages
505
Reaction score
92
The HTML is visible at DMNCMS.
try to check the views files of webshop + view sidebar + header + footer.
worst case — you can fix (or remove) that broken image using JavaScript.

really tried looking into these views but can't find it...

can you point me to guides on how to do that javascript thing?
 
Upvote 0

cMu

Elite Diviner
Joined
Jan 8, 2017
Messages
427
Reaction score
133
really tried looking into these views but can't find it...

can you point me to guides on how to do that javascript thing?

jQuery (used in DMN), put this in footer.php:
<script> jQuery(document).ready(function ($) { $(".image").remove(); });</script>

change .image to your img identifier (can be an ID, class, alt, data attr, find your way using F12.)

edit:
it is possible that this image is also arriving from a JavaScript code or some type of iframe.
it is better to give us a direct link to your website (plus account to access into webshop image) so we can do more digging.
 
Upvote 0
Joined
Nov 29, 2009
Messages
505
Reaction score
92
jQuery (used in DMN), put this in footer.php:


change .image to your img identifier (can be an ID, class, alt, data attr, find your way using F12.)

edit:
it is possible that this image is also arriving from a JavaScript code or some type of iframe.
it is better to give us a direct link to your website (plus account to access into webshop image) so we can do more digging.

this is the website:

you can create account here:

i uploaded the files i used above.
 
Last edited:
Upvote 0

cMu

Elite Diviner
Joined
Jan 8, 2017
Messages
427
Reaction score
133
this is the website:

you can create account here:

i uploaded the files i used above.

<script> jQuery(document).ready(function ($) {
$('img[alt="MMOSERVER Mu Online, Maplestory, Aion Private Server Top"]').remove();
});</script>

or via CSS:
img[alt="MMOSERVER Mu Online, Maplestory, Aion Private Server Top"] {
display: none !important;
}

P.S - it's better to use DMN 1.2.1 (open source) or getting webshop plugin for WebEngine. you may contact me for more information.
 
Upvote 0
Joined
Nov 29, 2009
Messages
505
Reaction score
92
<script> jQuery(document).ready(function ($) {
$('img[alt="MMOSERVER Mu Online, Maplestory, Aion Private Server Top"]').remove();
});</script>

or via CSS:
img[alt="MMOSERVER Mu Online, Maplestory, Aion Private Server Top"] {
display: none !important;
}

P.S - it's better to use DMN 1.2.1 (open source) or getting webshop plugin for WebEngine. you may contact me for more information.

Thanks! +rep the script worked!

For mods feel free to close the thread
 
Upvote 0
Status
Not open for further replies.
Back
Top