Ravens PHP Scripts: Forums
 

 

Search found 90 matches
Author Message
 Topic: How to completely and safely remove modules from our web?
Defcon

Replies: 11
Views: 14479

PostForum: Modules   Posted: Mon Mar 16, 2009 12:55 pm   Subject: Re: How to completely and safely remove modules from our web
If you just want to remove them from the admin menu just remove the associates links.php. They should be in the admin folder for the module or maybe in the main admin folder.

Thanxs Cool Cool
 Topic: How to completely and safely remove modules from our web?
Defcon

Replies: 11
Views: 14479

PostForum: Modules   Posted: Sun Mar 15, 2009 11:46 pm   Subject: Re: How to completely and safely remove modules from our web
The problem you will get is that every time you upgrade the old modules will be reinstated again.

That's OK as long as i know which part of code i have to remove huhuhu
 Topic: How to completely and safely remove modules from our web?
Defcon

Replies: 11
Views: 14479

PostForum: Modules   Posted: Sun Mar 15, 2009 11:35 pm   Subject: Re: How to completely and safely remove modules from our web
May be I am missing the point here, but RN no longer includes the backup routine therefore if you are running the latest version of RN it should not be there. In fact I think it has been missing for ...
 Topic: How to completely and safely remove modules from our web?
Defcon

Replies: 11
Views: 14479

PostForum: Modules   Posted: Sun Mar 15, 2009 11:05 pm   Subject: Re: How to completely and safely remove modules from our web
Backup DB functionality has always been fairly broken. I suggest you use phpMyAdmin, it is much more reliable.

Thanxs for advice evader99. Any idea to remove it permanently from Administration Menu ...
 Topic: How to completely and safely remove modules from our web?
Defcon

Replies: 11
Views: 14479

PostForum: Modules   Posted: Sun Mar 15, 2009 10:45 pm   Subject: How to completely and safely remove modules from our web?
Dear all,

Since previous versions of PHP-Nuke and RavenNuke(tm) provided a backup routine that could be accessed from the Administrative Control Panel (ACP). In testing for the RavenNuke(tm) 2.20 r ...
 Topic: RavenNuke(tm) v2.20.00 Modules Development
Defcon

Replies: 16
Views: 12316

PostForum: Modules   Posted: Tue Aug 28, 2007 7:40 am   Subject: re: RavenNuke(tm) v2.20.00 Modules Development
Hye evaders99 & montego, thanxs again for ur reply. I really sorry because i didnt explain clearly that config.php file inside this code:


include ("config.php");


Actua ...
 Topic: RavenNuke(tm) v2.20.00 Modules Development
Defcon

Replies: 16
Views: 12316

PostForum: Modules   Posted: Mon Aug 27, 2007 1:47 am   Subject: re: RavenNuke(tm) v2.20.00 Modules Development
Hye Gremmie!!! Thanxs a lot for ur explaination, really help me a lot during this modules development. PHP scripting for PHPNUKE engine really cool :p

Ok now i got a question again, what i want to ...
 Topic: RavenNuke(tm) v2.20.00 Modules Development
Defcon

Replies: 16
Views: 12316

PostForum: Modules   Posted: Fri Aug 17, 2007 12:22 pm   Subject: re: RavenNuke(tm) v2.20.00 Modules Development
You need to move your echo statement inside the while loop. Then it will echo a line (a table row) for each row in the database query. As it is now, you are only outputing the last row in the query.
...
 Topic: RavenNuke(tm) v2.20.00 Modules Development
Defcon

Replies: 16
Views: 12316

PostForum: Modules   Posted: Fri Aug 17, 2007 10:03 am   Subject: re: RavenNuke(tm) v2.20.00 Modules Development
Turn on error reporting in your config.php and re-run it.

You should also protect against SQL injection:

$delete = intval($_GET

Hye Gremmie, thanxs for ur posting and also ur security advice. ...
 Topic: RavenNuke(tm) v2.20.00 Modules Development
Defcon

Replies: 16
Views: 12316

PostForum: Modules   Posted: Fri Aug 17, 2007 2:39 am   Subject: re: RavenNuke(tm) v2.20.00 Modules Development
Ok now i already done with submit request page, thanxs to evader99 help me to solve it. So i would like to continue at another section. A page that view a song that already submitted by requester. On ...
 Topic: RavenNuke(tm) v2.20.00 Modules Development
Defcon

Replies: 16
Views: 12316

PostForum: Modules   Posted: Fri Aug 17, 2007 2:03 am   Subject: Re: RavenNuke(tm) v2.20.00 Modules Development
Do not use a text field with the name "name" - it is reserved for phpNuke's usage of a module name

Hye evader99!!! Yes u right!!! http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/6.gif Thanxs a ...
 Topic: RavenNuke(tm) v2.20.00 Modules Development
Defcon

Replies: 16
Views: 12316

PostForum: Modules   Posted: Thu Aug 16, 2007 1:23 pm   Subject: Re: RavenNuke(tm) v2.20.00 Modules Development
What you have above will work just fine. Simply replace the line

echo"<--- YOUR SCRIPT HERE --->";

with your own code for the module.

You may find that you will need to change some ...
 Topic: RavenNuke(tm) v2.20.00 Modules Development
Defcon

Replies: 16
Views: 12316

PostForum: Modules   Posted: Thu Aug 16, 2007 3:46 am   Subject: RavenNuke(tm) v2.20.00 Modules Development
Hye all!!

I would like to develop a modules base on RavenNuke(tm) v2.20.00 requirement. Frankly, i already done develop song requester script using PHP script and now i would like to design it for ...
 Topic: How with PHP to call last row of ID?
Defcon

Replies: 3
Views: 6957

PostForum: MySQL   Posted: Sat Jul 07, 2007 1:09 am   Subject: Re: How with PHP to call last row of ID?
Assuming that the user_id is of type "Auto Increment", you can be assured that they are in numerical sequence. So, this would work:


SELECT user_id FROM site_users ORDER BY user_id DESC LIMIT 1; ...
 Topic: How to create a new ***.php file format in PHP scriptting?
Defcon

Replies: 16
Views: 25974

PostForum: PHP   Posted: Fri Jul 06, 2007 3:48 pm   Subject: Re: How to create a new ***.php file format in PHP scripttin
Defcon, I am like shooting in the dark here with having about 10% of the information that I would need to help you, but unfortunately, I also do not have the kind of time to actually do this for you. ...
 Topic: How with PHP to call last row of ID?
Defcon

Replies: 3
Views: 6957

PostForum: MySQL   Posted: Fri Jul 06, 2007 3:38 pm   Subject: How with PHP to call last row of ID?
http://i144.photobucket.com/albums/r175/xdefconx/xuploadx/mysqlxqueryx001.png

Hye all!! I got some basic question about SQL + PHP. I would like to know with PHP to call last row of ID? I mean like ...
 Topic: Echo: How to view/call data from separate file into echo
Defcon

Replies: 10
Views: 13326

PostForum: PHP   Posted: Fri Jun 29, 2007 11:10 am   Subject: Re: Echo: How to view/call data from separate file into echo
You should just be able to do (outside the echo statement of course.. you just need to put it above the echo if I'm reading the code correctly)

include('request.php');

That seems to be t ...
 Topic: Echo: How to view/call data from separate file into echo
Defcon

Replies: 10
Views: 13326

PostForum: PHP   Posted: Fri Jun 29, 2007 2:30 am   Subject: re: Echo: How to view/call data from separate file into echo
Am I to understand that datax01.php executes PHP code and outputs data, which then you want script.php to echo? Why doesn't datax01.php echo its output if it provides output data?
Or just store as a ...
 Topic: Echo: How to view/call data from separate file into echo
Defcon

Replies: 10
Views: 13326

PostForum: PHP   Posted: Wed Jun 27, 2007 7:40 pm   Subject: re: Echo: How to view/call data from separate file into echo
Its very easy to code share, if that's what you're trying to do

in script.php

include('datax01.php');

is all that is necessary, it will execute all the code in that file

Hye evader ...
 Topic: Echo: How to view/call data from separate file into echo
Defcon

Replies: 10
Views: 13326

PostForum: PHP   Posted: Wed Jun 27, 2007 7:33 pm   Subject: Re: Echo: How to view/call data from separate file into echo
What are you trying to do exactly? Read the contents of the datax01.php file and echo it out?

Or read the contents of datax01.php and execute it?

Or....?

Thanxs again Gremmie, yes i want to e ...
 Topic: Echo: How to view/call data from separate file into echo
Defcon

Replies: 10
Views: 13326

PostForum: PHP   Posted: Wed Jun 27, 2007 1:35 pm   Subject: Re: Echo: How to view/call data from separate file into echo
See the PHP functions file(), file_get_contents(), readfile(), etc....

Thanxs Gremmie for ur reply. I already make a study n research by a PHP functions that you give. But i still dont understand. ...
 Topic: Echo: How to view/call data from separate file into echo
Defcon

Replies: 10
Views: 13326

PostForum: PHP   Posted: Wed Jun 27, 2007 1:07 pm   Subject: Echo: How to view/call data from separate file into echo
Hye all,

I would like to ask about echo "<--statement==>";

Ok my senario let say like this i got a file name as datax01.php & script.php

Let say on script.php i got a code to use ec ...
 Topic: New User Auto Activation Hack for RN v2.10.01
Defcon

Replies: 2
Views: 5933

PostForum: RN v2.10.01 - Feedback   Posted: Wed Jun 13, 2007 7:53 am   Subject: New User Auto Activation Hack for RN v2.10.01
I would like to ask it is for any previous trick for news user auto activation hack working with RN v2.10.01?
 Topic: How to create a new ***.php file format in PHP scriptting?
Defcon

Replies: 16
Views: 25974

PostForum: PHP   Posted: Tue May 08, 2007 12:29 pm   Subject: Re: How to create a new ***.php file format in PHP scripttin
Ok, I think I have an idea of what you are after, especially after looking at the zip file that you posted above.

I suggest letting it dump it out to a .html file or .txt or any extension that you ...
 Topic: How to create a new ***.php file format in PHP scriptting?
Defcon

Replies: 16
Views: 25974

PostForum: PHP   Posted: Mon May 07, 2007 9:58 am   Subject: Re: How to create a new ***.php file format in PHP scripttin
Defcon, the following statement you made still isn't enough to clarify:


but when i put "includes" to recall my PHP script on that HTML it doesnt work


Here is the question: are you trying to ...
 

 Jump to:   

Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©