Post by uksitebuilder » Wed Nov 09, 2011 10:18 pm

have you perchance renamed your admin folder ?

That error should not stop this vqmod working though.

User avatar
Guru Member

Posts

Joined
Thu Jun 09, 2011 11:37 pm
Location - United Kindgom

Post by kungmats » Wed Nov 09, 2011 10:23 pm

no, it's still /admin/

Active Member

Posts

Joined
Tue Jan 25, 2011 11:00 pm

Post by uksitebuilder » Wed Nov 09, 2011 11:08 pm

very weird

in your index.php and admin/index.php there are several lines near the top of the file that vqmod should have changed when it was installed.

Can you paste those lines here for each of your index files

User avatar
Guru Member

Posts

Joined
Thu Jun 09, 2011 11:37 pm
Location - United Kindgom

Post by kungmats » Thu Nov 10, 2011 1:30 am

index.php

Code: Select all

// VirtualQMOD
require_once('./vqmod/vqmod.php');
$vqmod = new VQMod();
$vqmod->useCache = true;

// VQMODDED Startup
require_once($vqmod->modCheck(DIR_SYSTEM . 'startup.php'));

// Application Classes
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/customer.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/affiliate.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/currency.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/tax.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/weight.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/length.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/cart.php'));
/admin/index.php

Code: Select all

//VirtualQMOD
require_once('../vqmod/vqmod.php');
$vqmod = new VQMod();
$vqmod->useCache = true;

// VQMODDED Startup
require_once($vqmod->modCheck(DIR_SYSTEM . 'startup.php'));

// Application Classes
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/currency.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/user.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/weight.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/length.php'));

Active Member

Posts

Joined
Tue Jan 25, 2011 11:00 pm

Post by uksitebuilder » Thu Nov 10, 2011 4:48 am

replace the following line in both files

$vqmod = new VQMod();

with

$vqmod = new VQMod(false,true);

User avatar
Guru Member

Posts

Joined
Thu Jun 09, 2011 11:37 pm
Location - United Kindgom

Post by kungmats » Thu Nov 10, 2011 4:56 am

Still the same an no file from this in /vqmod/vqcache/
Also tryed to empty the folader again.
Also tryed to set the permissions for the folder to 777 (750 default)

... nothing helps

Active Member

Posts

Joined
Tue Jan 25, 2011 11:00 pm

Post by uksitebuilder » Thu Nov 10, 2011 5:22 am

I have no idea in that case you should at the least be getting a vqmod/vqmod.log file showing an error of some kind

All I can suggest is you do the manual file update instead - it is only one file change and it will mst probably never be touched again by a vqmod

User avatar
Guru Member

Posts

Joined
Thu Jun 09, 2011 11:37 pm
Location - United Kindgom

Post by kungmats » Thu Nov 10, 2011 5:30 am

Yes, the manual way works fine but it's sure strange the other way doesn't work.
Thanks for all you help anyway!

/Mats

Active Member

Posts

Joined
Tue Jan 25, 2011 11:00 pm

Post by aledmann » Thu Nov 10, 2011 10:21 pm

Hmm...I cannot for the life of me slow this down. I've manually edited the slideshow.tpl file in my theme (and even tried the one in default directory), tried changing the Nivo JavaScript files themselves yet it's still going a 100MPH!!

Any ideas?? ???

User avatar
New member

Posts

Joined
Thu Sep 08, 2011 9:56 pm

Post by aledmann » Fri Nov 11, 2011 6:44 pm

Humpty bumpty! :bang:

User avatar
New member

Posts

Joined
Thu Sep 08, 2011 9:56 pm

Post by uksitebuilder » Fri Nov 11, 2011 7:19 pm

a link to your site ?

User avatar
Guru Member

Posts

Joined
Thu Jun 09, 2011 11:37 pm
Location - United Kindgom

Post by aledmann » Fri Nov 11, 2011 8:46 pm


User avatar
New member

Posts

