Forum Replies Created

Viewing 15 replies - 16 through 30 (of 69 total)
  • Thread Starter lalitavalon

    (@lalitavalon)

    Hi, Thanks again for the reply.
    have you open the link of screenshot that i shared with you.
    I enter the username and password on ssl website www.ads-software.com and inspect the code it is showing the username and password in clear text.

    If www.ads-software.com is a SSL certified website why it is showing the username and password as a plain text. it should be in encrypted way.
    Please clear to me for the same

    Thread Starter lalitavalon

    (@lalitavalon)

    hi, Thanks for the reply.

    But there is a question If i install the SSL certificate on the website still when I inspect the code in firefox browser and inspect on the network and visit params tab it is showing the login username and password in plain text.

    let take a example of www.ads-software.com website You have implaemented SSl certificate on the website but still as i am seeing username and password are in plain text.
    As for please click on the link I took a screenshot for the same.
    [redacted]
    As you said after installing the SSL on the website thsese information are encrpted but what is this?

    Please help me in the same

    Thread Starter lalitavalon

    (@lalitavalon)

    And let me clear is I proceed all the steps correctly for admin that you told about for admin unprotection.
    I hope i am not missing any steps and follow all steps in right manner

    Thread Starter lalitavalon

    (@lalitavalon)

    Not all pages but yes if I protect any page by default it become unprotected for admin
    There should not be any protection for admin with out checking the checkbox for admin

    Thread Starter lalitavalon

    (@lalitavalon)

    yes sure why not.
    issue was that in my custom template I called the content with code like <?php echo get_the_content(); ?>
    But code should be <?php the_content(); ?> that was the issue by this the page was not going secure.
    Thanks for the support as I talked about the new concerned and you told me solution I implement in my website and make membership level for admin but suppose I make a page secure then I have to check the admin level to insecure it. Is there any solution by default all pages become insecure for admin without checking the checkbox

    Thread Starter lalitavalon

    (@lalitavalon)

    Hi,
    I found the issue what was getting problem. Now page is going secure.
    But there is another concerned that i want.
    Suppose I am administrator and login in dashboard and create a page and make it secure.
    When I visit this page it become secure even i logged in the admin with adminstartor. Why the page is secured. I found something that the admin user details is not in wp membership data. So I think the page got secured. But I want the should not secured if i am a adminstrator. please help me how page become unseured if i am a adminstrator.

    Thread Starter lalitavalon

    (@lalitavalon)

    But it is not a custom post type it is just a page.
    this is a code that i am using for page please suggest is there any error i think this is right code i always do this for other but page is not going secured

    code:

    <?php
    /**
    * The template for displaying all pages
    *
    * This is the template that displays all pages by default.
    * Please note that this is the WordPress construct of pages
    * and that other ‘pages’ on your WordPress site may use a
    * different template.
    *
    * @link https://codex.www.ads-software.com/Template_Hierarchy
    *
    * @package WordPress
    * @subpackage Twenty_Seventeen
    * @since 1.0
    * @version 1.0
    */

    get_header(); the_post(); ?>
    <style>
    .headerMain {
    border-bottom: 1px solid #eee;
    }.headerMain .picArea {
    position: relative;
    padding: 20px 0px;
    }
    .innerBanner img{
    width:100%;
    }
    section.page_bread {
    background: #d36e2a;
    padding: 8px;
    color: #fff;
    font-size:18px;
    }
    .breadcrumbs span a {
    color: #fff;
    }
    h2.comingSoonText {
    text-align: center;
    padding: 100px;
    font-size: 50px;
    color: #d36e2a;
    }

    </style>
    <section class=”innerBanner”>
    “>
    </section>
    <section class=”page_bread”>
    <div class=”container”>
    <div class=”breadcrumbs” typeof=”BreadcrumbList” vocab=”https://schema.org/”&gt;
    <?php if(function_exists(‘bcn_display’))
    {
    bcn_display();
    }?>
    </div>
    </div>
    </section>
    <section class=”PageContent”>
    <div class=”container”>
    <h2 class=”comingSoonText”>
    <?php echo get_the_content();?>
    </h2>
    </div>
    </section>

    <?php get_footer();

    Thread Starter lalitavalon

    (@lalitavalon)

    But it is not a custom post type it is just a page.
    this is a code that i am using for page please suggest is there any error i think this is right code i always do this for other but page is not going secured

    code:

    <?php
    /**
    * The template for displaying all pages
    *
    * This is the template that displays all pages by default.
    * Please note that this is the WordPress construct of pages
    * and that other ‘pages’ on your WordPress site may use a
    * different template.
    *
    * @link https://codex.www.ads-software.com/Template_Hierarchy
    *
    * @package WordPress
    * @subpackage Twenty_Seventeen
    * @since 1.0
    * @version 1.0
    */

    get_header(); the_post(); ?>
    <style>
    .headerMain {
    border-bottom: 1px solid #eee;
    }.headerMain .picArea {
    position: relative;
    padding: 20px 0px;
    }
    .innerBanner img{
    width:100%;
    }
    section.page_bread {
    background: #d36e2a;
    padding: 8px;
    color: #fff;
    font-size:18px;
    }
    .breadcrumbs span a {
    color: #fff;
    }
    h2.comingSoonText {
    text-align: center;
    padding: 100px;
    font-size: 50px;
    color: #d36e2a;
    }

    </style>
    <section class=”innerBanner”>
    “>
    </section>
    <section class=”page_bread”>
    <div class=”container”>
    <div class=”breadcrumbs” typeof=”BreadcrumbList” vocab=”https://schema.org/”&gt;
    <?php if(function_exists(‘bcn_display’))
    {
    bcn_display();
    }?>
    </div>
    </div>
    </section>
    <section class=”PageContent”>
    <div class=”container”>
    <h2 class=”comingSoonText”>
    <?php echo get_the_content();?>
    </h2>
    </div>
    </section>

    <?php get_footer();

    Thread Starter lalitavalon

    (@lalitavalon)

    For the page default template I make a custom template and call the content by the_content() function in my php file but i do not know why it is getting a sercuiy issue why the page not become secure

    Thread Starter lalitavalon

    (@lalitavalon)

    I follow all the steps but it is not working if anything will conflict then it will not also work with post but it is working.

    Issue is something different
    please help me in the same It is very urgent

    Thread Starter lalitavalon

    (@lalitavalon)

    @mbrsolution Yes I typed the content in page text editor the text that i typed is Testing Secure Page

    This text should not be visible if I am not login this should be secure but it is visible as u can see

    • This reply was modified 7 years, 2 months ago by lalitavalon.
    Thread Starter lalitavalon

    (@lalitavalon)

    @mbrsolution https://dash4u.org/testing/

    This is the link I secure this page but not working

    • This reply was modified 7 years, 2 months ago by lalitavalon.
    Thread Starter lalitavalon

    (@lalitavalon)

    @mbrsolution Yes I can share it is a page post are going secured but page are public
    Please visit this page https://dash4u.org/sample-page/

    • This reply was modified 7 years, 2 months ago by lalitavalon.
    Thread Starter lalitavalon

    (@lalitavalon)

    I already check this but it is showing for the paypal only I want to integrate other gateways rather than paypal like ccavenue, payUmoney etc

    • This reply was modified 7 years, 2 months ago by lalitavalon.
    Thread Starter lalitavalon

    (@lalitavalon)

    Hi, thanks for the reply.
    i just to integrate other payment gateways like ccavenue or payUmoney Because I want to deal indian rupees. But paypal is only for international payment. Please help me

Viewing 15 replies - 16 through 30 (of 69 total)