File Structure for: rrcom_public_html.zip Generated on: 2026-02-13 23:45:36 Total Files: 198 Total Folders: 15 ================================================== ├── forgot-password.php ├── login.php ├── check-session.php ├── support.php ├── support-upload-helper.php ├── dashboard.php ├── privacy.php ├── update-ticket-status.php ├── profiler.php ├── logout.php ├── redemption.php ├── default.php ├── fix-rupee.php ├── index.php ├── debug_survey_revenue.php ├── profiler-api.php ├── cron/ │ └── timeout-check.php ├── reset-password.php ├── partners/ │ ├── data-sync.php │ ├── setup-password.php │ ├── logout.php │ ├── members.php │ ├── index.php │ ├── redemptions.php │ ├── partner-config.php │ ├── partner-dashboard.php │ ├── partner-login.php │ ├── suspended.php │ └── partner-session.php ├── r/ │ ├── index.php │ └── pages/ │ ├── complete.php │ ├── latescreenout.php │ ├── partial.php │ ├── earlyscreenout.php │ ├── quotafull.php │ └── timeout.php ├── signup.php ├── mobile-verification.php ├── articles.php ├── verify.php ├── email.php ├── config.php ├── admin-auth.php ├── close-project-rewards.php ├── s/ │ ├── index.php │ ├── on-hold.php │ ├── pages/ │ │ ├── on-hold.php │ │ └── survey-closed.php │ └── survey-closed.php ├── assets/ │ ├── css/ │ │ ├── slick-theme.css │ │ ├── slick-theme.min.css │ │ ├── bootstrap.min.css │ │ ├── fontawesome.min.css │ │ ├── slick.min.css │ │ ├── custom.css │ │ ├── templatemo.css │ │ ├── redirect-pages.css │ │ ├── templatemo.min.css │ │ └── fontawesome.css │ ├── img/ │ │ ├── category_img_03.jpg │ │ ├── apple-icon.png │ │ ├── product_single_05.jpg │ │ ├── about-hero.svg │ │ ├── krea logo - ppt.png │ │ ├── product_single_10.jpg │ │ ├── brand_04.png │ │ ├── category_img_02.jpg │ │ ├── brand_02.png │ │ ├── product_single_07.jpg │ │ ├── shop_02.jpg │ │ ├── product_single_03.jpg │ │ ├── product_single_06.jpg │ │ ├── shop_10.jpg │ │ ├── product_single_01.jpg │ │ ├── banner_img_03.jpg │ │ ├── banner_img_02.jpg │ │ ├── shop_09.jpg │ │ ├── shop_03.jpg │ │ ├── feature_prod_01.jpg │ │ ├── shop_07.jpg │ │ ├── shop_08.jpg │ │ ├── shop_11.jpg │ │ ├── ajax-loader.gif │ │ ├── shop_01.jpg │ │ ├── product_single_04.jpg │ │ ├── brand_01.png │ │ ├── product_single_08.jpg │ │ ├── shop_06.jpg │ │ ├── product_single_02.jpg │ │ ├── favicon.ico │ │ ├── feature_prod_02.jpg │ │ ├── feature_prod_03.jpg │ │ ├── category_img_01.jpg │ │ ├── brand_03.png │ │ ├── banner_img_01.jpg │ │ ├── shop_04.jpg │ │ ├── banner_img_01.png │ │ ├── shop_05.jpg │ │ ├── product_single_09.jpg │ │ └── favicon.png │ ├── js/ │ │ ├── slick.min.js │ │ ├── jquery-1.11.0.min.js │ │ ├── bootstrap.bundle.min.js │ │ ├── templatemo.js │ │ ├── custom.js │ │ ├── jquery-migrate-1.2.1.min.js │ │ └── templatemo.min.js │ └── webfonts/ │ ├── slick.woff │ ├── fa-brands-400.ttf │ ├── slick.ttf │ ├── fa-regular-400.ttf │ ├── slick.eot │ ├── fa-regular-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-solid-900.eot │ ├── fa-regular-400.svg │ ├── fa-brands-400.woff │ ├── slick.svg │ ├── fa-brands-400.woff2 │ ├── fa-brands-400.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.svg │ ├── fa-solid-900.woff │ ├── fa-solid-900.woff2 │ ├── fa-regular-400.woff │ └── fa-brands-400.eot ├── user-support.php ├── admin-support.php ├── partner-support-creation.php ├── sms-config.php ├── ticket-guide.php ├── session.php ├── points-manager.php ├── doubts.php ├── about.php ├── terms.php ├── uploads/ │ └── support/ │ └── 2026-02/ │ ├── support_11_698e115365571.jpg │ ├── support_18_698f52fe8ca04.docx │ ├── support_20_698f53c4e0138.docx │ ├── support_14_698f15b21a347.txt │ ├── support_21_698f540b1810b.png │ ├── support_13_698e136b619e9.docx │ ├── support_25_698f56e9410bf.jpg │ ├── support_22_698f54297f168.docx │ ├── support_24_698f567a1b123.docx │ ├── support_19_698f539a1a51c.jpg │ ├── support_15_698f17309ed8f.png │ ├── support_23_698f5659a9cbf.png │ ├── support_26_698f56fdb0ab3.docx │ ├── support_16_698f4ed7ead89.docx │ └── support_12_698e11a5128ad.docx ├── errors.log ├── my-surveys.php ├── contact.php ├── shop-db-config.php └── clients/ ├── client-portal-header.php ├── save-selection.php ├── setup-password.php ├── support.php ├── projects-list.php ├── logout.php ├── delete-survey-urls.php ├── selection-survey-urls.php ├── index.php ├── close-project.php ├── client-login.php ├── export-projects.php ├── selection-actions.php ├── view-selection.php ├── terms-and-conditions.php ├── delete-selection.php ├── panel-db-config.php ├── create-selection.php ├── client-session.php ├── view-project.php ├── export-project-urls.php ├── client-portal-footer.php ├── edit-project.php ├── data-security.php ├── create-project.php ├── send-invitations.php ├── client-config.php ├── get-available-samples.php ├── request-reopen.php ├── export-selection-urls.php ├── export-project.php ├── sendgrid-config.php ├── download-redirects.php ├── projects.php ├── export-batch-urls.php ├── save-selection-BACKUP.php ├── privacy-policy.php ├── process-survey-urls.php ├── export-url-data.php ├── manage-survey-urls.php ├── view-batch-urls.php ├── client-dashboard.php └── assign-selection-urls.php