Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 08-16-2008, 08:11 PM   #1
HyperActive Warrior
 
Join Date: Dec 2007
Location: , , Canada.
Posts: 174
Thanks: 0
Thanked 0 Times in 0 Posts
Default Stupid Question

I currently have a web developer occasionally do the programming for my site, but I want to learn to do some of it myself.

My question is, how do I access the source code of my site so that I can do HTML coding?

freedom40 is offline   Reply With Quote
Old 08-16-2008, 08:15 PM   #2
Content & Copywriting Wiz
War Room Member
 
Steven Wagenheim's Avatar
 
Join Date: Dec 2006
Location: Roselle, NJ, USA
Posts: 16,394
Blog Entries: 11
Thanks: 1,531
Thanked 6,192 Times in 2,288 Posts
Social Networking View Member's Twitter Profile  View Member's YouTube Profile
Default Re: Stupid Question

Well, you can easily access the source code by just viewing the page itself
and clicking on view and then page source if you're using Firefox. For IE it's
just view and source.

To actually edit it, you need either a text or WYSIWYG editor and to upload
it to your site you either need access to your cpanel, which you should have
or an ftp program.

I assume that when you got your hosting you got login details?

Steven Wagenheim is online now   Reply With Quote
Old 08-16-2008, 08:16 PM   #3
Senior Warrior Member
War Room Member
 
John Motson's Avatar
 
Join Date: Nov 2007
Location: Brisbane, Australia.
Posts: 1,125
Thanks: 1
Thanked 21 Times in 4 Posts
Default Re: Stupid Question

Your code is stored on your web server.

Depending on what your website is written in (client side html or some server-side code like php, asp) you will either edit the .html files directly, or have to understand the basics of php, asp or whatever to edit the .php/.asp/etc files.

Most people edit their files locally then use ftp to upload it to their server, but you can also edit your files directly on server if you have access via cpanel or some other server administration tool.

John

John Motson is offline   Reply With Quote
Old 08-16-2008, 08:17 PM   #4
HyperActive Warrior
 
Join Date: Dec 2007
Location: , , Canada.
Posts: 174
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Stupid Question

Right that makes sense. Can you recommend a good WYSIWYG editor for Mac (or does it matter?)

freedom40 is offline   Reply With Quote
Old 08-16-2008, 10:14 PM   #5
HyperActive Warrior
War Room Member
 
Join Date: Aug 2008
Location: Adelaide, South Australia
Posts: 327
Thanks: 54
Thanked 23 Times in 18 Posts
Contact Info
Send a message via Skype™ to ripsnorta2
Default Re: Stupid Question

You won't need WYSIWYG editors for coding up PHP, or any language for that matter, since you don't actually format the text.

For example, this is a function from the no follow links Wordpress plugin. The formatting is very basic, just indentation really, and that's to make it easier for the programmer to read. It's not really even necessary for it to work properly.

Code:
function nofollow_links_admin_menu()
{
    add_management_page('Nofollow Links', 'Nofollow Links', 10, 'link-nofollow', 'nofollow_links_manage');
    add_submenu_page('link-manager.php', 'Nofollow Links', 'Nofollow Links', 10, 'link-nofollow', 'nofollow_links_manage');
}
Unfortunately, I use a PC for my work (and play) so I'm not sure of a lightweight editor for the Mac. You could look into Eclipse, it will have plugins that handle all the syntax highlighting and such but it is a heavyweight IDE (Integrated Development Environment.)

Currently for any PHP stuff I do, I use Notepad++ which is very nice. For C#/C++ I use the Visual Studio IDE. If you'd prefer a lightweight editor, try googling for PHP development environment, or PHP editor. You shouldn't have too much trouble finding something decent.

Cheers, John
ripsnorta2 is offline   Reply With Quote
Old 08-17-2008, 12:35 AM   #6
HyperActive Warrior
War Room Member
 
Join Date: Aug 2008
Location: Adelaide, South Australia
Posts: 327
Thanks: 54
Thanked 23 Times in 18 Posts
Contact Info
Send a message via Skype™ to ripsnorta2
Default Re: Stupid Question

Oh! I just remembered.

There's a popular programmers editor for the Mac called TextMate, or something like that. It's especially popular with the Ruby on Rails crowd, but works with a wide range of languages including PHP.

Hope this helps.

Cheers, John
ripsnorta2 is offline   Reply With Quote
Old 08-17-2008, 12:45 AM   #7
HyperActive Warrior
War Room Member
 
CSwrite's Avatar
 
Join Date: Aug 2008
Location: NE
Posts: 192
Thanks: 1
Thanked 8 Times in 4 Posts
Contact Info
Send a message via MSN to CSwrite Send a message via Skype™ to CSwrite
Default Re: Stupid Question

Hi Freedom40,

I use NVU for Mac

There is a PC version as well.

It's free and it works well for basic editing.

CS

CSwrite is offline   Reply With Quote
Old 08-17-2008, 12:48 AM   #8
Senior Warrior Member
War Room Member
 
Join Date: Mar 2003
Location: , , .
Posts: 5,430
Thanks: 274
Thanked 183 Times in 140 Posts
Default Re: Stupid Question

Quote:
Originally Posted by freedom40 View Post
Right that makes sense. Can you recommend a good WYSIWYG editor for Mac (or does it matter?)
If you can afford it, try dreamweaver. It can do everything you need.

Floyd Fisher is offline   Reply With Quote
Old 08-17-2008, 12:49 AM   #9
Banned
War Room Member
 
Join Date: Jun 2007
Location: Up North, USA
Posts: 2,517
Blog Entries: 11
Thanks: 88
Thanked 288 Times in 157 Posts
Social Networking View Member's Twitter Profile 
Default Re: Stupid Question

I use Arachnophilia and it is free and the new version is completely written in Java so it should work on your Mac and Linux too.

TomG.
tommygadget is offline   Reply With Quote
Old 08-17-2008, 01:03 AM   #10
Articles-Written.com
War Room Member
 
Andrew Maule's Avatar
 
Join Date: Dec 2007
Location: NY, USA
Posts: 2,693
Blog Entries: 1
Thanks: 109
Thanked 525 Times in 112 Posts
Default Re: Stupid Question

Right click, view source, copy/paste to notepad.

Andrew Maule is offline   Reply With Quote
Old 08-17-2008, 01:06 AM   #11
Corey B.
War Room Member
 
rapidtronics's Avatar
 
Join Date: Sep 2007
Posts: 185
Thanks: 1
Thanked 10 Times in 7 Posts
Default Re: Stupid Question

You can usually test run any of the major software programs out there. Just visit the vendor websites and give em a test run..

Corey B.
Mineral Rights for Sale or Lease...http://mineral-leases.com
rapidtronics is offline   Reply With Quote
Old 08-17-2008, 09:00 AM   #12
HyperActive Warrior
 
Join Date: Dec 2007
Location: , , Canada.
Posts: 174
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Stupid Question

Awesome, thanks, you guys all rock!

freedom40 is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum

Tags
question, stupid

Thread Tools

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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 06:30 AM.