Ravens PHP Scripts: Forums
Forum Index • Forum FAQ • Search • Memberlist • Usergroups • Profile • Log in to check your private messages • Log in |
Search found 90 matches |
Ravens PHP Scripts And Web Hosting Forum Index |
Author | Message |
---|---|
Topic: How to completely and safely remove modules from our web? | |
Defcon Replies: 11 Views: 14479 ![]() |
![]() |
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 ![]() ![]() |
|
Topic: How to completely and safely remove modules from our web? | |
Defcon Replies: 11 Views: 14479 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ![]() |
![]() |
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 ... |
|
Ravens PHP Scripts And Web Hosting Forum Index Goto page 1, 2, 3, 4 Next |
Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours