can't any one help me..my n-13 new script can't work properly, my dropdown menu in system can't be open, and i can't delete news and image?
!This means there may be a problem with your javascript file, can you access the news\js\main.js
file directly from your browser to see what error messages it gives?
http://yoursite.com/news/main/js
thank's for your answer chris, This error message is given :
there are no file main.js, only main.php chris...and i can't find folder news/main/js
any other suggestions, chris?
Ah my fault, I meant main.php
, open it in your browser to see if you can see any errors.
yes, I can see some error there :
how i fix it, chris...thx'shi and first off thanks for the great scipt. i am integrating it on 2 off my sites.
but now i have eksaktly the same problem admin dropdown menus dont drop down. i got around it by editing the source code whit firebug and got it to show made my changes and that workd fine.
but still it is a pain in the b** to have to hit show details about element and the change style="display: none;" to style="display: yes;" on all the ones i want to open :-/
i am on a vps debian 6 apache 2.2something whit php via cgi (not apache modul)
so if you have a fix that enables it to show all al the time or can fix the dropdown issu that would be great
it seams to me that it is all the java-scripts that is broken or need updating. i cant delete the default n-13 news message (Welcome to N-13 News 4.0) but i can edit it (cant delete because i am unable to press the delete button after selecting delete)
Thanks joachim Dahl aka BaDTaG EDB-Eksperten.dk
EDIT.....Again
okay i fixd the problem here
not quite shure whitche one that dit it but i think is was the deletion off php.ini in nes and the news/js folder
i also editet main.php in js folder and removed / from include sektion and now it works
Cheers m8
BaDTaG, glad you got it working.
echo21, can you try the same thing, if you edit js/main.php
and remove the slashes from the beginning of each require,
so
require_once(ABSPATH . '/db.php');
require_once(ABSPATH . '/config.php');
#require_once(ABSPATH . '/functions.php');
require_once(ABSPATH . '/langmsg.php');
becomes
require_once(ABSPATH . 'db.php');
require_once(ABSPATH . 'config.php');
#require_once(ABSPATH . 'functions.php');
require_once(ABSPATH . 'langmsg.php');
Yes and delete php.ini in root of your n-13 news script installation and js folder instillation
that got it working for me on my vps
thank's for your unswer chris and BaDTaG , I've deleted php.ini in root of my n-13 news script installation and js folder instillation, I'm also edit my js/main.php become
require_once(ABSPATH . 'db.php');
require_once(ABSPATH . 'config.php');
#require_once(ABSPATH . 'functions.php');
require_once(ABSPATH . 'langmsg.php');
but it's not working for me...am i miss something?? I get this error :
Try both of these to see if any work.
require_once(ABSPATH . '../db.php');
require_once(ABSPATH . '../config.php');
#require_once(ABSPATH . '../functions.php');
require_once(ABSPATH . '../langmsg.php');
If that doesn't work try
require_once(ABSPATH . '/home/suu5.7/public_html/news/db.php');
require_once(ABSPATH . '/home/suu5.7/public_html/news/config.php');
#require_once(ABSPATH . '/home/suu5.7/public_html/news/functions.php');
require_once(ABSPATH . '/home/suu5.7/public_html/news/langmsg.php');