Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

JavaScript Mixed Content Error

larry

Coder
Hello

I just tried to post this on the forum but nothing happened. This is my post...

I forced HTTPS on my web site, and now the site is not rendering properly. I ran the default page through Why No Padlock and got the following

There is a script with an insecure url of "http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js" was loaded on line: 129 of https://www.luxurybeach.com.
This URL will need to be updated to use a secure URL for your padlock to return.

I can locate this file, but do not know how to change it to HTTPS. I was told that PHP is dynamically generating the code.

Can anyone help.
 
Last edited by a moderator:
Hi, this is what I am trying do, but this is not a simple html file. My default web page is index.php, and does not contain any lines from the default web page. It appears to be a config file, with referenece to a System Folder and an Application Folder. Any ideas?
 
Are BASEPATH and EXT supposed to be variables? It's been a while since I used PHP, but I'm pretty sure variables are supposed to start with $.

If there's no sensitive data, could you share the index.php file?
 
Are BASEPATH and EXT supposed to be variables? It's been a while since I used PHP, but I'm pretty sure variables are supposed to start with $.

If there's no sensitive data, could you share the index.php file?
PHP:
<?php

/*
|---------------------------------------------------------------
| PHP ERROR REPORTING LEVEL
|---------------------------------------------------------------
|
| By default CI runs with error reporting set to ALL.  For security
| reasons you are encouraged to change this when your site goes live.
| For more info visit:  http://www.php.net/error_reporting
|
*/
error_reporting(E_ALL);
//error_reporting(2039);
ini_set('error_log', 'error.log');
ini_set('display_errors', 1);

/*
|---------------------------------------------------------------
| SYSTEM FOLDER NAME
|---------------------------------------------------------------
|
| This variable must contain the name of your "system" folder.
| Include the path if the folder is not in the same  directory
| as this file.
|
| NO TRAILING SLASH!
|
*/
    $system_folder = "admin/ci_system";

/*
|---------------------------------------------------------------
| APPLICATION FOLDER NAME
|---------------------------------------------------------------
|
| If you want this front controller to use a different "application"
| folder then the default one you can set its name here. The folder
| can also be renamed or relocated anywhere on your server.
| For more info please see the user guide:
| http://www.codeigniter.com/user_guide/general/managing_apps.html
|
|
| NO TRAILING SLASH!
|
*/
    $application_folder = "admin/application";


/*
|===============================================================
| END OF USER CONFIGURABLE SETTINGS
|===============================================================
*/


/*
|---------------------------------------------------------------
| SET THE SERVER PATH
|---------------------------------------------------------------
|
| Let's attempt to determine the full-server path to the "system"
| folder in order to reduce the possibility of path problems.
|
*/
if (function_exists('realpath') AND @realpath(dirname(__FILE__)) !== FALSE)
{
    $service_root = str_replace("\\", "/", realpath(dirname(__FILE__)));
    $system_folder = $service_root.'/'.$system_folder;
}

/*
|---------------------------------------------------------------
| DEFINE APPLICATION CONSTANTS
|---------------------------------------------------------------
|
| EXT        - The file extension.  Typically ".php"
| FCPATH    - The full server path to THIS file
| SELF        - The name of THIS file (typically "index.php)
| BASEPATH    - The full server path to the "system" folder
| APPPATH    - The full server path to the "application" folder
|
*/
define('EXT', '.'.pathinfo(__FILE__, PATHINFO_EXTENSION));
define('FCPATH', __FILE__);
define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));
define('BASEPATH', $system_folder.'/');
define('SERVROOT', $service_root.'/');

if (is_dir($application_folder))
{
    define('APPPATH', $application_folder.'/');
}
else
{
    if ($application_folder == '')
    {
        $application_folder = 'application';
    }

    define('APPPATH', BASEPATH.$application_folder.'/');
}

/*
|---------------------------------------------------------------
| DEFINE E_STRICT
|---------------------------------------------------------------
|
| Some older versions of PHP don't support the E_STRICT constant
| so we need to explicitly define it otherwise the Exception class
| will generate errors.
|
*/
if ( ! defined('E_STRICT'))
{
    define('E_STRICT', 2048);
}

/*
|---------------------------------------------------------------
| LOAD THE FRONT CONTROLLER
|---------------------------------------------------------------
|
| And away we go...
|
*/
if ($_SERVER['REQUEST_URI'] == '/peninsula-puerto-vallarta') {
  @header("Location: http://www.peninsula.mx/residence/vallarta.html");
}

require_once BASEPATH.'codeigniter/CodeIgniter'.EXT;
?>
 
Does this file exist? admin/ci_system/codeigniter/CodeIgniter.php
PHP:
<?php  if (!defined('BASEPATH')) exit('No direct script access allowed');
/**
 * CodeIgniter
 *
 * An open source application development framework for PHP 4.3.2 or newer
 *
 * @package        CodeIgniter
 * @author        Rick Ellis
 * @copyright    Copyright (c) 2006, EllisLab, Inc.
 * @license        http://www.codeignitor.com/user_guide/license.html
 * @link        http://www.codeigniter.com
 * @since        Version 1.0
 * @filesource
 */

// ------------------------------------------------------------------------

/**
 * System Front Controller
 *
 * Loads the base classes and executes the request.
 *
 * @package        CodeIgniter
 * @subpackage    codeigniter
 * @category    Front-controller
 * @author        Rick Ellis
 * @link        http://www.codeigniter.com/user_guide/
 */

// CI Version
define('CI_VERSION',    '1.5.4');

/*
 * ------------------------------------------------------
 *  Load the global functions
 * ------------------------------------------------------
 */
require(BASEPATH.'codeigniter/Common'.EXT);

/*
 * ------------------------------------------------------
 *  Define a custom error handler so we can log PHP errors
 * ------------------------------------------------------
 */
set_error_handler('_exception_handler');
set_magic_quotes_runtime(0); // Kill magic quotes

/*
 * ------------------------------------------------------
 *  Start the timer... tick tock tick tock...
 * ------------------------------------------------------
 */

$BM =& load_class('Benchmark');
$BM->mark('total_execution_time_start');
$BM->mark('loading_time_base_classes_start');

/*
Hi yes this is it...


 * ------------------------------------------------------
 *  Instantiate the hooks class
 * ------------------------------------------------------
 */

$EXT =& load_class('Hooks');

/*
 * ------------------------------------------------------
 *  Is there a "pre_system" hook?
 * ------------------------------------------------------
 */
$EXT->_call_hook('pre_system');

/*
 * ------------------------------------------------------
 *  Instantiate the base classes
 * ------------------------------------------------------
 */

$CFG =& load_class('Config');
$RTR =& load_class('Router');
$OUT =& load_class('Output');

/*
 * ------------------------------------------------------
 *    Is there a valid cache file?  If so, we're done...
 * ------------------------------------------------------
 */

if ($EXT->_call_hook('cache_override') === FALSE)
{
    if ($OUT->_display_cache($CFG, $RTR) == TRUE)
    {
        exit;
    }
}

/*
 * ------------------------------------------------------
 *  Load the remaining base classes
 * ------------------------------------------------------
 */

$IN        =& load_class('Input');
$URI    =& load_class('URI');
$LANG    =& load_class('Language');

/*
 * ------------------------------------------------------
 *  Load the app controller and local controller
 * ------------------------------------------------------
 *
 *  Note: Due to the poor object handling in PHP 4 we'll
 *  conditionally load different versions of the base
 *  class.  Retaining PHP 4 compatibility requires a bit of a hack.
 *
 *  Note: The Loader class needs to be included first
 *
 */
if (floor(phpversion()) < 5)
{
    load_class('Loader', FALSE);
    require(BASEPATH.'codeigniter/Base4'.EXT);
}
else
{
    require(BASEPATH.'codeigniter/Base5'.EXT);
}

// Load the base controller class
load_class('Controller', FALSE);

// Load the local application controller
// Note: The Router class automatically validates the controller path.  If this include fails it
// means that the default controller in the Routes.php file is not resolving to something valid.
if ( ! include(APPPATH.'controllers/'.$RTR->fetch_directory().$RTR->fetch_class().EXT))
{
    show_error('Unable to load your default controller.  Please make sure the controller specified in your Routes.php file is valid.');
}

// Set a mark point for benchmarking
$BM->mark('loading_time_base_classes_end');


/*
 * ------------------------------------------------------
 *  Security check
 * ------------------------------------------------------
 *
 *  None of the functions in the app controller or the
 *  loader class can be called via the URI, nor can
 *  controller functions that begin with an underscore
 */
$class  = $RTR->fetch_class();
$method = $RTR->fetch_method();


if ( ! class_exists($class)
    OR $method == 'controller'
    OR substr($method, 0, 1) == '_'
    OR in_array($method, get_class_methods('Controller'), TRUE)
    )
{
    show_404();
}

/*
 * ------------------------------------------------------
 *  Is there a "pre_controller" hook?
 * ------------------------------------------------------
 */
$EXT->_call_hook('pre_controller');

/*
 * ------------------------------------------------------
 *  Instantiate the controller and call requested method
 * ------------------------------------------------------
 */

// Mark a start point so we can benchmark the controller
$BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_start');

// Instantiate the Controller
$CI = new $class();

// Is this a scaffolding request?
if ($RTR->scaffolding_request === TRUE)
{
    if ($EXT->_call_hook('scaffolding_override') === FALSE)
    {
        $CI->_ci_scaffolding();
    }
}
else
{
    /*
     * ------------------------------------------------------
     *  Is there a "post_controller_constructor" hook?
     * ------------------------------------------------------
     */
    $EXT->_call_hook('post_controller_constructor');
    
    // Is there a "remap" function?
    if (method_exists($CI, '_remap'))
    {
        $CI->_remap($method);
    }
    else
    {
        if ( ! method_exists($CI, $method))
        {
            show_404();
        }

        // Call the requested method.
        // Any URI segments present (besides the class/function) will be passed to the method for convenience       
        call_user_func_array(array(&$CI, $method), array_slice($RTR->rsegments, (($RTR->fetch_directory() == '') ? 2 : 3)));       
    }
}

// Mark a benchmark end point
$BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_end');

/*
 * ------------------------------------------------------
 *  Is there a "post_controller" hook?
 * ------------------------------------------------------
 */
$EXT->_call_hook('post_controller');

/*
 * ------------------------------------------------------
 *  Send the final rendered output to the browser
 * ------------------------------------------------------
 */

if ($EXT->_call_hook('display_override') === FALSE)
{
    $OUT->_display();
}

/*
 * ------------------------------------------------------
 *  Is there a "post_system" hook?
 * ------------------------------------------------------
 */
$EXT->_call_hook('post_system');

/*
 * ------------------------------------------------------
 *  Close the DB connection if one exists
 * ------------------------------------------------------
 */
if (class_exists('CI_DB') AND isset($CI->db))
{
    $CI->db->close();
}


?>
 
Can you do a search in all the files in the directory for the URL? The way the code is looking, It's probably going to take a while to figure out where that URL is.

I don't know if you have VSCode, but in VSCode you can search in all the files within a project (workspace).
 
Here are all the directories that contain the .js file that needs to be changed. Which file would index.php source to render the URL on the landing page?
Can you do a search in all the files in the directory for the URL? The way the code is looking, It's probably going to take a while to figure out where that URL is.

