vBadvanced Forums  
Go Back   vBadvanced Forums > vBadvanced Products > vBadvanced CMPS > vBa CMPS v2.0 Support > Bugs & Issues > Bugs From 2.0 RC1

 
 
Thread Tools Display Modes
  #1  
Old 06-04-2005, 09:18 AM
paul41598 paul41598 is offline
Member
 
Join Date: Jun 2004
Posts: 98
Exclamation Cant Delete Module

I created a new module, and now whenever I choose delete out of that dropdown and hit save, it doesnt delete it? Very odd...


Im not completely even sure how to do what I want to do, but I want a custom table, with navigation links to various sites. Im guessing a make a new module and choose template, then put in the code?

Those are my two issues. Thanks!
  #2  
Old 06-04-2005, 04:42 PM
tomshawk's Avatar
tomshawk tomshawk is offline
tech-unity.com
 
Join Date: Jun 2004
Posts: 452
Default Re: Cant Delete Module

I'm having the same problems.

I have custom modules I had created in CMPS 1.0.1 that I can not delete
__________________



  #3  
Old 06-04-2005, 05:04 PM
Xil Ze Xil Ze is offline
Junior Member
 
Join Date: Mar 2005
Posts: 24
Default Re: Cant Delete Module

try internet explorer. firefox doesn't display the button.
  #4  
Old 06-04-2005, 05:12 PM
FightRice FightRice is offline
Senior Member
 
Join Date: Feb 2005
Posts: 151
Default Re: Cant Delete Module

Firefox displays the button for me, And i can't delete them either
  #5  
Old 06-04-2005, 05:21 PM
tomshawk's Avatar
tomshawk tomshawk is offline
tech-unity.com
 
Join Date: Jun 2004
Posts: 452
Default Re: Cant Delete Module

Quote:
Originally Posted by Xil Ze
try internet explorer. firefox doesn't display the button.
that was it, thank you..

The dropdown is there, but the Go button was not

You rock

Thanks again
__________________



  #6  
Old 06-04-2005, 05:29 PM
paul41598 paul41598 is offline
Member
 
Join Date: Jun 2004
Posts: 98
Default Re: Cant Delete Module

solved my problem too! Stupid firefox
  #7  
Old 06-04-2005, 06:07 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default Re: Cant Delete Module

If you'll look in your vba_cmps_admin.php file for this code:
PHP Code:
            print_description_row(construct_phrase($vbphrase['x_tools'], $vbphrase['module']), 02'thead');
            echo 
'<form action="vba_cmps_admin.php"><input type="hidden" name="modid" value="' $module['modid'] . '" />';
            
print_label_row($vbphrase['select_an_action'], '<select name="do">' construct_select_options(array('noaction' => $vbphrase['please_select_one'], 'copymodule' => $vbphrase['copy'], 'removemodule' => $vbphrase['delete'])) . ' <input type="submit" value="' $vbphrase['go'] . '" />''''top'''true);
            echo 
'</form>';

            
$modtypes = array(
                
'noaction' => $vbphrase['please_select_one'], 
                
'chtype_php_file' => $vbphrase['file'], 
                
'chtype_template' => $vbphrase['template'], 
                
'chtype_bb_code' => $vbphrase['bb_code']
            );

            unset(
$modtypes["chtype_$type"]);

            echo 
'<form action="vba_cmps_admin.php"><input type="hidden" name="do" value="editmodule" /><input type="hidden" name="modid" value="' $module['modid'] . '" />';
            
print_label_row(construct_phrase($vbphrase['change_x_type'], $vbphrase['module']), '<select name="chtype">' construct_select_options($modtypes) . ' <input type="submit" value="' $vbphrase['go'] . '" />'); 
And replace it with this:
PHP Code:
            print_description_row(construct_phrase($vbphrase['x_tools'], $vbphrase['module']), 02'thead');
            echo 
'<form action="vba_cmps_admin.php"><input type="hidden" name="modid" value="' $module['modid'] . '" />';
            
print_label_row($vbphrase['select_an_action'], '<select name="do">' construct_select_options(array('noaction' => $vbphrase['please_select_one'], 'copymodule' => $vbphrase['copy'], 'removemodule' => $vbphrase['delete'])) . '</select> <input type="submit" value="' $vbphrase['go'] . '" />''''top'''true);
            echo 
'</form>';

            
$modtypes = array(
                
'noaction' => $vbphrase['please_select_one'], 
                
'chtype_php_file' => $vbphrase['file'], 
                
'chtype_template' => $vbphrase['template'], 
                
'chtype_bb_code' => $vbphrase['bb_code']
            );

            unset(
$modtypes["chtype_$type"]);

            echo 
'<form action="vba_cmps_admin.php"><input type="hidden" name="do" value="editmodule" /><input type="hidden" name="modid" value="' $module['modid'] . '" />';
            
print_label_row(construct_phrase($vbphrase['change_x_type'], $vbphrase['module']), '<select name="chtype">' construct_select_options($modtypes) . '</select> <input type="submit" value="' $vbphrase['go'] . '" />'); 
Then that should take care of the problem in Firefox.
  #8  
Old 06-05-2005, 12:24 PM
phlogiston's Avatar
phlogiston phlogiston is offline
passing-by
 
Join Date: Oct 2004
Location: Woodlands, Scotland
Posts: 43
Default Re: Cant Delete Module

I have a feeling the same problem (& similar fix) is there when trying to copy or delete pages?
__________________
burning the bridges so we'd always dance the dance

soon: vBulletin Events Listings
  #9  
Old 06-05-2005, 12:43 PM
nexia nexia is offline
Member
 
Join Date: May 2004
Posts: 76
Default Re: Cant Delete Module

all the <select tags are missing their </select> closing tag in the admin. so that's why we have missing buttons... i was to update here, but Brian made most of the debug.. missing 2 select btw...

btw, this is not a Firefox problem, but a XHTML compliance problem... to be compliant you have to close your starting tags everywhere... all browsers are the same now, not IE btw... (or, archaic browser...)
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I delete?????? mawtenbiker Troubleshooting / "How do I..." Questions 6 05-21-2005 04:16 PM
Cant delete new page joeychgo Troubleshooting / "How do I..." Questions 11 05-28-2004 03:07 PM


All times are GMT -4. The time now is 12:52 AM.

Forums Powered by vBulletin, Copyright ©2000-2009, Jelsoft Enterprises Ltd.
Please note that vBadvanced is in no way affiliated with Jelsoft Enterprises Ltd, nor will Jelsoft be able to provide any support for our products.