Joined
Thu Sep 08, 2011 9:56 pm

Post by uksitebuilder » Fri Nov 11, 2011 9:20 pm

Where exactly is the slideshow ?

User avatar
Guru Member

Posts

Joined
Thu Jun 09, 2011 11:37 pm
Location - United Kindgom

Post by aledmann » Fri Nov 11, 2011 10:12 pm

It's on the front page (main image). I've taken the other image off for now because it was making me feel sick watching it speed along! Here are my settings in both the nivo js file and the slideshow tpl file (I've even tried editing the banner.tpl incase it was that):

Code: Select all

<script type="text/javascript"><!--
$(document).ready(function() {
	$('#slideshow<?php echo $module; ?>').nivoSlider({
        effect:'fade', // Specify sets like: 'fold,fade,sliceDown'
        slices:15, // For slice animations
        boxCols: 8, // For box animations
        boxRows: 4, // For box animations
        animSpeed: 50000, // Slide transition speed
        pauseTime: 15000, // How long each slide will show
        startSlide:4, // Set starting Slide (0 index)
        directionNav:false, // Next & Prev navigation
        directionNavHide:true, // Only show on hover
        controlNav:false, // 1,2,3... navigation
        controlNavThumbs:false, // Use thumbnails for Control Nav
        controlNavThumbsFromRel:false, // Use image rel for thumbs
        controlNavThumbsSearch: '.jpg', // Replace this with...
        controlNavThumbsReplace: '_thumb.jpg', // ...this in thumb Image src
        keyboardNav:true, // Use left & right arrows
        pauseOnHover:true, // Stop animation while hovering
        manualAdvance:false, // Force manual transitions
        captionOpacity:0.8, // Universal caption opacity
        prevText: 'Prev', // Prev directionNav text
        nextText: 'Next', // Next directionNav text
        beforeChange: function(){}, // Triggers before a slide transition
        afterChange: function(){}, // Triggers after a slide transition
        slideshowEnd: function(){}, // Triggers after all slides have been shown
        lastSlide: function(){}, // Triggers when last slide is shown
        afterLoad: function(){} // Triggers when slider has loaded
    });
});
--></script>

User avatar
New member

Posts

Joined
Thu Sep 08, 2011 9:56 pm

Post by aledmann » Sat Nov 12, 2011 3:14 am

Can anyone help with this, really need to get to the bottom of it asap as the site is live. Cheers in advance! ;D

User avatar
New member

Posts

Joined
Thu Sep 08, 2011 9:56 pm

Post by aledmann » Mon Nov 14, 2011 4:22 am

OK I even tried the VQMod tonight but even that hasn't worked (VQMod is working fine though)

If aaaaaaaanyone can help solve this, they will a life time supply of imaginary beer from me!! ;D

User avatar
New member

Posts

Joined
Thu Sep 08, 2011 9:56 pm

Post by uksitebuilder » Tue Nov 15, 2011 6:35 am

a link to your site please

User avatar
Guru Member

Posts

Joined
Thu Jun 09, 2011 11:37 pm
Location - United Kindgom

Post by aledmann » Tue Nov 15, 2011 6:54 am

Hi mate, it's up there ^^

Here it is again - http://www.valoreboutique.co.uk

Thank you so much this is doing my nut in!! :D

User avatar
New member

Posts

Joined
Thu Sep 08, 2011 9:56 pm

Post by uksitebuilder » Tue Nov 15, 2011 3:31 pm

can you pop the other image back on please and change the animSpeed to 1000

User avatar
Guru Member

Posts

Joined
Thu Jun 09, 2011 11:37 pm
Location - United Kindgom

Post by aledmann » Tue Nov 15, 2011 4:21 pm

OK I've added another 2 banners now and reset the anim and pause speed to 1000 & 3000 respectively in all files (JavaScript & TPL).

User avatar
New member

Posts

Joined
Thu Sep 08, 2011 9:56 pm
Who is online

Users browsing this forum: No registered users and 4 guests