I don't know if you have VSCode, but in VSCode you can search in all the files within a project (workspace).
JavaScript:
/home/luxurybeach2/public_html/fan-page-properties/_bku_index_2011-10-10_israel.php:  <script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/fan-page-properties/index.php:  <script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/fan-page-news/index.php:  <script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
grep: /home/luxurybeach2/public_html/admin/images/ampi2.png: Permission denied
grep: /home/luxurybeach2/public_html/admin/images/AMPI-Puerto-Vallarta.png: Permission denied
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage_2011-10-10_israel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-17_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2011-07-18_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2011-08-04_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-14_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2012_05_17_israel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-20_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2011-08-08_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage_2012_05_17_israel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2011-08-22_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-16_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage_2012-01-02_Angel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-10_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-15_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2011-09-08_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2011-07-07_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-09_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_homepage_2012-10-29_Angel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/homepage.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_homepage.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/_bku_homepage_2014-07-16_braulio.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/public_html/admin/application/views/frontend/homepage2.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/tmp/analog/cache:1   3       0       0       0       28727285        0       0       28302915        0       0       20724   http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/analog/cache:3   0       0       1       0       0       28755068        0       0       28755068        0       0       http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js%e2%80%9d
/home/luxurybeach2/tmp/analog/cache:3   1       0       7       23      26850659        28755072        28739127        26850659        28743194   26295504 6908    http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/webalizer/webalizer.current:http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/webalizer/webalizer.current:http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js”
/home/luxurybeach2/tmp/awstats/awstats082022.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats092020.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats012024.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats062021.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats012023.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats102023.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats072023.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats102022.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats012022.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats122020.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats042022.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats032020.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats102021.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats122019.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats022020.luxurybeach.com.txt:/admin/js/source/jquery-ui/development-bundle/+B.preloadImage+ 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats062020.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats042023.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats032024.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/tmp/awstats/awstats032021.luxurybeach.com.txt:/img/loading.gif 1 http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/fan-page-properties/_bku_index_2011-10-10_israel.php:  <script type="text/javascript"src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/fan-page-properties/index.php:  <script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/fan-page-news/index.php:  <script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage_2011-10-10_israel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-17_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2011-07-18_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2011-08-04_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-14_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2012_05_17_israel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-20_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2011-08-08_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage_2012_05_17_israel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2011-08-22_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-16_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage_2012-01-02_Angel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-10_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-15_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2011-09-08_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2011-07-07_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-09_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_homepage_2012-10-29_Angel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/homepage.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_homepage.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/_bku_homepage_2014-07-16_braulio.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/badfiles/admin/application/views/frontend/homepage2.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/fan-page-properties/_bku_index_2011-10-10_israel.php:  <script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/fan-page-properties/index.php:  <script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/fan-page-news/index.php:  <script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage_2011-10-10_israel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-17_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2011-07-18_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2011-08-04_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-14_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2012_05_17_israel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-20_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2011-08-08_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage_2012_05_17_israel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2011-08-22_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-16_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage_2012-01-02_Angel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-10_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-15_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2011-09-08_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2011-07-07_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-09_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_homepage_2012-10-29_Angel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/homepage.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_homepage.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/_bku_homepage_2014-07-16_braulio.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/_CloudTech/luxurybeach.com/files/admin/application/views/frontend/homepage2.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/fan-page-properties/_bku_index_2011-10-10_israel.php:  <script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/fan-page-properties/index.php:  <script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/fan-page-news/index.php:  <script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage_2011-10-10_israel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-17_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2011-07-18_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2011-08-04_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-14_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2012_05_17_israel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-20_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2011-08-08_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage_2012_05_17_israel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2011-08-22_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-16_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage_2012-01-02_Angel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-10_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-15_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2011-09-08_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2011-07-07_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_/_bku_homepage2_2011-06-09_german.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_homepage_2012-10-29_Angel.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/homepage.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_homepage.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/_bku_homepage_2014-07-16_braulio.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
/home/luxurybeach2/.trash/admin/application/views/frontend/homepage2.php:<script type="text/javascript" src="http://www.luxurybeach.com/admin/js/source/jquery-ui/development-bundle/slides.min.jquery.js"></script>
 

New Threads

Latest posts

Buy us a coffee!

Back
Top Bottom