well since the administration page is located at
Code:
http://www.skysquaresoccercamp.com/index.php?option=com_content&task=view&id=32&Itemid=58
i believe it's in a database. the
Code:
?option=com_content&task=view&id=32&Itemid=58
in the url shows that when you go to the administration page, the page content is actually being pulled from a database via a 'get' function.
you'll have to access the database through phpMyAdmin or something similar, then overwrite the data in the correct row to change anything. looks like it would be the row with id equal to 32?(really not sure here)
if you didn't setup the database and don't want to fiddle with posting new data to it i would recommend just going to the administration page, copying the source code, then creating a new page directly on the file system(instead of in the database), paste in the source code, and just edit whatever you want. i'm not entirely sure this would work but i would think so. anyone want to second me on this working?
and actually you wouldn't have to change the links anywhere, you could just setup a redirect in the htaccess file so that whenever someone clicks on 'Administration' regardless of what page they're on, they will be redirected to your new edited page on the file system rather than the old one in the database.
in your htaccess file you would just need to put something like:
Code:
RewriteEngine On
RewriteRule ^index.php?option=com_content&task=view&id=32&Itemid=58$ /your_new_page_url.php [L]
this is using mod rewrite though, which is a bit crazy. with this in your htaccess file, every time the administration link is put in the url, it will take them to your_new_page_url.php. it'd be easy to delete the old row in the database so that it's not crawled by spiders anymore. this is kind of a messy fix but it seems to me like it would be the easiest if you don't know how to mess around with the database directly. maybe someone will respond with a less messy way ^_^ honestly i don't see why an administration page has to be in a database unless you have a bunch of administration groups or something. maybe there's a cms in place to change it easily? i don't even know if a cms for the customer is common practice when someone makes your site like this.
anyway hope this helps! i would wait for a second opinion hehe
there might be an easier way, like just editing the content in the database directly, but i have no idea how your database is setup, and i have no experience doing that with entire page content.
Bookmarks